[Libreoffice-commits] core.git: vcl/source

2014-12-26 Thread Tomaž Vajngerl
 vcl/source/window/menu.cxx |   23 +++
 1 file changed, 19 insertions(+), 4 deletions(-)

New commits:
commit 57626f2132f73e4e42b31e364b25c5867336e718
Author: Tomaž Vajngerl tomaz.vajng...@collabora.co.uk
Date:   Fri Dec 26 18:23:19 2014 +0900

Scale menu icons by a HiDPI scaling factor

Change-Id: I358794f86d541d2b49a8281a7224e5c6c29066d9

diff --git a/vcl/source/window/menu.cxx b/vcl/source/window/menu.cxx
index 3c0a3e9..cc96ce1 100644
--- a/vcl/source/window/menu.cxx
+++ b/vcl/source/window/menu.cxx
@@ -1557,9 +1557,14 @@ Size Menu::ImplCalcSize( const vcl::Window* pWin )
 }
 
 // Image:
-if (!IsMenuBar() ((pData-eType == MenuItemType::IMAGE) || 
(pData-eType == MenuItemType::STRINGIMAGE)))
+if (!IsMenuBar()  ((pData-eType == MenuItemType::IMAGE) || 
(pData-eType == MenuItemType::STRINGIMAGE)))
 {
 Size aImgSz = pData-aImage.GetSizePixel();
+
+sal_Int32 nScaleFactor = pWindow-GetDPIScaleFactor();
+aImgSz.Height() *= nScaleFactor;
+aImgSz.Width() *= nScaleFactor;
+
 aImgSz.Height() += 4; // add a border for native marks
 aImgSz.Width() += 4; // add a border for native marks
 if ( aImgSz.Width()  aMaxImgSz.Width() )
@@ -1927,10 +1932,20 @@ void Menu::ImplPaint( vcl::Window* pWin, sal_uInt16 
nBorder, long nStartY, MenuI
 // Don't render an image for a check thing
 if( pData-bChecked )
 ImplPaintCheckBackground( pWin, aOuterCheckRect, 
pThisItemOnly  bHighlighted );
+
+Image aImage = pData-aImage;
+
+sal_Int32 nScaleFactor = pWindow-GetDPIScaleFactor();
+if (nScaleFactor != 1)
+{
+BitmapEx aBitmap = aImage.GetBitmapEx();
+aBitmap.Scale(nScaleFactor, nScaleFactor, 
BMP_SCALE_FAST);
+aImage = Image(aBitmap);
+}
 aTmpPos = aOuterCheckRect.TopLeft();
-aTmpPos.X() += 
(aOuterCheckRect.GetWidth()-pData-aImage.GetSizePixel().Width())/2;
-aTmpPos.Y() += 
(aOuterCheckRect.GetHeight()-pData-aImage.GetSizePixel().Height())/2;
-pWin-DrawImage( aTmpPos, pData-aImage, nImageStyle );
+aTmpPos.X() += (aOuterCheckRect.GetWidth() - 
aImage.GetSizePixel().Width()) / 2;
+aTmpPos.Y() += (aOuterCheckRect.GetHeight() - 
aImage.GetSizePixel().Height()) / 2;
+pWin-DrawImage(aTmpPos, aImage, nImageStyle);
 }
 
 // Text:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] libvisio.git: src/lib src/test

2014-12-26 Thread Miklos Vajna
 src/lib/VSDMetaData.cpp   |4 
 src/test/data/fdo86729-ms1252.vsd |binary
 src/test/importtest.cpp   |1 +
 3 files changed, 5 insertions(+)

New commits:
commit 20434231174c9638c0c997199447ee638613a0a3
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Fri Dec 26 10:58:17 2014 +0100

VSD: import author

Change-Id: I3c73b61217ad8779ad9786acbe58ffada647ffbd

diff --git a/src/lib/VSDMetaData.cpp b/src/lib/VSDMetaData.cpp
index ffac751..f1026fc 100644
--- a/src/lib/VSDMetaData.cpp
+++ b/src/lib/VSDMetaData.cpp
@@ -95,6 +95,7 @@ void 
libvisio::VSDMetaData::readPropertyIdentifierAndOffset(librevenge::RVNGInpu
 
 #define PIDSI_TITLE 0x0002
 #define PIDSI_SUBJECT 0x0003
+#define PIDSI_AUTHOR 0x0004
 
 void libvisio::VSDMetaData::readTypedPropertyValue(librevenge::RVNGInputStream 
*input, uint32_t index, uint32_t offset)
 {
@@ -124,6 +125,9 @@ void 
libvisio::VSDMetaData::readTypedPropertyValue(librevenge::RVNGInputStream *
   case PIDSI_SUBJECT:
 m_metaData.insert(dc:subject, string);
 break;
+  case PIDSI_AUTHOR:
+m_metaData.insert(meta:initial-creator, string);
+break;
   }
 }
   }
diff --git a/src/test/data/fdo86729-ms1252.vsd 
b/src/test/data/fdo86729-ms1252.vsd
index e5fb12e..2d2ee35 100644
Binary files a/src/test/data/fdo86729-ms1252.vsd and 
b/src/test/data/fdo86729-ms1252.vsd differ
diff --git a/src/test/importtest.cpp b/src/test/importtest.cpp
index b42d256..9567453 100644
--- a/src/test/importtest.cpp
+++ b/src/test/importtest.cpp
@@ -154,6 +154,7 @@ void ImportTest::testVsdMetadataTitleMs1252()
   assertXPath(m_doc, /document/setDocumentMetaData, title, 
mytitle\xC3\xA9\xC3\xA1);
 
   assertXPath(m_doc, /document/setDocumentMetaData, subject, mysubject);
+  assertXPath(m_doc, /document/setDocumentMetaData, initial-creator, 
vmiklos creator);
 }
 
 void ImportTest::testVsdMetadataTitleUtf8()
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: writerfilter/source

2014-12-26 Thread Miklos Vajna
 writerfilter/source/rtftok/rtfdocumentimpl.cxx |8 
 writerfilter/source/rtftok/rtfdocumentimpl.hxx |   10 +-
 2 files changed, 9 insertions(+), 9 deletions(-)

New commits:
commit ad3fcbb57f543c5d188c434a08ca58d7512232d1
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Fri Dec 26 11:01:06 2014 +0100

writerfilter: turn RTFBmpStyle into a C++11 scoped enumeration

Change-Id: Idbb1b2f2573d5c807d647bc1ecfee3da82be5574

diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx 
b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index 66afbb4..c8ba4f4 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -776,7 +776,7 @@ RTFError RTFDocumentImpl::resolvePict(bool const bInline, 
uno::Referencedrawing
 pExtHeader = nullptr;
 OUString aGraphicUrl = m_pGraphicHelper-importGraphicObject(xInputStream, 
pExtHeader);
 
-if (m_aStates.top().aPicture.nStyle != BMPSTYLE_NONE)
+if (m_aStates.top().aPicture.eStyle != RTFBmpStyle::NONE)
 {
 // In case of PNG/JPEG, the real size is known, don't use the values
 // provided by picw and pich.
@@ -3294,10 +3294,10 @@ RTFError RTFDocumentImpl::dispatchFlag(RTFKeyword 
nKeyword)
 // Noop, this is the default in Writer.
 break;
 case RTF_PNGBLIP:
-m_aStates.top().aPicture.nStyle = BMPSTYLE_PNG;
+m_aStates.top().aPicture.eStyle = RTFBmpStyle::PNG;
 break;
 case RTF_JPEGBLIP:
-m_aStates.top().aPicture.nStyle = BMPSTYLE_JPEG;
+m_aStates.top().aPicture.eStyle = RTFBmpStyle::JPEG;
 break;
 case RTF_POSYT:
 m_aStates.top().aFrame.setSprm(NS_ooxml::LN_CT_FramePr_yAlign, 
NS_ooxml::LN_Value_doc_ST_YAlign_top);
@@ -6208,7 +6208,7 @@ RTFPicture::RTFPicture()
   nCropL(0),
   nCropR(0),
   eWMetafile(0),
-  nStyle(BMPSTYLE_NONE)
+  eStyle(RTFBmpStyle::NONE)
 {
 }
 
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.hxx 
b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
index 96a0e9b..86f694f 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.hxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
@@ -69,11 +69,11 @@ enum RTFFormFieldTypes
 FORMFIELD_LIST
 };
 
-enum RTFBmpStyles
+enum class RTFBmpStyle
 {
-BMPSTYLE_NONE,
-BMPSTYLE_PNG,
-BMPSTYLE_JPEG
+NONE,
+PNG,
+JPEG
 };
 
 enum RTFFieldStatus
@@ -173,7 +173,7 @@ public:
 sal_uInt16 nScaleX, nScaleY;
 short nCropT, nCropB, nCropL, nCropR;
 sal_uInt16 eWMetafile;
-RTFBmpStyles nStyle;
+RTFBmpStyle eStyle;
 };
 
 class RTFParserState;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Building LO fails with autogen

2014-12-26 Thread Miklos Vajna
Hi Jens,

On Fri, Dec 26, 2014 at 05:56:17AM +0100, Jens Tröger 
jens.troe...@light-speed.de wrote:
  Thank you for your answer; this email is in response to the thread here:
  
http://lists.freedesktop.org/archives/libreoffice/2014-October/064046.html
  
  I'm don't know how I can respond to the thread without having that
  actual email in my inbox here anymore.  Hence this direct reply.

Gmane can be helpful in such situations, see e.g.
http://vmiklos.hu/blog/gmane-scm-reply.html.

 Using 
 
   autoconf (GNU Autoconf) 2.69
   automake (GNU automake) 1.14.1
 
 still gives that same error
 
   configure.ac:111: error: possibly undefined macro: AC_MSG_CHECKING
 If this token and others are legitimate, please use m4_pattern_allow.
 See the Autoconf documentation.
 
 Should I use 1.13.4 exactly?

autoconf-2.69 works fine for me. Note that we do not require automake
for building LO (when patching externals, we intentionally patch
Makefile.in files as well when patching Makefile.ams to avoid this
dependency). Maybe check with your distro what can be the problem?

AC_MSG_CHECKING is probably used in every configure.ac, in LO's case,
it's used 300+ times, so it's not a corner-case. ;-)

Regards,

Miklos


signature.asc
Description: Digital signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: sc/source unusedcode.easy

2014-12-26 Thread Caolán McNamara
 sc/source/filter/inc/formulaparser.hxx |3 ---
 sc/source/filter/oox/formulaparser.cxx |   14 --
 unusedcode.easy|1 -
 3 files changed, 18 deletions(-)

New commits:
commit 8fec0b7d3427b887ef74a7d5ea20baa1b28a8f80
Author: Caolán McNamara caol...@redhat.com
Date:   Fri Dec 26 10:16:55 2014 +

callcatcher: update unused code

Change-Id: I64cf376d57b8574249dfda274ea87a6931b0457d

diff --git a/sc/source/filter/inc/formulaparser.hxx 
b/sc/source/filter/inc/formulaparser.hxx
index 9bc058d..2864aab 100644
--- a/sc/source/filter/inc/formulaparser.hxx
+++ b/sc/source/filter/inc/formulaparser.hxx
@@ -126,9 +126,6 @@ public:
 /** Converts the passed BIFF error code to a similar formula. */
 ApiTokenSequenceconvertErrorToFormula( sal_uInt8 nErrorCode ) const;
 
-/** Converts the passed token index of a defined name to a formula calling 
that name. */
-ApiTokenSequenceconvertNameToFormula( sal_Int32 nTokenIndex ) const;
-
 /** Converts the passed XML formula to an OLE link target. */
 OUString importOleTargetLink( const OUString rFormulaString );
 
diff --git a/sc/source/filter/oox/formulaparser.cxx 
b/sc/source/filter/oox/formulaparser.cxx
index 51f79bc..63ff5be 100644
--- a/sc/source/filter/oox/formulaparser.cxx
+++ b/sc/source/filter/oox/formulaparser.cxx
@@ -2813,20 +2813,6 @@ ApiTokenSequence FormulaParser::convertErrorToFormula( 
sal_uInt8 nErrorCode ) co
 return aTokens;
 }
 
-ApiTokenSequence FormulaParser::convertNameToFormula( sal_Int32 nTokenIndex ) 
const
-{
-if( nTokenIndex  0 )
-return convertErrorToFormula( BIFF_ERR_REF );
-
-ApiTokenSequence aTokens( 1 );
-aTokens[ 0 ].OpCode = OPCODE_NAME;
-NameToken aNameTokenData;
-aNameTokenData.Global = sal_True;
-aNameTokenData.Index = nTokenIndex;
-aTokens[ 0 ].Data = aNameTokenData;
-return aTokens;
-}
-
 OUString FormulaParser::importOleTargetLink( const OUString rFormulaString )
 {
 sal_Int32 nRefId = -1;
diff --git a/unusedcode.easy b/unusedcode.easy
index cf8b3b4..68004b9 100644
--- a/unusedcode.easy
+++ b/unusedcode.easy
@@ -192,7 +192,6 @@ sc::FormulaGroupAreaListener::isStartFixed() const
 sd::LeftDrawPaneShell::RegisterInterface(SfxModule*)
 sd::LeftImpressPaneShell::RegisterInterface(SfxModule*)
 sdr::contact::ViewContactOfTextObj::GetTextObj() const
-sfx2::sidebar::AsynchronousCall::RequestCall(boost::functionvoid () const)
 std::_Rb_treertl::OUString, std::pairrtl::OUString const, (anonymous 
namespace)::TemplateId, std::_Select1ststd::pairrtl::OUString const, 
(anonymous namespace)::TemplateId , std::lessrtl::OUString, 
std::allocatorstd::pairrtl::OUString const, (anonymous 
namespace)::TemplateId  ::_Rb_tree(std::_Rb_treertl::OUString, 
std::pairrtl::OUString const, (anonymous namespace)::TemplateId, 
std::_Select1ststd::pairrtl::OUString const, (anonymous 
namespace)::TemplateId , std::lessrtl::OUString, 
std::allocatorstd::pairrtl::OUString const, (anonymous 
namespace)::TemplateId  )
 std::__cxx1998::vectorrtl::Referenceoox::xls::(anonymous 
namespace)::WorkerThread, std::allocatorrtl::Referenceoox::xls::(anonymous 
namespace)::WorkerThread  ::reserve(unsigned long)
 vcl::MapChar(vcl::_TrueTypeFont*, unsigned short, bool)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: sd/uiconfig

2014-12-26 Thread Yousuf Philips
 sd/uiconfig/simpress/menubar/menubar.xml |   52 ---
 1 file changed, 48 insertions(+), 4 deletions(-)

New commits:
commit 4aff2bf4f8484e1480f918189d8adbfd04981951
Author: Yousuf Philips philip...@hotmail.com
Date:   Thu Dec 25 14:11:19 2014 +0400

Add object formatting options to format menu

Change-Id: I88dd8b53abaab78cb2a43af96b2cec1108190400
Reviewed-on: https://gerrit.libreoffice.org/13654
Reviewed-by: Yousuf Philips philip...@hotmail.com
Tested-by: Yousuf Philips philip...@hotmail.com

diff --git a/sd/uiconfig/simpress/menubar/menubar.xml 
b/sd/uiconfig/simpress/menubar/menubar.xml
index 7b4c9f6..cfede1c 100644
--- a/sd/uiconfig/simpress/menubar/menubar.xml
+++ b/sd/uiconfig/simpress/menubar/menubar.xml
@@ -256,6 +256,9 @@
 /menu:menupopup
 /menu:menu
 menu:menuseparator/
+menu:menuitem menu:id=.uno:EditStyle/
+menu:menuitem menu:id=.uno:DesignerDialog/
+menu:menuseparator/
 menu:menuitem menu:id=.uno:TransformDialog/
 menu:menuitem menu:id=.uno:FormatLine/
 menu:menuitem menu:id=.uno:FormatArea/
@@ -266,10 +269,48 @@
 menu:menuitem menu:id=.uno:NameGroup/
 menu:menuitem menu:id=.uno:ObjectTitleDescription/
 menu:menuseparator/
-menu:menuitem menu:id=.uno:PresentationLayout/
-menu:menuitem menu:id=.uno:ModifyPage/
-menu:menuitem menu:id=.uno:DesignerDialog/
-menu:menuseparator/
+menu:menu menu:id=.uno:ArrangeMenu
+  menu:menupopup
+menu:menuitem menu:id=.uno:BringToFront/
+menu:menuitem menu:id=.uno:Forward/
+menu:menuitem menu:id=.uno:Backward/
+menu:menuitem menu:id=.uno:SendToBack/
+menu:menuseparator/
+menu:menuitem menu:id=.uno:BeforeObject/
+menu:menuitem menu:id=.uno:BehindObject/
+menu:menuseparator/
+menu:menuitem menu:id=.uno:ReverseOrder/
+  /menu:menupopup
+/menu:menu
+menu:menu menu:id=.uno:ObjectAlign
+  menu:menupopup
+menu:menuitem menu:id=.uno:ObjectAlignLeft/
+menu:menuitem menu:id=.uno:AlignCenter/
+menu:menuitem menu:id=.uno:ObjectAlignRight/
+menu:menuseparator/
+menu:menuitem menu:id=.uno:AlignUp/
+menu:menuitem menu:id=.uno:AlignMiddle/
+menu:menuitem menu:id=.uno:AlignDown/
+  /menu:menupopup
+/menu:menu
+menu:menu menu:id=.uno:MirrorMenu
+  menu:menupopup
+menu:menuitem menu:id=.uno:MirrorVert/
+menu:menuitem menu:id=.uno:MirrorHorz/
+  /menu:menupopup
+/menu:menu
+menu:menu menu:id=.uno:ConvertMenu
+  menu:menupopup
+menu:menuitem menu:id=.uno:ChangeBezier/
+menu:menuitem menu:id=.uno:ChangePolygon/
+menu:menuitem menu:id=.uno:convert_to_contour/
+menu:menuitem menu:id=.uno:ConvertInto3D/
+menu:menuitem menu:id=.uno:ConvertInto3DLatheFast/
+menu:menuitem menu:id=.uno:ConvertIntoBitmap/
+menu:menuitem menu:id=.uno:ConvertIntoMetaFile/
+  /menu:menupopup
+/menu:menu
+menu:menuitem menu:id=.uno:DistributeSelection/
 menu:menu menu:id=.uno:GroupMenu
 menu:menupopup
 menu:menuitem menu:id=.uno:FormatGroup/
@@ -278,6 +319,9 @@
 menu:menuitem menu:id=.uno:LeaveGroup/
 /menu:menupopup
 /menu:menu
+menu:menuseparator/
+menu:menuitem menu:id=.uno:PresentationLayout/
+menu:menuitem menu:id=.uno:ModifyPage/
 /menu:menupopup
 /menu:menu
 menu:menu menu:id=.uno:ToolsMenu
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: officecfg/registry sd/uiconfig

2014-12-26 Thread Yousuf Philips
 officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu |   
10 -
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |   
24 ++
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu  |   
10 -
 sd/uiconfig/simpress/menubar/menubar.xml |   
89 +++---
 4 files changed, 106 insertions(+), 27 deletions(-)

New commits:
commit f37ccf3ed8aae4e2d5191fb97aa28446541ff790
Author: Yousuf Philips philip...@hotmail.com
Date:   Fri Dec 26 05:50:41 2014 +0400

rearrange Impress's format menu bar

Change-Id: I569ec58afa6015d17dfd4c40dcb45eb36ea93b4b
Reviewed-on: https://gerrit.libreoffice.org/13655
Reviewed-by: Yousuf Philips philip...@hotmail.com
Tested-by: Yousuf Philips philip...@hotmail.com

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
index 50f58af..0eb036b 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/DrawImpressCommands.xcu
@@ -1778,7 +1778,10 @@
   /node
   node oor:name=.uno:Grow oor:op=replace
 prop oor:name=Label oor:type=xs:string
-  value xml:lang=en-USIncrease Font/value
+  value xml:lang=en-USIncrease Font Size/value
+/prop
+prop oor:name=ContextLabel oor:type=xs:string
+  value xml:lang=en-USIncrease Size/value
 /prop
 prop oor:name=Properties oor:type=xs:int
   value1/value
@@ -1786,7 +1789,10 @@
   /node
   node oor:name=.uno:Shrink oor:op=replace
 prop oor:name=Label oor:type=xs:string
-  value xml:lang=en-USReduce Font/value
+  value xml:lang=en-USDecrease Font Size/value
+/prop
+prop oor:name=ContextLabel oor:type=xs:string
+  value xml:lang=en-USDecrease Size/value
 /prop
 prop oor:name=Properties oor:type=xs:int
   value1/value
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index e4f2ba8..5a06527 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -3087,6 +3087,30 @@
   value1/value
 /prop
   /node
+  node oor:name=.uno:FormatImageMenu oor:op=replace
+prop oor:name=Label oor:type=xs:string
+  value xml:lang=en-US~Image/value
+/prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
+  /node
+  node oor:name=.uno:FormatTextMenu oor:op=replace
+prop oor:name=Label oor:type=xs:string
+  value xml:lang=en-USTe~xt/value
+/prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
+  /node
+  node oor:name=.uno:FormatSpacingMenu oor:op=replace
+prop oor:name=Label oor:type=xs:string
+  value xml:lang=en-US~Spacing/value
+/prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
+  /node
   node oor:name=.uno:InsertGraphic oor:op=replace
 prop oor:name=Label oor:type=xs:string
   value xml:lang=en-US~Image.../value
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index d49d502..fcb1314 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -596,7 +596,10 @@
   /node
   node oor:name=.uno:Grow oor:op=replace
 prop oor:name=Label oor:type=xs:string
-  value xml:lang=en-USIncrease Font/value
+  value xml:lang=en-USIncrease Font Size/value
+/prop
+prop oor:name=ContextLabel oor:type=xs:string
+  value xml:lang=en-USIncrease Size/value
 /prop
 prop oor:name=Properties oor:type=xs:int
   value1/value
@@ -604,7 +607,10 @@
   /node
   node oor:name=.uno:Shrink oor:op=replace
 prop oor:name=Label oor:type=xs:string
-  value xml:lang=en-USReduce Font/value
+  value xml:lang=en-USDecrease Font Size/value
+/prop
+prop oor:name=ContextLabel oor:type=xs:string
+  value xml:lang=en-USDecrease Size/value
 /prop
 prop oor:name=Properties oor:type=xs:int
   value1/value
diff --git a/sd/uiconfig/simpress/menubar/menubar.xml 
b/sd/uiconfig/simpress/menubar/menubar.xml
index cfede1c..a089359b 100644
--- a/sd/uiconfig/simpress/menubar/menubar.xml
+++ b/sd/uiconfig/simpress/menubar/menubar.xml
@@ -74,7 +74,7 @@
 menu:menuitem menu:id=.uno:Cut/
 menu:menuitem menu:id=.uno:Copy/
 menu:menuitem 

[Libreoffice-commits] core.git: 3 commits - framework/source include/vcl svx/source sw/source vcl/source

2014-12-26 Thread Tomaž Vajngerl
 framework/source/uielement/statusbarmanager.cxx |1 +
 include/vcl/status.hxx  |3 +++
 svx/source/stbctrls/zoomsliderctrl.cxx  |   13 +++--
 sw/source/uibase/utlui/viewlayoutctrl.cxx   |   19 +--
 vcl/source/window/status.cxx|   10 ++
 5 files changed, 30 insertions(+), 16 deletions(-)

New commits:
commit ac5cec21167f8addb7fe4973bf7fdf0f503d6259
Author: Tomaž Vajngerl tomaz.vajng...@collabora.co.uk
Date:   Fri Dec 26 20:41:29 2014 +0900

Cleanup zoomsliderctrl  viewlayoutctrl

Change-Id: Ie5f135e8457ed75146328a388f3b70273bf54ed2

diff --git a/svx/source/stbctrls/zoomsliderctrl.cxx 
b/svx/source/stbctrls/zoomsliderctrl.cxx
index 8ea241b..dcb0c55 100644
--- a/svx/source/stbctrls/zoomsliderctrl.cxx
+++ b/svx/source/stbctrls/zoomsliderctrl.cxx
@@ -152,8 +152,8 @@ long SvxZoomSliderControl::Zoom2Offset( sal_uInt16 
nCurrentZoom ) const
 return nRet;
 }
 
-SvxZoomSliderControl::SvxZoomSliderControl( sal_uInt16 _nSlotId,  sal_uInt16 
_nId, StatusBar _rStb ) :
-SfxStatusBarControl( _nSlotId, _nId, _rStb ),
+SvxZoomSliderControl::SvxZoomSliderControl( sal_uInt16 _nSlotId,  sal_uInt16 
_nId, StatusBar rStatusBar ) :
+SfxStatusBarControl( _nSlotId, _nId, rStatusBar ),
 mpImpl( new SvxZoomSliderControl_Impl )
 {
 mpImpl-maSliderButton   = Image( SVX_RES( RID_SVXBMP_SLIDERBUTTON   ) );
@@ -161,16 +161,17 @@ SvxZoomSliderControl::SvxZoomSliderControl( sal_uInt16 
_nSlotId,  sal_uInt16 _nI
 mpImpl-maDecreaseButton = Image( SVX_RES( RID_SVXBMP_SLIDERDECREASE ) );
 
 //#ifndef MACOSX
-if ( _rStb.GetDPIScaleFactor()  1)
+sal_Int32 nScaleFactor = rStatusBar.GetDPIScaleFactor();
+if (nScaleFactor != 1)
 {
 Image arr[3] = {mpImpl-maSliderButton, mpImpl-maIncreaseButton, 
mpImpl-maDecreaseButton};
 
 for (int i = 0; i  3; i++)
 {
-BitmapEx b = arr[i].GetBitmapEx();
+BitmapEx aBitmap = arr[i].GetBitmapEx();
 //Use Lanczos scaling for the slider button because it does a 
better job with circles
-b.Scale(_rStb.GetDPIScaleFactor(), _rStb.GetDPIScaleFactor(), i == 
0 ? BMP_SCALE_LANCZOS : BMP_SCALE_FAST);
-arr[i] = Image(b);
+aBitmap.Scale(nScaleFactor, nScaleFactor, i == 0 ? 
BMP_SCALE_LANCZOS : BMP_SCALE_FAST);
+arr[i] = Image(aBitmap);
 }
 mpImpl-maSliderButton = arr[0];
 mpImpl-maIncreaseButton = arr[1];
diff --git a/sw/source/uibase/utlui/viewlayoutctrl.cxx 
b/sw/source/uibase/utlui/viewlayoutctrl.cxx
index bf1f3a2..aa45d37 100644
--- a/sw/source/uibase/utlui/viewlayoutctrl.cxx
+++ b/sw/source/uibase/utlui/viewlayoutctrl.cxx
@@ -39,8 +39,8 @@ struct SwViewLayoutControl::SwViewLayoutControl_Impl
 Image   maImageBookMode_Active;
 };
 
-SwViewLayoutControl::SwViewLayoutControl( sal_uInt16 _nSlotId, sal_uInt16 
_nId, StatusBar rStb ) :
-SfxStatusBarControl( _nSlotId, _nId, rStb ),
+SwViewLayoutControl::SwViewLayoutControl( sal_uInt16 _nSlotId, sal_uInt16 
_nId, StatusBar rStatusBar ) :
+SfxStatusBarControl( _nSlotId, _nId, rStatusBar ),
 mpImpl( new SwViewLayoutControl_Impl )
 {
 mpImpl-mnState = 0;
@@ -52,7 +52,8 @@ SwViewLayoutControl::SwViewLayoutControl( sal_uInt16 
_nSlotId, sal_uInt16 _nId,
 mpImpl-maImageBookMode = Image( 
SW_RES(IMG_VIEWLAYOUT_BOOKMODE) );
 mpImpl-maImageBookMode_Active  = Image( 
SW_RES(IMG_VIEWLAYOUT_BOOKMODE_ACTIVE) );
 
-if ( rStb.GetDPIScaleFactor()  1)
+sal_Int32 nScaleFactor = rStatusBar.GetDPIScaleFactor();
+if (nScaleFactor != 1)
 {
 Image arr[6] = {mpImpl-maImageSingleColumn, 
mpImpl-maImageSingleColumn_Active,
 mpImpl-maImageAutomatic, 
mpImpl-maImageAutomatic_Active,
@@ -60,9 +61,9 @@ SwViewLayoutControl::SwViewLayoutControl( sal_uInt16 
_nSlotId, sal_uInt16 _nId,
 
 for (int i = 0; i  6; i++)
 {
-BitmapEx b = arr[i].GetBitmapEx();
-b.Scale(rStb.GetDPIScaleFactor(), rStb.GetDPIScaleFactor(), 
BMP_SCALE_FAST);
-arr[i] = Image(b);
+BitmapEx aBitmap = arr[i].GetBitmapEx();
+aBitmap.Scale(nScaleFactor, nScaleFactor, BMP_SCALE_FAST);
+arr[i] = Image(aBitmap);
 }
 
 mpImpl-maImageSingleColumn = arr[0];
@@ -74,7 +75,6 @@ SwViewLayoutControl::SwViewLayoutControl( sal_uInt16 
_nSlotId, sal_uInt16 _nId,
 mpImpl-maImageBookMode = arr[4];
 mpImpl-maImageBookMode_Active = arr[5];
 }
-
 }
 
 SwViewLayoutControl::~SwViewLayoutControl()
@@ -124,8 +124,8 @@ void SwViewLayoutControl::Paint( const UserDrawEvent 
rUsrEvt )
 
mpImpl-maImageAutomatic.GetSizePixel().Width() +
 mpImpl-maImageBookMode.GetSizePixel().Width();
 
-const long nXOffset = (aRect.GetWidth()  - nImageWidthSum)/2;
-const long nYOffset = (aControlRect.GetHeight() - 

Re: libi18nlangtag crash on SunOS 5.11

2014-12-26 Thread Richard PALO
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Le 21/12/14 10:11, Richard PALO a écrit :
 This seems to be liblangtag issue as its testsuite has problems as well.
 I'll need to get those resolved first. thx
 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/libreoffice
 

As a quick workaround I needed to configure liblangtag with '--disable-modules'
and that seems to get over the test-suite's check-tag failures and consequently
allows format-cells to function correctly in libreoffice.

Since LO is seemingly the only thing I have currently running liblangtag, is
there any imperative need for the extension modules now disabled? 

In any event, the problem is reported in bitbucket for liblangtag.
-BEGIN PGP SIGNATURE-
Version: GnuPG v1
Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/

iQEcBAEBAgAGBQJUnVTEAAoJECAB22fHtp27U/MH/2YI7TaOsowTlPq9Pt01XwP1
1niyzZOXoFS1B9612jHfd+mv4hRqOFoVYPdb4ZgnLFCh3Y7XrDzpV6JxkdS6rgZx
6tfOIqzVOMmCPdVhLAR7egG1buKBRzhqVs2i/YVvHNGb/i8hb+4nb7CsY12lwIUI
aRjF8t+gbQCN9qTgXii0hhrZSDVnBTo6pvPxgF4hvI06IQ/QgjgGyKQpq+dYQztv
/pPG7UI9Emosv8qyxy7yFjNVgCb+xMeHr2Ym+5M45kyR9vJn+bFy6UnpFk8GIBTg
M0PIwzDjStSemXNZo7WbVrv2V/TA043t55TPuGDIO1DvVsoVtEQYsn3BmbUFpnY=
=j+iR
-END PGP SIGNATURE-
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: icon-themes/galaxy officecfg/registry sw/source

2014-12-26 Thread Yousuf Philips
 icon-themes/galaxy/links.txt |   11 
+
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |6 ++
 officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu  |   22 
++
 sw/source/ui/app/mn.src  |   10 
++--
 4 files changed, 45 insertions(+), 4 deletions(-)

New commits:
commit d21eae2447c227ad945d2b9df8cab895f792dd04
Author: Yousuf Philips philip...@hotmail.com
Date:   Fri Dec 26 17:45:53 2014 +0400

fdo#87185 rearrange image context menu and add icons to a few entries

Change-Id: I7d28aea1059ec87cbc72ccea40dc000f51e6560b
Reviewed-on: https://gerrit.libreoffice.org/13662
Reviewed-by: Yousuf Philips philip...@hotmail.com
Tested-by: Yousuf Philips philip...@hotmail.com

diff --git a/icon-themes/galaxy/links.txt b/icon-themes/galaxy/links.txt
index 0daf0aa..8ffb495 100644
--- a/icon-themes/galaxy/links.txt
+++ b/icon-themes/galaxy/links.txt
@@ -32,3 +32,14 @@ cmd/sc_linespacing.png cmd/sc_spacepara15.png
 # flip in impress/draw
 cmd/sc_mirrorhorz.png cmd/sc_fliphorizontal.png
 cmd/sc_mirrorvert.png cmd/sc_flipvertical.png
+
+# image/object context menu entries
+cmd/sc_wrapmenu.png cmd/sc_wrapon.png
+cmd/sc_alignframemenu.png cmd/sc_objectalign.png
+cmd/sc_anchormenu.png cmd/sc_toggleanchortype.png
+cmd/sc_arrangeframemenu.png cmd/sc_bringtofront.png
+cmd/sc_savegraphic.png cmd/sc_save.png
+
+# menu submenu entries
+cmd/sc_arrangemenu.png cmd/sc_bringtofront.png
+
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index 5a06527..ef043e8 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -5559,6 +5559,9 @@
 prop oor:name=Label oor:type=xs:string
   value xml:lang=en-USA~rrange/value
 /prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
   /node
   node oor:name=.uno:FlipMenu oor:op=replace
 prop oor:name=Label oor:type=xs:string
@@ -5574,6 +5577,9 @@
 prop oor:name=Label oor:type=xs:string
   value xml:lang=en-USA~nchor/value
 /prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
   /node
   node oor:name=.uno:AVMediaPlayer oor:op=replace
 prop oor:name=Label oor:type=xs:string
diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
index fcb1314..7ba3aee 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/WriterCommands.xcu
@@ -2303,6 +2303,25 @@
 prop oor:name=Label oor:type=xs:string
   value xml:lang=en-US~Wrap/value
 /prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
+  /node
+  node oor:name=.uno:AlignFrameMenu oor:op=replace
+prop oor:name=Label oor:type=xs:string
+  value xml:lang=en-USAlignment/value
+/prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
+  /node
+  node oor:name=.uno:ArrangeFrameMenu oor:op=replace
+prop oor:name=Label oor:type=xs:string
+  value xml:lang=en-USArrange/value
+/prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
   /node
   node oor:name=.uno:AutoFormatMenu oor:op=replace
 prop oor:name=Label oor:type=xs:string
@@ -2323,6 +2342,9 @@
 prop oor:name=Label oor:type=xs:string
   value xml:lang=en-USSave Images.../value
 /prop
+prop oor:name=Properties oor:type=xs:int
+value1/value
+/prop
   /node
   node oor:name=.uno:ContinueNumbering oor:op=replace
 prop oor:name=Label oor:type=xs:string
diff --git a/sw/source/ui/app/mn.src b/sw/source/ui/app/mn.src
index 18319a6..554d88f 100644
--- a/sw/source/ui/app/mn.src
+++ b/sw/source/ui/app/mn.src
@@ -1235,6 +1235,12 @@ Menu MN_GRF_POPUPMENU
 MenuItem { ITEM_CHANGE_PICTURE };
 MenuItem { ITEM_COMPRESS_GRAPHIC };
 MenuItem { ITEM_SAVE_GRAPHIC };
+SEPARATOR ;
+
+MN_ANCHOR
+MN_MOUSE_FRAME_WITH_CONTOUR
+MN_ALIGNMENT_FRAME
+MN_ARRANGE_FRAME
 MN_ROTATE_IMAGE
 SEPARATOR ;
 
@@ -1245,10 +1251,6 @@ Menu MN_GRF_POPUPMENU
 HelpId = CMD_FN_FORMAT_GRAFIC_DLG ;
 Text [ en-US ] = Format ~Image... ;
 };
-SEPARATOR ;
-
-MN_ALIGN_FRAME
-MN_MOUSE_FRAME_WITH_CONTOUR
 };
 };
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org

[Libreoffice-commits] core.git: Branch 'ports/macosx10.5/master' - 40 commits - apple_remote/Library_AppleRemote.mk apple_remote/source avmedia/Library_avmediaQuickTime.mk avmedia/Module_avmedia.mk av

2014-12-26 Thread Douglas Mencken
Rebased ref, commits from common ancestor:
commit 69c784a8cd09f0d9f0be34ff388e2bb8e2403fc4
Author: Douglas Mencken dougmenc...@gmail.com
Date:   Fri Dec 26 09:48:06 2014 -0500

lingucomponent/Module_lingucomponent: switch off Library_MacOSXSpell

Change-Id: I8f8eb6717b904aa4c231466ee7a1b873bc0035c1

diff --git a/lingucomponent/Module_lingucomponent.mk 
b/lingucomponent/Module_lingucomponent.mk
index 92d582c..68dcb78 100644
--- a/lingucomponent/Module_lingucomponent.mk
+++ b/lingucomponent/Module_lingucomponent.mk
@@ -14,7 +14,9 @@ $(eval $(call gb_Module_add_targets,lingucomponent,\
Library_guesslang \
Library_hyphen \
Library_lnth \
-   $(if $(filter MACOSX,$(OS)),Library_MacOSXSpell) \
+   $(if $(filter MACOSX,$(OS)),\
+   $(if $(filter-out 
1050,$(MACOSX_SDK_VERSION)),Library_MacOSXSpell) \
+   ) \
Library_spell \
StaticLibrary_ulingu \
 ))
commit 01d3df74137687c4ab3c12a18cb54ae9268e656c
Author: Douglas Mencken dougmenc...@gmail.com
Date:   Wed Dec 24 10:47:02 2014 -0500

use -lobjc-gnu and GNUstep libraries when compiler is GCC

(for: vcl, apple_remote, sfx2, avmedia-quicktime, fpicker-aqua)

{note: path to GNUstep libraries is currently hard-coded}

Change-Id: Ia28778f3e262e71c87c48e71fbfd9001d5d6ac7a

diff --git a/apple_remote/Library_AppleRemote.mk 
b/apple_remote/Library_AppleRemote.mk
index cf48553..5d8cbfd 100644
--- a/apple_remote/Library_AppleRemote.mk
+++ b/apple_remote/Library_AppleRemote.mk
@@ -17,6 +17,10 @@ $(eval $(call 
gb_Library_use_system_darwin_frameworks,AppleRemote,\
 IOKit \
 ))
 
+$(eval $(call gb_Library_add_libs,AppleRemote,\
+$(if $(filter TRUE,$(COM_GCC_IS_CLANG)),-lobjc,-lobjc-gnu 
-L/usr/GNUstep/System/Library/Libraries -lgnustep-base -lgnustep-gui) \
+))
+
 $(eval $(call gb_Library_add_objcobjects,AppleRemote,\
 apple_remote/source/KeyspanFrontRowControl \
 apple_remote/source/AppleRemote \
diff --git a/avmedia/Library_avmediaQuickTime.mk 
b/avmedia/Library_avmediaQuickTime.mk
index 20bf9c3..8bc097d 100644
--- a/avmedia/Library_avmediaQuickTime.mk
+++ b/avmedia/Library_avmediaQuickTime.mk
@@ -35,6 +35,10 @@ $(eval $(call 
gb_Library_use_system_darwin_frameworks,avmediaQuickTime,\
QTKit \
 ))
 
+$(eval $(call gb_Library_add_libs,avmediaQuickTime,\
+   $(if $(filter TRUE,$(COM_GCC_IS_CLANG)),-lobjc,-lobjc-gnu 
-L/usr/GNUstep/System/Library/Libraries -lgnustep-base -lgnustep-gui) \
+))
+
 $(eval $(call gb_Library_add_objcxxobjects,avmediaQuickTime,\
avmedia/source/quicktime/framegrabber \
avmedia/source/quicktime/manager \
diff --git a/fpicker/Library_fps_aqua.mk b/fpicker/Library_fps_aqua.mk
index e4b7ef5..ac04fbb 100644
--- a/fpicker/Library_fps_aqua.mk
+++ b/fpicker/Library_fps_aqua.mk
@@ -44,4 +44,8 @@ $(eval $(call gb_Library_add_objcxxobjects,fps_aqua,\
fpicker/source/aqua/SalAquaPicker \
 ))
 
+$(eval $(call gb_Library_add_libs,avmediaQuickTime,\
+   $(if $(filter TRUE,$(COM_GCC_IS_CLANG)),-lobjc,-lobjc-gnu 
-L/usr/GNUstep/System/Library/Libraries -lgnustep-base -lgnustep-gui) \
+))
+
 # vim: set noet sw=4 ts=4:
diff --git a/sfx2/Library_sfx.mk b/sfx2/Library_sfx.mk
index 0a1100e..61a73c6 100644
--- a/sfx2/Library_sfx.mk
+++ b/sfx2/Library_sfx.mk
@@ -319,7 +319,7 @@ $(eval $(call gb_Library_add_objcxxobjects,sfx,\
 sfx2/source/appl/shutdowniconaqua \
 ))
 $(eval $(call gb_Library_add_libs,sfx,\
--lobjc \
+$(if $(filter TRUE,$(COM_GCC_IS_CLANG)),-lobjc,-lobjc-gnu 
-L/usr/GNUstep/System/Library/Libraries -lgnustep-base -lgnustep-gui) \
 ))
 $(eval $(call gb_Library_use_system_darwin_frameworks,sfx,\
 Cocoa \
diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk
index e8df725..64aacc8 100644
--- a/vcl/Library_vcl.mk
+++ b/vcl/Library_vcl.mk
@@ -89,7 +89,7 @@ $(eval $(call gb_Library_add_libs,vcl,\
 -framework IOKit \
 -F/System/Library/PrivateFrameworks \
 -framework CoreUI \
--lobjc \
+$(if $(filter TRUE,$(COM_GCC_IS_CLANG)),-lobjc,-lobjc-gnu 
-L/usr/GNUstep/System/Library/Libraries -lgnustep-base -lgnustep-gui) \
 ))
 endif
 ifeq ($(OS),MACOSX)
commit e29af58d1983d7054236e9234f80dba8914eeba2
Author: Douglas Mencken dougmenc...@gmail.com
Date:   Fri Dec 26 08:59:41 2014 -0500

fpicker:aqua - deal with OBJC_EXPORT and objc_msgSend

Change-Id: I414f5dcbfca9697b22a20d2d45f94c91ec4cd691

diff --git a/fpicker/source/aqua/CFStringUtilities.hxx 
b/fpicker/source/aqua/CFStringUtilities.hxx
index 58d0951..7429acb 100644
--- a/fpicker/source/aqua/CFStringUtilities.hxx
+++ b/fpicker/source/aqua/CFStringUtilities.hxx
@@ -21,6 +21,9 @@
 #define INCLUDED_FPICKER_SOURCE_AQUA_CFSTRINGUTILITIES_HXX
 
 #include premac.h
+#ifndef OBJC_EXPORT
+#include objc/objc-api.h
+#endif
 #include Carbon/Carbon.h
 #include Cocoa/Cocoa.h
 #include postmac.h
diff --git a/fpicker/source/aqua/ControlHelper.hxx 
b/fpicker/source/aqua/ControlHelper.hxx
index 1e2a774..071955b 100644
--- 

Re: Building LO fails with autogen

2014-12-26 Thread Miklos Vajna
Hi Jens,

On Fri, Dec 26, 2014 at 03:21:42PM +0100, Jens Tröger 
jens.troe...@light-speed.de wrote:
 Here is my autoconf:
 
   libreoffice-4.3.5.2  autoconf --version
   autoconf (GNU Autoconf) 2.69
   Copyright (C) 2012 Free Software Foundation, Inc.

Yes, that's fine.

 The source tree is the official tar unpacked, fresh and virgin without
 any modifications.  Here's what happens:
 
   libreoffice-4.3.5.2  ./autogen.sh --without-java --enable-headless 
 --with-theme=no

Are you sure you need --enable-headless? If you want to do headless
conversion of documents, then you need the --headless runtime option, no
custom build switches.

   configure.ac:111: error: possibly undefined macro: AC_MSG_CHECKING
 If this token and others are legitimate, please use m4_pattern_allow.
 See the Autoconf documentation.
   configure.ac:117: error: possibly undefined macro: AC_MSG_RESULT
   configure.ac:217: error: possibly undefined macro: AC_DEFINE
   configure.ac:287: error: possibly undefined macro: AC_MSG_WARN
   configure.ac:3426: error: possibly undefined macro: AC_LANG_SOURCE
   configure.ac:3928: error: possibly undefined macro: AC_LANG_PUSH
   configure.ac:3941: error: possibly undefined macro: AC_LANG_POP
   configure.ac:8175: error: possibly undefined macro: AC_RUN_IFELSE
   Failed to run autoconf at ./autogen.sh line 157.
 
 This is on a Gentoo Linux system.  I am not sure what that error message
 means, and looking up m4_pattern_allow I found this note:
 
   http://lists.gnu.org/archive/html/autoconf/2010-01/msg00050.html
 
 Do you know what's happening here?

Please ask the Gentoo guys, the same autoconf version is fine here e.g.
on openSUSE, so it seems your problem is somewhat Gentoo-specific.

Thanks,

Miklos


signature.asc
Description: Digital signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Building LO fails with autogen

2014-12-26 Thread Jens Tröger
Hi Miklos,

  The source tree is the official tar unpacked, fresh and virgin without
  any modifications.  Here's what happens:
  
libreoffice-4.3.5.2  ./autogen.sh --without-java --enable-headless 
  --with-theme=no
 
 Are you sure you need --enable-headless? If you want to do headless
 conversion of documents, then you need the --headless runtime option, no
 custom build switches.

I'm running on a server which has no X libraries installed.  I noticed
that running LO locally on my Mac for a document conversion takes about
5 seconds, on the server it took almost 3 minutes.  My suspicion was
that the X output got in the way, causing slowdown.  That's why I wanted
to build a LO without any of the X overhead...  but that seems to be
difficult already.  (No, LO is not a debug build :-))

BTW, a similar failure happens for older versions of LO as well:

  libreoffice-4.1.6.2  ./autogen.sh --without-java --enable-headless 
--with-theme=no
  configure.ac:2113: error: possibly undefined macro: AC_DEFINE
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
  Failed to run autoconf at ./autogen.sh line 176.

 Please ask the Gentoo guys, the same autoconf version is fine here e.g.
 on openSUSE, so it seems your problem is somewhat Gentoo-specific.

Ok, I'll post in their forums and see what comes up.

Jens

-- 
Jens Tröger
http://savage.light-speed.de/
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] libmspub.git: 3 commits - src/lib

2014-12-26 Thread David Tardon
 src/lib/EmbeddedFontInfo.h |4 +-
 src/lib/MSPUBCollector.cpp |   61 +
 src/lib/MSPUBCollector.h   |2 -
 src/lib/MSPUBParser.cpp|   24 ++---
 src/lib/MSPUBParser2k.cpp  |2 -
 src/lib/MSPUBParser97.cpp  |2 -
 src/lib/PolygonUtils.cpp   |6 ++--
 src/lib/ShapeInfo.h|4 +-
 8 files changed, 59 insertions(+), 46 deletions(-)

New commits:
commit b99d016d1e43d9ef99c6f3f94a345a189212a117
Author: David Tardon dtar...@redhat.com
Date:   Fri Dec 26 12:45:57 2014 +0100

simplify this

Change-Id: I6a39f76a0019d057b20a4abb29479754ad622b39

diff --git a/src/lib/EmbeddedFontInfo.h b/src/lib/EmbeddedFontInfo.h
index f74484a..1200e81 100644
--- a/src/lib/EmbeddedFontInfo.h
+++ b/src/lib/EmbeddedFontInfo.h
@@ -18,8 +18,8 @@ struct EmbeddedFontInfo
 {
   librevenge::RVNGString m_name;
   librevenge::RVNGBinaryData m_blob;
-  EmbeddedFontInfo(const librevenge::RVNGString name) :
-m_name(name), m_blob()
+  EmbeddedFontInfo(const librevenge::RVNGString name, const 
librevenge::RVNGBinaryData data) :
+m_name(name), m_blob(data)
   {
   }
 };
diff --git a/src/lib/MSPUBCollector.cpp b/src/lib/MSPUBCollector.cpp
index 82a86c0..53ef937 100644
--- a/src/lib/MSPUBCollector.cpp
+++ b/src/lib/MSPUBCollector.cpp
@@ -105,10 +105,9 @@ static void 
separateSpacesAndInsertText(librevenge::RVNGDrawingInterface *iface,
 
 } // anonymous namespace
 
-librevenge::RVNGBinaryData MSPUBCollector::addEOTFont(const 
librevenge::RVNGString name)
+void MSPUBCollector::addEOTFont(const librevenge::RVNGString name, const 
librevenge::RVNGBinaryData data)
 {
-  m_embeddedFonts.push_back(EmbeddedFontInfo(name));
-  return m_embeddedFonts.back().m_blob;
+  m_embeddedFonts.push_back(EmbeddedFontInfo(name, data));
 }
 
 void MSPUBCollector::setShapePictureRecolor(unsigned seqNum,
diff --git a/src/lib/MSPUBCollector.h b/src/lib/MSPUBCollector.h
index d2d18be..b66e317 100644
--- a/src/lib/MSPUBCollector.h
+++ b/src/lib/MSPUBCollector.h
@@ -95,7 +95,7 @@ public:
 
   // Microsoft Embedded OpenType ... need to figure out how to convert
   // this to a sane format and how to get LibreOffice to understand embedded 
fonts.
-  librevenge::RVNGBinaryData addEOTFont(const librevenge::RVNGString name);
+  void addEOTFont(const librevenge::RVNGString name, const 
librevenge::RVNGBinaryData data);
 
   void beginGroup();
   bool endGroup();
diff --git a/src/lib/MSPUBParser.cpp b/src/lib/MSPUBParser.cpp
index 9473049..f0e8d65 100644
--- a/src/lib/MSPUBParser.cpp
+++ b/src/lib/MSPUBParser.cpp
@@ -497,7 +497,7 @@ bool MSPUBParser::parseFontChunk(
 // skip length, we've already read that
 // TODO: Why do we not read the data as part of the block info?
 input-seek(eotOffset.get() + 4, librevenge::RVNG_SEEK_SET);
-librevenge::RVNGBinaryData data = 
m_collector-addEOTFont(name.get());
+librevenge::RVNGBinaryData data;
 unsigned long toRead = eotLength;
 while (toRead  0  stillReading(input, (unsigned long)-1))
 {
@@ -506,6 +506,7 @@ bool MSPUBParser::parseFontChunk(
   data.append(buf, howManyRead);
   toRead -= howManyRead;
 }
+m_collector-addEOTFont(name.get(), data);
 input-seek(subInfo.dataOffset + subInfo.dataLength, 
librevenge::RVNG_SEEK_SET);
   }
 }
commit 525d9d714be08629ac8c70bf415f2231c4f910b3
Author: David Tardon dtar...@redhat.com
Date:   Fri Dec 26 12:41:15 2014 +0100

replace double negation by bool()

Change-Id: Ibd72d22c86e8960dd3553fa1406098c8138dae36

diff --git a/src/lib/MSPUBCollector.cpp b/src/lib/MSPUBCollector.cpp
index fa199af..82a86c0 100644
--- a/src/lib/MSPUBCollector.cpp
+++ b/src/lib/MSPUBCollector.cpp
@@ -407,7 +407,7 @@ std::vectorint MSPUBCollector::getShapeAdjustValues(const 
ShapeInfo info) con
 
 boost::optionalstd::vectorTextParagraph  
MSPUBCollector::getShapeText(const ShapeInfo info) const
 {
-  if (!!info.m_textId)
+  if (bool(info.m_textId))
   {
 unsigned stringId = info.m_textId.get();
 const std::vectorTextParagraph *ptr_str = 
getIfExists_const(m_textStringsById, stringId);
@@ -424,11 +424,11 @@ void 
MSPUBCollector::setupShapeStructures(ShapeGroupElement elt)
   ShapeInfo *ptr_info = getIfExists(m_shapeInfosBySeqNum, elt.getSeqNum());
   if (ptr_info)
   {
-if (!!ptr_info-m_imgIndex)
+if (bool(ptr_info-m_imgIndex))
 {
   unsigned index = ptr_info-m_imgIndex.get();
   int rot = 0;
-  if (!!ptr_info-m_innerRotation)
+  if (bool(ptr_info-m_innerRotation))
 rot = ptr_info-m_innerRotation.get();
   if (index - 1  m_images.size())
   {
@@ -463,7 +463,7 @@ boost::functionvoid(void) 
MSPUBCollector::paintShape(const ShapeInfo info, co
   bool hasStroke = false;
   bool hasBorderArt = false;
   boost::optionalunsigned maybeBorderImg = info.m_borderImgIndex;
-  if (!!maybeBorderImg  

[Libreoffice-commits] core.git: fpicker/uiconfig

2014-12-26 Thread Andras Timar
 fpicker/uiconfig/ui/explorerfiledialog.ui |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 50e960e839a4c77292f4da89b1b7e08e58cda192
Author: Andras Timar andras.ti...@collabora.com
Date:   Fri Dec 26 19:24:51 2014 +0100

single \n should be non-translatable in UI

Change-Id: I7264ace75346689e9f18f6a797718b7ad3aaeba6

diff --git a/fpicker/uiconfig/ui/explorerfiledialog.ui 
b/fpicker/uiconfig/ui/explorerfiledialog.ui
index 41118bd..d834006 100644
--- a/fpicker/uiconfig/ui/explorerfiledialog.ui
+++ b/fpicker/uiconfig/ui/explorerfiledialog.ui
@@ -454,7 +454,7 @@
 /child
 child
   object class=GtkCheckButton 
id=selection
-property name=label translatable=yes
+property name=label translatable=no
 /property
 property 
name=use_action_appearanceFalse/property
 property name=can_focusTrue/property
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] libmspub.git: src/lib

2014-12-26 Thread David Tardon
 src/lib/MSPUBParser.cpp |8 
 1 file changed, 8 insertions(+)

New commits:
commit 7e994d4632e382df6aeccdab0f3408c8d3dc112b
Author: David Tardon dtar...@redhat.com
Date:   Fri Dec 26 19:34:49 2014 +0100

drop trailing 0 when reading embedded font name

Change-Id: Iaf8a0f9d8a38c9316f9f1e411a8f9d0f4e89e252

diff --git a/src/lib/MSPUBParser.cpp b/src/lib/MSPUBParser.cpp
index f0e8d65..deba5b2 100644
--- a/src/lib/MSPUBParser.cpp
+++ b/src/lib/MSPUBParser.cpp
@@ -484,6 +484,14 @@ bool MSPUBParser::parseFontChunk(
 if (subSubInfo.id == EMBEDDED_FONT_NAME)
 {
   name = librevenge::RVNGString();
+  // drop trailing 0
+  // TODO: This could be a general problem. Check.
+  const std::size_t len = subSubInfo.stringData.size();
+  if ((len  2)  (subSubInfo.stringData[len - 1] == 0)  
(subSubInfo.stringData[len - 2] == 0))
+  {
+subSubInfo.stringData.pop_back();
+subSubInfo.stringData.pop_back();
+  }
   appendCharacters(name.get(), subSubInfo.stringData, UTF-16LE);
 }
 else if (subSubInfo.id == EMBEDDED_EOT)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Build / packaging instructions

2014-12-26 Thread Tor Lillqvist

 for one hour of reasons on the topic in three days. ;)


And you couldn't be bothered to give a one-line summary?

Anyway, considering that we are doing digitally signed binaries, it is hard
for me to understand how one even could produce bit-for-bit identical ones?

Of course, in the last century, things were different.

--tml
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 79641] LibreOffice 4.4 most annoying bugs

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79641

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

 Depends on|86055   |

-- 
You are receiving this mail because:
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: officecfg/registry sw/uiconfig

2014-12-26 Thread Yousuf Philips
 officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu |6 ++
 sw/uiconfig/swriter/toolbar/frameobjectbar.xml   |   22 
++
 2 files changed, 20 insertions(+), 8 deletions(-)

New commits:
commit 88ae2a436ec79dd152f9e81edea00e402438cc1f
Author: Yousuf Philips philip...@hotmail.com
Date:   Fri Dec 26 19:20:14 2014 +0400

fdo#81475 rearrangement of writer's frame toolbar

Change-Id: I0c6b7469aba62a8d427ffebfdcc9f6212fb3fd3f
Reviewed-on: https://gerrit.libreoffice.org/13663
Reviewed-by: Yousuf Philips philip...@hotmail.com
Tested-by: Yousuf Philips philip...@hotmail.com

diff --git 
a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu 
b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
index ef043e8..4a7a1c5 100644
--- a/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
+++ b/officecfg/registry/data/org/openoffice/Office/UI/GenericCommands.xcu
@@ -3231,11 +3231,17 @@
 prop oor:name=Label oor:type=xs:string
   value xml:lang=en-USForward One/value
 /prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
   /node
   node oor:name=.uno:ObjectBackOne oor:op=replace
 prop oor:name=Label oor:type=xs:string
   value xml:lang=en-USBack One/value
 /prop
+prop oor:name=Properties oor:type=xs:int
+  value1/value
+/prop
   /node
   node oor:name=.uno:EditFrameSet oor:op=replace
 prop oor:name=Label oor:type=xs:string
diff --git a/sw/uiconfig/swriter/toolbar/frameobjectbar.xml 
b/sw/uiconfig/swriter/toolbar/frameobjectbar.xml
index 1b0614e..ce76e79 100644
--- a/sw/uiconfig/swriter/toolbar/frameobjectbar.xml
+++ b/sw/uiconfig/swriter/toolbar/frameobjectbar.xml
@@ -20,9 +20,11 @@
 toolbar:toolbar xmlns:toolbar=http://openoffice.org/2001/toolbar; 
xmlns:xlink=http://www.w3.org/1999/xlink; toolbar:id=toolbar
  toolbar:toolbaritem xlink:href=.uno:StyleApply/
  toolbar:toolbarseparator/
+ toolbar:toolbaritem xlink:href=.uno:ToggleAnchorType 
toolbar:style=dropdown/
+ toolbar:toolbarseparator/
  toolbar:toolbaritem xlink:href=.uno:WrapOff toolbar:style=radio/
  toolbar:toolbaritem xlink:href=.uno:WrapOn toolbar:style=radio/
- toolbar:toolbaritem xlink:href=.uno:WrapIdeal toolbar:style=radio 
toolbar:visible=false/
+ toolbar:toolbaritem xlink:href=.uno:WrapIdeal toolbar:style=radio/
  toolbar:toolbaritem xlink:href=.uno:WrapLeft toolbar:style=radio 
toolbar:visible=false/
  toolbar:toolbaritem xlink:href=.uno:WrapRight toolbar:style=radio 
toolbar:visible=false/
  toolbar:toolbaritem xlink:href=.uno:WrapThrough toolbar:style=radio/
@@ -35,17 +37,21 @@
  toolbar:toolbaritem xlink:href=.uno:AlignVerticalCenter 
toolbar:style=radio/
  toolbar:toolbaritem xlink:href=.uno:AlignBottom toolbar:style=radio/
  toolbar:toolbarseparator/
+ toolbar:toolbaritem xlink:href=.uno:BringToFront/
+ toolbar:toolbaritem xlink:href=.uno:ObjectForwardOne/
+ toolbar:toolbaritem xlink:href=.uno:ObjectBackOne/
+ toolbar:toolbaritem xlink:href=.uno:SendToBack/
+ toolbar:toolbarseparator/
+ toolbar:toolbaritem xlink:href=.uno:SetObjectToForeground 
toolbar:visible=false/
+ toolbar:toolbaritem xlink:href=.uno:SetObjectToBackground 
toolbar:visible=false/
+ toolbar:toolbarseparator/
  toolbar:toolbaritem xlink:href=.uno:SetBorderStyle/
  toolbar:toolbaritem xlink:href=.uno:LineStyle/
  toolbar:toolbaritem xlink:href=.uno:FrameLineColor/
  toolbar:toolbaritem xlink:href=.uno:BackgroundColor 
toolbar:style=dropdown/
  toolbar:toolbarseparator/
- toolbar:toolbaritem xlink:href=.uno:FrameDialog/
- toolbar:toolbarseparator/
- toolbar:toolbaritem xlink:href=.uno:BringToFront/
- toolbar:toolbaritem xlink:href=.uno:SendToBack/
- toolbar:toolbaritem xlink:href=.uno:ToggleAnchorType 
toolbar:style=dropdown/
- toolbar:toolbarseparator/
  toolbar:toolbaritem xlink:href=.uno:ChainFrames/
  toolbar:toolbaritem xlink:href=.uno:UnhainFrames/
-/toolbar:toolbar
\ No newline at end of file
+ toolbar:toolbarseparator/
+ toolbar:toolbaritem xlink:href=.uno:FrameDialog/
+/toolbar:toolbar
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [Bug 79641] LibreOffice 4.4 most annoying bugs

2014-12-26 Thread Will Entriken
UNSUBSCRIBE

On Fri, Dec 26, 2014 at 6:32 PM, bugzilla-dae...@freedesktop.org wrote:

  V Stuart Foote vstuart.fo...@utsa.edu changed bug 79641
 https://bugs.freedesktop.org/show_bug.cgi?id=79641
  What Removed Added  Depends on 86055

  --
 You are receiving this mail because:

- You are on the CC list for the bug.


 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/libreoffice


___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Bug 79641] LibreOffice 4.4 most annoying bugs

2014-12-26 Thread Chris Sherlock
Go to the URL at the bottom of the messages sent. The unsubscribe options are 
there.

Chris

Sent from my iPhone

 On 27 Dec 2014, at 11:22 am, Will Entriken fulldec...@gmail.com wrote:
 
 UNSUBSCRIBE
 
 On Fri, Dec 26, 2014 at 6:32 PM, bugzilla-dae...@freedesktop.org wrote:
 V Stuart Foote changed bug 79641 
 What Removed Added
 Depends on   86055
 You are receiving this mail because:
 You are on the CC list for the bug.
 
 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/libreoffice
 
 
 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/libreoffice
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: 2 commits - sc/source

2014-12-26 Thread Markus Mohrhard
 sc/source/core/data/global2.cxx  |2 -
 sc/source/core/tool/compiler.cxx |   46 +++
 2 files changed, 47 insertions(+), 1 deletion(-)

New commits:
commit 18cccd62fb5b730319878df6fac748d5cdf73f1f
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Sat Dec 27 06:51:52 2014 +0100

handle index based external refs in formulas in ooxml import, fdo#85617

Change-Id: Ie4f43f041f5d614b9c2826c74574c854af05c266

diff --git a/sc/source/core/tool/compiler.cxx b/sc/source/core/tool/compiler.cxx
index 0c273b3..1c292aa 100644
--- a/sc/source/core/tool/compiler.cxx
+++ b/sc/source/core/tool/compiler.cxx
@@ -1322,6 +1322,52 @@ struct ConventionXL_OOX : public ConventionXL_A1
  * CellStr. */
 }
 
+static void parseExternalDocNameOOX(const OUString rFormula, sal_Int32 
rSrcPos)
+{
+sal_Int32 nLen = rFormula.getLength();
+const sal_Unicode* p = rFormula.getStr();
+for (sal_Int32 i = rSrcPos; i  nLen; ++i)
+{
+sal_Unicode c = p[i];
+if (i == rSrcPos)
+{
+// first character must be '['.
+if (c != '[')
+return;
+}
+else if (c == ']')
+{
+rSrcPos = i + 1;
+}
+}
+}
+
+virtual ParseResult parseAnyToken( const OUString rFormula,
+   sal_Int32 nSrcPos,
+   const CharClass* pCharClass) const 
SAL_OVERRIDE
+{
+parseExternalDocNameOOX(rFormula, nSrcPos);
+
+ParseResult aRet;
+if ( lcl_isValidQuotedText(rFormula, nSrcPos, aRet) )
+return aRet;
+
+static const sal_Int32 nStartFlags = 
KParseTokens::ANY_LETTER_OR_NUMBER |
+KParseTokens::ASC_UNDERSCORE | KParseTokens::ASC_DOLLAR;
+static const sal_Int32 nContFlags = nStartFlags | 
KParseTokens::ASC_DOT;
+// '?' allowed in range names
+const OUString aAddAllowed(?!);
+return pCharClass-parseAnyToken( rFormula,
+nSrcPos, nStartFlags, aAddAllowed, nContFlags, aAddAllowed );
+}
+
+virtual bool parseExternalName( const OUString rSymbol, OUString rFile, 
OUString rName,
+const ScDocument* pDoc,
+const uno::Sequencesheet::ExternalLinkInfo* pExternalLinks ) 
const SAL_OVERRIDE
+{
+return ConventionXL::parseExternalName( rSymbol, rFile, rName, pDoc, 
pExternalLinks);
+}
+
 virtual void makeExternalRefStr(
 OUStringBuffer rBuffer, const ScAddress rPos, sal_uInt16 nFileId, 
const OUString /*rFileName*/,
 const OUString rTabName, const ScSingleRefData rRef ) const 
SAL_OVERRIDE
commit 808b0bf831d4a4fdb60c01865d0a7dd36cf9d521
Author: Markus Mohrhard markus.mohrh...@collabora.co.uk
Date:   Sat Dec 27 06:42:16 2014 +0100

NO_DECODE breaks non-ascii urls, fdo#85617

Change-Id: Ic76346d20dc7fdbb5d77ba08d87f0d6c6e7b3c88

diff --git a/sc/source/core/data/global2.cxx b/sc/source/core/data/global2.cxx
index 93da6d3..5fd14cc 100644
--- a/sc/source/core/data/global2.cxx
+++ b/sc/source/core/data/global2.cxx
@@ -327,7 +327,7 @@ OUString ScGlobal::GetAbsDocName( const OUString rFileName,
 if ( pMedium )
 {
 bool bWasAbs = true;
-aAbsName = pMedium-GetURLObject().smartRel2Abs( rFileName, 
bWasAbs ).GetMainURL(INetURLObject::NO_DECODE);
+aAbsName = pMedium-GetURLObject().smartRel2Abs( rFileName, 
bWasAbs ).GetMainURL(INetURLObject::DECODE_TO_IURI);
 }
 else
 {   // This can't happen, but ...
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


LibreOffice Gerrit News for core on 2014-12-27

2014-12-26 Thread gerrit
Moin!

* Open changes on master for project core changed in the last 25 hours:

 First time contributors doing great things! 
+ sc-calcoptionsdlg.hxx: add definition guards (HAVE_FEATURE_OPENCL)
  in https://gerrit.libreoffice.org/13667 from Douglas Mencken
  about module sc
+ solenv-filelists.pm: fix can't call method `mode' on an undefined value
  in https://gerrit.libreoffice.org/13669 from Douglas Mencken
  about module solenv
+ use special $(TOUCH) for touch -hr
  in https://gerrit.libreoffice.org/13664 from Richard PALO
  about module solenv
+ Drop MAC_OS_X_VERSION_... variables
  in https://gerrit.libreoffice.org/13212 from Douglas Mencken
  about module build, solenv
+ --with-macosx-app-name= is unused, so bin it from AC_ARG_WITH list
  in https://gerrit.libreoffice.org/13658 from Douglas Mencken
  about module build
 End of freshness 

+ license: fix typo: “Huerta Tipografia” → “Huerta Tipográfica”
  in https://gerrit.libreoffice.org/13668 from Adolfo Jayme Barrientos
  about module readlicense_oo
+ fdo#67343 Arrange Help button in a secondary group
  in https://gerrit.libreoffice.org/13427 from Adolfo Jayme Barrientos
  about module basctl, chart2, desktop, formula, reportdesign, sc, sd
+ Enhance OpenCL Option dialog with tables
  in https://gerrit.libreoffice.org/13665 from Olivier Hallot
  about module cui
+ crop-pixel: Disable test on x86_64 on windows
  in https://gerrit.libreoffice.org/13661 from David Ostrovsky
  about module sw
+ Disable broken html tests on x86_64 on windows
  in https://gerrit.libreoffice.org/13660 from David Ostrovsky
  about module sw
+ Signed/Unsigned mismatch on x86_64 platform on windows
  in https://gerrit.libreoffice.org/13659 from David Ostrovsky
  about module include
+ Fix shellcheck -s sh warnings
  in https://gerrit.libreoffice.org/13656 from Julien Nabet
  about module solenv
+ Group common code (multiplication/division/type conversion)
  in https://gerrit.libreoffice.org/11913 from Matteo Casalin
  about module sw


* Merged changes on master for project core changed in the last 25 hours:

+ fdo#84213 changed 'Display Ruler' to 'View Ruler'
  in https://gerrit.libreoffice.org/13593 from Yousuf Philips
+ fdo#81475 rearrangement of writer's frame toolbar
  in https://gerrit.libreoffice.org/13663 from Yousuf Philips
+ fdo#87185 rearrange image context menu and add icons to a few entries
  in https://gerrit.libreoffice.org/13662 from Yousuf Philips
+ rearrange Impress's format menu bar
  in https://gerrit.libreoffice.org/13655 from Yousuf Philips
+ Add object formatting options to format menu
  in https://gerrit.libreoffice.org/13654 from Yousuf Philips


* Abandoned changes on master for project core changed in the last 25 hours:

None

* Open changes needing tweaks, but being untouched for more than a week:

+ gbuild-to-ide fixes
  in https://gerrit.libreoffice.org/11754 from Peter Foley
+ fdo#58194 - export DOCX Automatic indent as firstLine indent
  in https://gerrit.libreoffice.org/10425 from Joren De Cuyper
+ fdo#82335.
  in https://gerrit.libreoffice.org/11555 from Sudarshan Rao
+ fdo#39625 Make existing CppUnittests work
  in https://gerrit.libreoffice.org/11605 from Tobias Madl
+ fdo#86606 removal of direct formatting options from the context menu
  in https://gerrit.libreoffice.org/13196 from Yousuf Philips
+ fdo#86784 make soffice commandline in juh Bootstrap.bootstrap() configura
  in https://gerrit.libreoffice.org/13290 from Christoph Lutz
+ Replace image-sort.pl with image-sort.py
  in https://gerrit.libreoffice.org/13124 from Marcos Paulo de Souza
+ start detection of kf5 stuff in configure.ac
  in https://gerrit.libreoffice.org/13079 from Jonathan Riddell
+ fdo#65209 attempt to enable daylight saving time
  in https://gerrit.libreoffice.org/11441 from Lim Jing
+ Move more places to boost::signal2 in math
  in https://gerrit.libreoffice.org/13065 from Marcos Paulo de Souza
+ more breeze icons
  in https://gerrit.libreoffice.org/13058 from Jonathan Riddell
+ vcl: change Timer and Idle to use boost's Signal2
  in https://gerrit.libreoffice.org/12528 from Chris Sherlock
+ Removed useless includes in accessibility/ tree
  in https://gerrit.libreoffice.org/12948 from Andrea Gelmini
+ Perftest for loading autocorrect dictionaries, related fdo#79761
  in https://gerrit.libreoffice.org/11296 from Matúš Kukan
+ HIG-ification of GSoC Color Picker dialog
  in https://gerrit.libreoffice.org/11494 from Olivier Hallot
+ WIP: fdo#43090: Add an option to disable autoclose brackets
  in https://gerrit.libreoffice.org/12024 from Marcos Paulo de Souza


Best,

Your friendly LibreOffice Gerrit Digest Mailer

Note: The bot generating this message can be found and improved here:
   
https://gerrit.libreoffice.org/gitweb?p=dev-tools.git;a=blob;f=gerritbot/send-daily-digest
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-bugs] [Bug 87698] open base report gives error

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87698

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 CC||rob...@familiegrosskopf.de

--- Comment #1 from rob...@familiegrosskopf.de ---
Have tested it with OpenSUSE 12.3 and OpenSUSE 13.2 on different systems. All
works well with the original packages of LO 4.3.5.2 (www.libreoffice.org). Then
I tested with the LO-version of OpenSUSE, as it seems to be reported for (The
Bild-ID is a special format of OpenSUSE, the original of LO looks like 
Version: 4.3.5.2
Build-ID: 3a87456aaa6a95c63eea1c1b3201acedf0751bd5).

With LO-version of OpenSUSE I couldn't open a report, but won't get the same
Java-error as reported. Could only test Version 4.3.3.2, original installed
together with OpenSUSE 13.2.

Seems to be a special bug of the OpenSUSE-packages. So please report it to
OpenSUSE, not to LO. How it has to be done:
https://en.opensuse.org/openSUSE:Submitting_bug_reports

You could also install the original version of LO. You could get it here:
http://www.libreoffice.org/
Reports would be opened with this version. Bugs for this version you could
report here.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87735] Update: Danish dictionary extension version 2.2 - 2014-12-22 is available.

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87735

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 CC||leiflod...@gmail.com,
   ||ma...@gmx.de,
   ||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet serval2...@yahoo.fr ---
Andreas/Leif: thought you might be interested in this one.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 85431] Matrix computation made by a libreoffice-basic function returning an array generates erratic errors 522

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85431

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

 CC||fdb...@neosheffield.co.uk

--- Comment #6 from Matthew Francis fdb...@neosheffield.co.uk ---
I get a different bibisect range for this using the following exact
reproduction instructions (in 43all). If it gets past both steps 3 and 4
without showing errors it's a good build.

1. Load the attached document
2. Ctrl-Shift-F9 to force recalculation
3. Set B3 to 75.9
4. Set B3 to 75.8

I also note that this seems to work correctly in 4.5 master, so I will follow
up with another bibisect to find the fix and check which branches it's made it
onto


33fcd09137f9589d4f5f619e1b64347aa0beaef5 is the first bad commit
commit 33fcd09137f9589d4f5f619e1b64347aa0beaef5
Author: Bjoern Michaelsen bjoern.michael...@canonical.com
Date:   Mon Dec 10 01:37:20 2012 +

source-hash-36170cd0dbc3409270cf3cf998805a790ee6228f

commit 36170cd0dbc3409270cf3cf998805a790ee6228f
Author: Matúš Kukan matus.ku...@gmail.com
AuthorDate: Fri Jul 13 20:42:16 2012 +0200
Commit: Matúš Kukan matus.ku...@gmail.com
CommitDate: Tue Jul 17 16:40:24 2012 +0200

tubes: start collaboration from the File-Collaborate menu as the only
way

This also kills LIBO_TUBES variable.
Listen button is used for registering client handlers (was
LIBO_TUBES=slave).
It may not be possible (if the name is already in use by another
process).

Change-Id: I04e0eb8721fa8e74c6cff585c79124b18046aad4

# bad: [423a84c4f7068853974887d98442bc2a2d0cc91b]
source-hash-c15927f20d4727c3b8de68497b6949e72f9e6e9e
# good: [65fd30f5cb4cdd37995a33420ed8273c0a29bf00]
source-hash-d6cde02dbce8c28c6af836e2dc1120f8a6ef9932
git bisect start 'latest' 'oldest'
# bad: [e02439a3d6297a1f5334fa558ddec5ef4212c574]
source-hash-6b8393474974d2af7a2cb3c47b3d5c081b550bdb
git bisect bad e02439a3d6297a1f5334fa558ddec5ef4212c574
# bad: [8f4aeaad2f65d656328a451154142bb82efa4327]
source-hash-1885266f274575327cdeee9852945a3e91f32f15
git bisect bad 8f4aeaad2f65d656328a451154142bb82efa4327
# good: [369369915d3582924b3d01c9b01167268ed38f3b]
source-hash-45295f3cdceb4c289553791071b5d7f4962d2ec4
git bisect good 369369915d3582924b3d01c9b01167268ed38f3b
# good: [6fce03a944bf50e90cd31e2d559fe8705ccc993e]
source-hash-47e4a33a6405eb1b5186027f55bd9cb99b0c1fe7
git bisect good 6fce03a944bf50e90cd31e2d559fe8705ccc993e
# good: [da317333e5675622f55c9dda17396c659af65320]
source-hash-15af925c254f27046427de70a59011e2ac3d6bdb
git bisect good da317333e5675622f55c9dda17396c659af65320
# bad: [18518588d8414f446ece5591944766f5082ebef5]
source-hash-82c25249e624cb54ca6d3293d1c3d0d8ebc208e0
git bisect bad 18518588d8414f446ece5591944766f5082ebef5
# bad: [89740762f0af849e492932bd71e59149cdcd5a00]
source-hash-06f20d73da21342046a480a6b22af69901351328
git bisect bad 89740762f0af849e492932bd71e59149cdcd5a00
# good: [66d8f76eaad7a1835bf0a828fb396b58b8f9dbaa]
source-hash-21dd191b9fd5a75f7633ea27f745a347adb42ae3
git bisect good 66d8f76eaad7a1835bf0a828fb396b58b8f9dbaa
# bad: [ce3917fd9ea98ae2089cf4dca9cc742c10935e7f]
source-hash-b0f170d7df9cff12535d2ecfd146b32b745a8ef8
git bisect bad ce3917fd9ea98ae2089cf4dca9cc742c10935e7f
# bad: [33fcd09137f9589d4f5f619e1b64347aa0beaef5]
source-hash-36170cd0dbc3409270cf3cf998805a790ee6228f
git bisect bad 33fcd09137f9589d4f5f619e1b64347aa0beaef5
# first bad commit: [33fcd09137f9589d4f5f619e1b64347aa0beaef5]
source-hash-36170cd0dbc3409270cf3cf998805a790ee6228f

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 73797] Allow rotation of images in Writer by any angle / degree (currently only 90° steps possible)

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73797

--- Comment #4 from Jay Philips philip...@hotmail.com ---
Created attachment 111363
  -- https://bugs.freedesktop.org/attachment.cgi?id=111363action=edit
90 degree rotated image docx

The original image should be retained unmodified and any modification of it
should only be of its visual representation, similar to how we have for flip
vertically/horizontally.

Due to this current limitation, when you open a docx file which has a rotated
image in it, LO loads it up as a drawing object with its area filled with the
image.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87731] Tag appearing in Arabic characters when change size of fonts

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87731

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 CC||philip...@hotmail.com
 Blocks||43808

--- Comment #2 from Jay Philips philip...@hotmail.com ---
This reminds me somewhat of bug 70775.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 43808] Meta bug for Most Annoying RTL related issues

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43808

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Depends on||87731

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87739] New: FILEOPEN : XLSX - formulas linked to other sheets are not refreshed when opening file

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87739

Bug ID: 87739
   Summary: FILEOPEN : XLSX - formulas linked to other sheets are
not refreshed when opening file
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: dpier...@bigfoot.com

Created attachment 111364
  -- https://bugs.freedesktop.org/attachment.cgi?id=111364action=edit
files 1.xlsx and 2.xlsx

Problem description:  formulas linked to other XlSX sheets are not refreshed
when opening the file

Steps to reproduce:
1. create a new file in Excel 2013 format : c:\C:\Temp\LibreOffice\1.xlsx 
2. add a value in cell A1 (sample value : 10) of file 1.xlsx and save the file
3. create a second file in Excel 2013 format : c:\C:\Temp\LibreOffice\2.xlsx 
4. in cell A1 of file 2.xlsx, set value equal content of cell A1 of file 1.xlsx
and save the file file 2.xlsx. Cell A1 contains formula :
='file:///C:/Temp/LibreOffice/1.xlsx'#$Sheet1.A1 . In this case, the cell shows
the value 10
5. open file 1.xlsx, change the content of cell A1 from 10 to 15 and save the
file.
6. open file 2.xlsx. LibreOffice notifies that the spreasheet has cells with
link to other spreadsheet(s). Select YES to get the cell content updated. In
this LibreOffice version, the cell A1 in file 2.xlsx is not refreshed as
expected. It still shows the value 10 but it should display the value 15.


Current behavior: formulas linked to other sheets are not refreshed = the cell
shows the old value : 10 

Expected behavior: formulas linked to other sheets are refreshed = the cell
shows the new value : 15

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87684] UI regression: Calc sheet tabs and horizontal scroll bar are now wasting twice the space

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87684

--- Comment #6 from Andy silva...@katamail.com ---
Of course the prevailing opinion has to . prevail, so I won't take it to
the streets to protest this.
However let me add just one note: 
one of the things all M$ Office users admire and appreciate when they see me
using LO is the vast and uncluttered work area;

as you probably know just as well as I do, M$ Office standard interface (which
is left as it is by 98% of users just out of laziness) has lately become so
cluttered with big menus object etc. that you have the ridicolous situation
where, unless you have a retina resolution screen, you can just see a dozens
lines of cells of you spreadsheet or, in the same way, you write something in
Word and can look at no more than a few lines if text at a time.

This is made even worse by the present days screens who tend to be extremely
landscape, while most workflows like writing or using data on a spreadsheet
are really vertically intensive affairs.

For example, the right side tools now available in LO and OO are a perfectly
rational solution to this absurdity - and moreover, they are completely
optional.

On the contrary, forcing the user to give up some further space in the vertical
dimension, as it happens here, is IMHO a much less smart move.

By the way, a similar change was made a few years ago in Impress, where the
five tabs (normal, structure, etc) for slide display modes could have been
easily put together with the horizontal scrollbar (even more than in Calc,
since they are fixed in number and size and occupy just a fraction of the line
where they are), but take instead their own space which is an empty and totally
unused part of the UI (see attachment to clarify, space circled in red).
I notified that as well at the time, but if was declined in the same way.
UI design is a really important part of an app, and I am no professional of
course on this topic; however I feel that having some space in it which is
empty and an unavoidable part of it is not really smart in general.
I thank you for the attention anyway!

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87684] UI regression: Calc sheet tabs and horizontal scroll bar are now wasting twice the space

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87684

--- Comment #7 from Andy silva...@katamail.com ---
Created attachment 111365
  -- https://bugs.freedesktop.org/attachment.cgi?id=111365action=edit
the unused space in the UI design of Impress is circled in red

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87720] Default image insert anchor and wrapping

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87720

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Blocks||87740

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 77522] FILEOPEN: Image anchor and size not preserved when rows inserted

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=77522

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Blocks||87740

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 82873] Default behaviour of inserting an image in a list

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82873

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Blocks||87740

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87740] New: Meta: Image anchor and wrapping bugs and enhancements

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87740

Bug ID: 87740
   Summary: Meta: Image anchor and wrapping bugs and enhancements
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: NEW
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
Depends on: 49179, 77522, 82873, 87720

Have been filing quite a number of image anchor and wrapping bugs and
enhancements, so here is a meta bug to group them.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 49179] FILEOPEN: FILESAVE: Image anchored 'to page' in .doc result in 'to character' when reopening

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49179

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Blocks||87740

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87740] Meta: Image anchor and wrapping bugs and enhancements

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87740

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Depends on||87742

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87742] New: When image anchor is set to 'As Character' it should set vertical align to top

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87742

Bug ID: 87742
   Summary: When image anchor is set to 'As Character' it should
set vertical align to top
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: NEW
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org
Blocks: 87740

Created attachment 111368
  -- https://bugs.freedesktop.org/attachment.cgi?id=111368action=edit
align center vs align top

When an image is changed from another anchor setting to 'As Character' the
vertical alignment is always set to align center
(.uno:CommonAlignVerticalCenter) resulting in the image appearing centered
vertically on the line pushing text above an below it on another lines.
Instead, it should be set to align top (.uno:CommonAlignTop) which only pushes
text above it, the same way that if you have larger text on a line, it only
pushes text above it.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87720] Default image insert anchor and wrapping

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87720

--- Comment #1 from Jay Philips philip...@hotmail.com ---
Another setting worth providing options to is alignment, as presently, inserted
images are always center aligned.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87400] Crash inserting horizontal ruler

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87400

sophie gautier.sop...@gmail.com changed:

   What|Removed |Added

 CC||gautier.sop...@gmail.com

--- Comment #2 from sophie gautier.sop...@gmail.com ---
I can't reproduce with Version: 4.5.0.0.alpha0+
Build ID: 57626f2132f73e4e42b31e364b25c5867336e718
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2014-12-26_09:28:24
Locale: fr_FR Ubuntu 14.10 - Sophie

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87739] FILEOPEN : XLSX - formulas linked to other sheets are not refreshed when opening file

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87739

--- Comment #1 from MM plokk...@fastmail.fm ---
Unconfirmed with V4.3.5.2 on windows 7 x64
Unconfirmed with V4.3.5.2 on mint 17.1 x64

Even opening the 2 files together, changing the value in file 1 and without
saving making a hard-update with CTRL-Shift-F9 works.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84208] Menus having the word 'slide' rather than 'page'

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84208

--- Comment #1 from Jay Philips philip...@hotmail.com ---
I fixed the context menu entry in bug 84233.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84257] Menus, dialogs and sidebar having the word 'page' rather than 'slide'

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84257

--- Comment #2 from Jay Philips philip...@hotmail.com ---
I fixed the context menu entry in bug 84233.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87415] LibreOffice always crashes when trying to modify macro

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87415

sophie gautier.sop...@gmail.com changed:

   What|Removed |Added

 CC||gautier.sop...@gmail.com

--- Comment #4 from sophie gautier.sop...@gmail.com ---
Hi, I have no crash under Ubuntu 14.10 and Version: 4.3.4.1. I have the same
error message as Raal but I can access the macro and modify it. Sophie

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87441] Sending document as Email removes invisible content - this should be a configuration option

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87441

sophie gautier.sop...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||gautier.sop...@gmail.com
 Ever confirmed|0   |1

--- Comment #3 from sophie gautier.sop...@gmail.com ---
Hi, confirmed using Version: 4.3.4.1 and Ubuntu 14.10, the hidden section is
removed once the document sent by mail. Set as New - Sophie

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87449] Copy from PDF - no paste option in context menu

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87449

sophie gautier.sop...@gmail.com changed:

   What|Removed |Added

 CC||gautier.sop...@gmail.com

--- Comment #5 from sophie gautier.sop...@gmail.com ---
Hi, could you attach the .pdf you used so we can try to reproduce the problem.
Thanks - Sophie

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87743] New: Pack LibreOffice for PlayOnLinux for QA

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87743

Bug ID: 87743
   Summary: Pack LibreOffice for PlayOnLinux for QA
   Product: LibreOffice
   Version: unspecified
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Libreoffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: bjoern.michael...@canonical.com

http://www.playonlinux.com allows easy 1-click installs of Windows software on
Linux via Wine.

It would be great to have LibreOffice in there, so that is an quick-and-easy
way to confirm Windows bugs reports on a Linux machine.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87743] Pack LibreOffice for PlayOnLinux for QA

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87743

Björn Michaelsen bjoern.michael...@canonical.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1
 Whiteboard||EasyHack SkillScript
   ||DifficultyBeginner TopicQA

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 85431] Matrix computation made by a libreoffice-basic function returning an array generates erratic errors 522

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85431

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |FIXED

--- Comment #7 from Matthew Francis fdb...@neosheffield.co.uk ---
The fix is somewhere in this series of patches, hidden behind an unrelated
build breakage

709784cf1d417b4b2df8c5228a4664f697e45a5c
a87412a599b0f87bf2cbf0f02f539b3529a08940
2ebf98e8225523186965a2ced928b0623020e41e
a205b8564c9477e91a5f2507f4746b85e0c62f95
222d79a895f5ee6b4ae3459d72e863e776c535e8
e296b3d25e7d78544d3abd87780f9680e56efa26
e2f674e475b8705c02962e564956952108060ade
f281d2d24c2a368c58d32b1b50acf83e0f056d90
28bf1a3a1408df042d7e767c3760e47faf2d077e
bd84b356d4d817a933985e891112b62ca6815212
024a5d79e101b26d23054e1906505810210d4e56

Confirmed that this is fixed in 4.5 master and 4.4.0beta2. Probably not a
candidate for 4.3

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87487] Vlookup 504 error

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87487

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 Status|NEW |NEEDINFO

--- Comment #4 from m.a.riosv mari...@miguelangel.mobi ---
I think the issue is with the single quote in the file name, because it is
closing the first single quote getting a wrong formula.

try with:
'file:///c:/users/logistics/desktop/oct''14.ods'#topay.c2:j983
---
escaping the single quote in the file name, and deleting unnecessary brackets
at the end of the formula.

When possible the best is avoid special characters in file names, specially
those that have special meaning in other areas.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 85402] LO loops after opening specific DOCX document

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85402

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

 CC||fdb...@neosheffield.co.uk

--- Comment #4 from Matthew Francis fdb...@neosheffield.co.uk ---
(Commented during a sweep of bugs which are bibisected but not source bisected)
This is so far back into the dark ages of the build system, I can't even get it
to build from source.
Nothing obvious stands out from the list of commits in the bibisect range
either.

Unfortunately this one will probably have to be debugged the hard way

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 72129] FILESAVE Could not save document, error in writing sub document context.xml with particular document

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72129

sur...@hotmail.com changed:

   What|Removed |Added

   Priority|medium  |high
   Hardware|Other   |x86-64 (AMD64)
Version|4.1.3.2 release |4.4.0.1 rc
 OS|Mac OS X (All)  |Linux (All)

--- Comment #8 from sur...@hotmail.com ---
Hello,

I ommited to indicate that I'm under UBUNTU 14.10 X64 - LibO4.4.0 RC1

Maybe these details can help.

Bunty

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87744] New: VIEWING: EMF images in DOC file again not rendered correctly

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87744

Bug ID: 87744
   Summary: VIEWING: EMF images in DOC file again not rendered
correctly
   Product: LibreOffice
   Version: 4.4.0.0.beta2
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Keywords: regression
  Severity: major
  Priority: medium
 Component: graphics stack
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: gti...@gmail.com

This is another bug with doc file at
http://www.cgedd.fr/prix-immobilier-friggit.doc, this one a regression.
Steps to reproduce: open with LO 4.4.0 beta2 or newer.
Screenshot at https://bugs.freedesktop.org/attachment.cgi?id=111295

There are multiple problems with this file:
1. crash on PDF export, original report in bug 80508, used to be confirmed in
Linux Mint but not always reproducible
2. accidental crash on scrolling down (with mouse on vertical scroll) to the
end and up - tested in Windows 7 x64 with LO 4.3.2 and LO 4.3.3 but cannot be 
reproduced starting from 4.3.4
3. 8 pages in document instead of 7 on open, reproducible from 4.3.1.1 both in
Windows and Linux, reported as Bug 86468
4. PDF export incomplete, there are items missing in WMF or EMF (legend,
caption) - not reported yet or duplicate (to check after Bug 80389 and this bug
are solved)
5. WMF images in DOC file not rendered correctly in Linux - Bug 80503 
6. WMF images in DOC file not rendered correctly from LO 4.4.0 beta2 (tested in
Win7 64 bit) - it's this new bug (patch available in Bug 80503 for LO 4.5.0
doesn't solve this bug)

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87744] VIEWING: EMF images in DOC file again not rendered correctly

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87744

Timur gti...@gmail.com changed:

   What|Removed |Added

   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=80503

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 74354] EDITING: draw object preview should update as soon as Shift (preserve aspect ratio) is pressed

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74354

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #4 from Jay Philips philip...@hotmail.com ---
Still works fine for me. If this still doenst work fine for you, please send us
a screencast of this behaviour with simplescreenrecorder or kazam and set the
bug status back to UNCONFIRMED.

Version: 4.5.0.0.alpha0+
Build ID: e570cd7a293ceee175949dcc9656cdf776ae3c37
TinderBox: Linux-rpm_deb-x86@45-TDF, Branch:master, Time: 2014-12-12_18:49:54

Version: 4.3.6.0.0+
Build ID: ddcf6367240d564e7daf4078e0a4caf0adde9043
TinderBox: Linux-rpm_deb-x86@45-TDF, Branch:libreoffice-4-3, Time:
2014-12-12_16:47:22

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87745] New: UI glitch: Buttons for the new color picker are truncated

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87745

Bug ID: 87745
   Summary: UI glitch: Buttons for the new color picker are
truncated
   Product: LibreOffice
   Version: 4.4.0.1 rc
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: norbert.n...@gmx.de

Hello,

please have a loom at the attached screen shot. The buttons for the new color
picker are truncated.


Found with
Version: 4.4.0.1
Build-ID: 1ba9640ddd424f1f535c75bf2b86703770b8cf6f
Gebietsschema: de_DE

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87745] UI glitch: Buttons for the new color picker are truncated

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87745

--- Comment #1 from OfficeUser norbert.n...@gmx.de ---
Created attachment 111373
  -- https://bugs.freedesktop.org/attachment.cgi?id=111373action=edit
Screen shot

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87745] UI glitch: Buttons for the new color picker are truncated

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87745

--- Comment #2 from OfficeUser norbert.n...@gmx.de ---
Typo: loom - look

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87549] UI: activating Line numbering for Header and Footer with dialogs Tools Line Numbering and Styles Header/Footer not synchronised

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87549

sophie gautier.sop...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||gautier.sop...@gmail.com
 Ever confirmed|0   |1

--- Comment #5 from sophie gautier.sop...@gmail.com ---
Hi Cor, for me only step 4 is reproducible, the other steps are ok using
Version: 4.4.0.1
Build ID: 1ba9640ddd424f1f535c75bf2b86703770b8cf6f
Locale: fr_FR Ubuntu 14.10. Set as New for this last step. Sophie

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87706] DIALOG: Dialog title says 'Image Styles' when its not an image

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87706

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Status|NEW |ASSIGNED
  Component|Presentation|ux-advise
   Assignee|libreoffice-b...@lists.free |philip...@hotmail.com
   |desktop.org |

--- Comment #4 from Jay Philips philip...@hotmail.com ---
As it changed from 'Graphic Styles' to 'Image Styles' and currently 'Drawing
Object Styles' is 'Drawing Object Styles' suitable to also cover image styles?
I was thinking to change it to Image/Drawing Object Styles.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 61424] CONFIGURATION: Normal view not possible with custom short cut key

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61424

--- Comment #13 from bugquestcon...@online.de ---
Just made a test in Version: 4.3.5.2
Build ID: 3a87456aaa6a95c63eea1c1b3201acedf0751bd5

XP/SP3

Exactly the same bug as in my first posting. No shortcut key possible to change
to Normal View mode.

Shortcut keys to switch between all viewing modes would really be great .

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 57001] EDITING: Characters get overwritten - no text entry possible

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57001

--- Comment #11 from bugquestcon...@online.de ---
It is a bit tricky to create the bug but I will try to test it during a
presentation I have to make in the next weeks and will get back to you.

I am using 4.3.5.2 in the meantime. 

Please give me some time.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87556] Fatal error with use Fontwork

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87556

sophie gautier.sop...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||gautier.sop...@gmail.com
 Ever confirmed|0   |1

--- Comment #12 from sophie gautier.sop...@gmail.com ---
Hi, I can reproduce using Version: 4.5.0.0.alpha0+
Build ID: 57626f2132f73e4e42b31e364b25c5867336e718
TinderBox: Linux-rpm_deb-x86_64@46-TDF, Branch:master, Time:
2014-12-26_09:28:24
Locale: fr_FR Ubuntu 14.10. 
There is a dialog box showing a warning triangle and a ok button. When I click
on ok, LibreOffice vanishes. Set as New - Sophie

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 57001] EDITING: Characters get overwritten - no text entry possible

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57001

--- Comment #12 from bugquestcon...@online.de ---
Despite having written my above comment I tried for a while to create the bug
but could not. During the upcoming presentation I will try to provoke the bug
by using several horizontal guide line. 

However I could create a similar bug. Please see attachment  Impress bug
141226.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 57001] EDITING: Characters get overwritten - no text entry possible

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57001

--- Comment #13 from bugquestcon...@online.de ---
Created attachment 111375
  -- https://bugs.freedesktop.org/attachment.cgi?id=111375action=edit
bug mentioned in comment 12

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87746] New: Slide Design should be disabled when in Master View

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87746

Bug ID: 87746
   Summary: Slide Design should be disabled when in Master View
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Presentation
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com

The in master view (View  Master  Slide Master) the slide design function
(Format  Slide Design - .uno:PresentationLayout) should be inaccessible as it
has not effect in this view.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 73033] EDITING: Improve visibility of custom animation while editing a custom animation

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73033

--- Comment #2 from bugquestcon...@online.de ---
Yes it is still the same in 4.3.5.2.

The Preview button is there but it works only for the top element or the
element selected in the custom animation window. 

It is necessary to see how the entire slide is working to judge the
customization. Currently to see how it works one always needs to switch into
presentation mode.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87747] New: Switch Box or similar to embed / link pictures in writer (before / after creating documents)

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87747

Bug ID: 87747
   Summary: Switch Box or similar to embed / link pictures in
writer (before / after creating documents)
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: All
OS: All
Status: UNCONFIRMED
  Keywords: regression
  Severity: enhancement
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: peter_lud...@freenet.de

Hi there,

I had mentioned this problem before and it had been changed in the last version
(4.3.2 - yippieh) but it seems that there are many people out there who are not
satisfied with the changed thing (or it is a bug) - thats why the changes were
reverted in the newset version of writer? (all pictured copied from a webside
are just linked - not embedded)

The problem:

If I paste a page/webside from the internet all pictures are just linked. So I
have to click on Edit - links lösen ... to embed these pictures. If I forget
to do this all pics are lost and the document has no pics. :(( Thats not
helpful.

However: Many people seem to like this. (I can understand this too)

My improvement:

Why not putting a setting / switch field / tick field in Preferences / Paths
similar to:

Embed all pictues inserted automatically OR Just link all pictures inserted

Then even afterwards or before they create a document people coud decide if
they would like to embed pictures or just link them and all people would be
happy. 

How about that?

Hope this will be not too much a problem and thanks for your time and
considerations.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87241] LibreOffice Base is freezed

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87241

Jacques Guilleron guillero...@aol.com changed:

   What|Removed |Added

 CC||guillero...@aol.com

--- Comment #9 from Jacques Guilleron guillero...@aol.com ---
Hi kompilainenn,

I don't reproduce using LO 4.3.5.1
Build ID: 8fd0451cc08e6a5310bed8b7ad1c46b93c1c6889
 Windows 7 Home Premium
JRE 1.7.0_65

Regards,

Jacques

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87709] Cell range definition incorrectly updated at re-open time

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87709

--- Comment #2 from jn...@outlook.com ---
I confirm that the problem only happens with file format xls.
It does not happen with file format ods.
It does not happen with file format xlsx.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87748] New: DIALOG: Document preview in open dialog

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87748

Bug ID: 87748
   Summary: DIALOG: Document preview in open dialog
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: NEW
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org

We have a preview of images in the insert image dialog box and in a similar way
it would be useful to have an document preview in the open document dialog. For
ODF files, an image of the document is stored in the ODF, so that could easily
been displayed, but i assume it maybe more difficult for other document types.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87749] New: EDITING: Resuming Spelling and Grammar check causes UI loop glitch

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87749

Bug ID: 87749
   Summary: EDITING: Resuming Spelling and Grammar check causes UI
loop glitch
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: john.rob...@btinternet.com

To replicate bug:
1) Spell-check a document.
2) Edit the document out of the spell-checker while it is still running.
3) Go back to the spell-check and resume.
4) Attempt to edit document from within spell-checking window.
5) Loop bug occurs.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87522] LibreOffice Base is freezed when creating a report

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87522

Jacques Guilleron guillero...@aol.com changed:

   What|Removed |Added

   Priority|medium  |high
 Status|UNCONFIRMED |NEW
 CC||guillero...@aol.com
 Ever confirmed|0   |1

--- Comment #6 from Jacques Guilleron guillero...@aol.com ---
Hi Naruhiko,

I reproduce using:
LO 4.4.0.0.beta1 Build ID: 9af3d21234aa89dac653c0bd76648188cdeb683e 
LO 4.4.0.0.beta2 Build ID: be92f32b8f21603a6b7a75dd645f7475bdee519d 
LO 4.4.0.1 Build ID: 1ba9640ddd424f1f535c75bf2b86703770b8cf6f 
LO 4.5.0.0.alpha0+ Build ID: 736b040cb158308e002d24cee8c33e794b2f59a1
TinderBox: Win-x86@39, Branch:master, Time: 2014-12-01_15:20:47 Locale: fr_FR
 Windows 7 Home premium
JRE 1.7.0_65. So it's not the same bug as Bug 87241, which raise with only
JRE 1.8.0_25

Regards,

Jacques

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 77661] Base crash when editing form

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=77661

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #5 from Julien Nabet serval2...@yahoo.fr ---
No feedback since about 6 months.
Let's put this one to WFM.
Daniel: don't hesitate to reopen this tracker if you can reproduce this with
last stable LO version (4.3.5).

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 79126] EDITING: Form-Wizard: choosing styles like background-color impossible with a timestamp-field in the datasource of the form

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79126
Bug 79126 depends on bug 71027, which changed state.

Bug 71027 Summary: form wizard: timestamp field does not get style applied
https://bugs.freedesktop.org/show_bug.cgi?id=71027

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 79126] EDITING: Form-Wizard: choosing styles like background-color impossible with a timestamp-field in the datasource of the form

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=79126

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 CC||serval2...@yahoo.fr
 Resolution|--- |FIXED
 Whiteboard|BSA |BSA target:4.5.0

--- Comment #6 from Julien Nabet serval2...@yahoo.fr ---
After the Lionel's fixes made for fdo#87301, this one should be  fixed right
now (with recent daily build from master sources).
If I'm wrong and so someone reproduces this problem, please don't hesitate to
reopen this tracker.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 48114] EDITING: Spell Grammar dialog in a loop after Resume

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48114

Urmas davian...@gmail.com changed:

   What|Removed |Added

 CC||john.rob...@btinternet.com

--- Comment #5 from Urmas davian...@gmail.com ---
*** Bug 87749 has been marked as a duplicate of this bug. ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87749] EDITING: Resuming Spelling and Grammar check causes UI loop glitch

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87749

Urmas davian...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #1 from Urmas davian...@gmail.com ---


*** This bug has been marked as a duplicate of bug 48114 ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 85398] To cut table contents does not set document-modified flag

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=85398

Matthew Francis fdb...@neosheffield.co.uk changed:

   What|Removed |Added

   Keywords||bisected

--- Comment #7 from Matthew Francis fdb...@neosheffield.co.uk ---
The bug appears to have been introduced by the following commit:

commit a00b62422e5499e842d0b3b6302ba79f3d808c27
Author: Gokul gswaminat...@kacst.edu.sa
Date:   Sat Feb 2 15:29:56 2013 +0300

Fixes fdo#46186, The Table Remains in the defined writing mode.

The table in impress is drawn under the rectangular are, on Selecting
the table it was only selecting the rectangular area and not the cells
inside, Making the layout to be as RTL which was mirroring the table.

But, We need the table to be in RTL Writing mode and not mirroring the
table. Now on applying my patch, If table is selected, it will select
the entire cells inside which is the actual table and the functionality
works fine.

Change-Id: I9d6bdde5019322488be66fa89a6488d348b2cf44
Reviewed-on: https://gerrit.libreoffice.org/1964
Reviewed-by: Ahmad Harthi aalhar...@kacst.edu.sa
Tested-by: Ahmad Harthi aalhar...@kacst.edu.sa

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 86345] We need touch with -h option support but we don't use $(TOUCH)

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86345

--- Comment #2 from Richard PALO rich...@netbsd.org ---
this apparently slipped by without notice, sorry:
https://gerrit.libreoffice.org/13664

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87750] New: Can't choose page style for a worksheet by right click

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87750

Bug ID: 87750
   Summary: Can't choose page style for a worksheet by right click
   Product: LibreOffice
   Version: unspecified
  Hardware: x86 (IA32)
OS: Mac OS X (All)
Status: UNCONFIRMED
  Severity: minor
  Priority: medium
 Component: Spreadsheet
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: sma...@email.t-com.hr

When I open any document (ODS or XLS or XLSX), I should be able to change the
page style for any worksheet by right-clicking on the chosen style name written
in the status bar (on the bottom of the window), then a list of styles should
appear and left-clicking a style from the list chooses that style for that
worksheet. I'm sure this worked before, or maybe it works on Linux.
However, now right-clicking the style name in status bar has no effect. To
change the style of a worksheet I need to open the Sytles and Formatting, click
the tab with page styles, click the style I want to change to, then select the
Fill Format tool, and then click anywhere on a spreadsheet I want to change.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84714] ODF filter: table:table inside draw:custom-shape is not valid

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84714

Miklos Vajna vmik...@collabora.co.uk changed:

   What|Removed |Added

 Status|UNCONFIRMED |ASSIGNED
   Assignee|libreoffice-b...@lists.free |vmik...@collabora.co.uk
   |desktop.org |
Summary|Enable LibreOffice to use   |ODF filter: table:table
   |table:table element as|inside draw:custom-shape
   |direct child of |is not valid
   |draw:frame|
 Ever confirmed|0   |1

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 83554] 64bit LO for Mac requires restart to activate extension

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83554

foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from foss f...@openmailbox.org ---
Tried to reproduce:

1. download http://divvun.no/static_files/oxts/fi_LO-voikko-4.0-mac.oxt
2. open LO Version: 4.4.0.1
Build ID: 1ba9640ddd424f1f535c75bf2b86703770b8cf6f
Locale: de_
3. open extension manager
4. Add and select the downloaded file
5. install for all users

all good. how do I observe that the oxt is useless? Not sure what it does,
you don't mention anything. But I can open it's options and don't see any need
for a restart.

Setting to NEEDINFO until we have detailed info on how to check extension
availability.

OSX 10.10.1 here.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 74861] [Spreadsheet] Exporting A4-sized ODS to PDF with '--headless' creates Letter-sized PDF (where manual export via GUI creates A4)

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74861

foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from foss f...@openmailbox.org ---
Sorry to difficult to reproduce. But did you update to OS X 10.10.1? Does this
persist with LO 4.4.0.1?
http://www.libreoffice.org/download/pre-releases/

Interesting that this seems to work on Linux.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87751] New: Document not released after close Calc until Writer close

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87751

Bug ID: 87751
   Summary: Document not released after close Calc until Writer
close
   Product: LibreOffice
   Version: 4.3.5.2 release
  Hardware: x86-64 (AMD64)
OS: Windows (All)
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Libreoffice
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: mr_sm...@ukr.net

1. Open any.ods file from Windows desktop
2. Open Writer with empty document
3. Close Calc
4. Try to delete any.ods from desktop to trash -- bug here 'file locked'
5. Close Writer
6. Try to delete any.ods from desktop to trash -- ok, deleted.

LO 4.3.5
Windows 10 Tech preview build 9879 (64 bit) runned in VirtualBox 4.3.20

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 83554] 64bit LO for Mac requires restart to activate extension

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83554

foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #2 from foss f...@openmailbox.org ---
More testing: installed
http://extensions.libreoffice.org/extension-center/calendar-for-calc/releases/4.0.1

That showed in Tools  Addons as Calendar right after installation. A restart
didn't change anything.

I think this is WORKSFORME in 4.4.0.1.

Please re-open if you disagree or I missed something.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87556] Fatal error with use Fontwork

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87556

--- Comment #13 from Jay Philips philip...@hotmail.com ---
Glad you could confirm it sophie. Can you provide a backtrace?

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87300] EDITING: Calc crashes after repeated cut-paste operation

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87300

Massimo SOAVE soavemass...@tiscali.it changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #11 from Massimo SOAVE soavemass...@tiscali.it ---
(In reply to Timur from comment #10)
 OK, crash is clear and it's not what happens here. 
 What I see in those bugs is that LO freezes and LO hangs relate to the
 same problem. Although, in my opinion, freeze should mean that LO can be
 used after a few minutes and hang should mean that it has to be killed and
 reopen. So LO hangs should be a proper description here (ok, I know, even
 I used freeze at first).
 You may not find some useful info in those bugs, because those problems are
 nasty and hard to track. You may still choose either one and mark this one
 as a duplicate.

Thnks for the info Timur, you perfectly right when stating that Bug 46406 and
Bug 78429 are practically the same so i will close this one

*** This bug has been marked as a duplicate of bug 78429 ***

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87753] New: TOOLBAR: Media playback toolbar should appear at the top

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87753

Bug ID: 87753
   Summary: TOOLBAR: Media playback toolbar should appear at the
top
   Product: LibreOffice
   Version: 4.5.0.0.alpha0+ Master
  Hardware: Other
OS: All
Status: NEW
  Severity: enhancement
  Priority: medium
 Component: ux-advise
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: philip...@hotmail.com
CC: libreoffice-ux-adv...@lists.freedesktop.org
Blocks: 84909

When you click on a media clip in impress the media playback toolbar popups up
at the bottom above the drawing toolbar and also hides the line and filling
toolbar at the top. This behaviour of hiding the top toolbar and showing the
bottom toolbar, causes the UI to jump up and down when you select and deselect
a media clip. So the optimal solution is having the media playback replace the
line and filling toolbar in its same location.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 84909] Meta: Enhancing Impress/Draw toolbars and context menu

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=84909

Jay Philips philip...@hotmail.com changed:

   What|Removed |Added

 Depends on||87753

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87750] Can't choose page style for a worksheet by right click

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87750

m.a.riosv mari...@miguelangel.mobi changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||mari...@miguelangel.mobi
 Ever confirmed|0   |1

--- Comment #1 from m.a.riosv mari...@miguelangel.mobi ---
Hi Emil, thanks for reporting.

I have just verified it doesn't work with any version of LibreOffice from 3.3
up 4.4, neither with ApacheOpenOffice 4.1.

I you like change the importance from minor to enhancement.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 38667] Query-Wizard produces syntax error: 9.99 vs 9, 99 (SQL Status: HY000)

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38667

Julien Nabet serval2...@yahoo.fr changed:

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #13 from Julien Nabet serval2...@yahoo.fr ---
On pc Debian x86-64 with French UI, I can reproduce the problem with LO Debian
4.3.3 package, 4.3 sources updated some days ago.
However, I don't reproduce this with 4.4 sources updated yesterday.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87754] New: Find Replace: Some items of Attributes dialog are not translatable

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87754

Bug ID: 87754
   Summary: Find  Replace: Some items of Attributes dialog are
not translatable
   Product: LibreOffice
   Version: 4.3.4.1 release
  Hardware: Other
OS: All
Status: UNCONFIRMED
  Keywords: regression
  Severity: normal
  Priority: medium
 Component: Localization
  Assignee: libreoffice-bugs@lists.freedesktop.org
  Reporter: stanislav.hora...@gmail.com

Created attachment 111377
  -- https://bugs.freedesktop.org/attachment.cgi?id=111377action=edit
untranslated items in Attributes dialog (qtz, 4.4 beta 1)

1. In Writer, Choose Edit - Find  Replace (or Ctrl + H).
2. Expand the dialog by clicking at Other options.
3. Click the Attributes button.

In the Attributes dialog, there are some items which is not possible to
translate as illustrated by the attached screenshot with string IDs (qtz
locale).

The items are: Blinking, Indent, Scale, Spacing

It appears in 4.3.4, 4.4 beta 1 and 4.4 RC1 (OS Ubuntu 14.04); 4.2.7 is fully
localized, so marking as regression.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 87604] FORMATTING: Table of Contents removes formatting of the Headings

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=87604

Walter stridero...@gmail.com changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from Walter stridero...@gmail.com ---
If the user applies direct formatting I think it reasonable to assume that he
would want it to appear in the TOC. When I format a title I intend to give
emphasis to some particular word and I do want it to appear in the TOC. Eg:
1. 1st, 2nd, ecc.
2. A TITLE WITH A FOREIGN WORD. I write foreign words in italics and I would
like it to be in italics also in the TOC
3. I think it would apply also to color. There is a reason why the user choses
to use color.

What I intend is to retain the DIRECT FORMATTING and not the formatting of the
style used. I agree that the formatting of the Heading style should be stripped
out.

Thanks

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 60251] ACCESSIBILITY: Tracking Metabug for Windows OS accessibility and AT issues

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60251
Bug 60251 depends on bug 83153, which changed state.

Bug 83153 Summary: Implement UAA framework to support speech recognition and 
dictation support
https://bugs.freedesktop.org/show_bug.cgi?id=83153

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 36549] ACCESSIBILITY: Tracking bug for issues affecting a11y ATK and GNOME Orca screen reader support

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36549
Bug 36549 depends on bug 83153, which changed state.

Bug 83153 Summary: Implement UAA framework to support speech recognition and 
dictation support
https://bugs.freedesktop.org/show_bug.cgi?id=83153

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 55571] ACCESSIBILITY: Tracking bug for important issues related to the Mac OS X Accessibility API

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55571
Bug 55571 depends on bug 83153, which changed state.

Bug 83153 Summary: Implement UAA framework to support speech recognition and 
dictation support
https://bugs.freedesktop.org/show_bug.cgi?id=83153

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 83153] Implement UAA framework to support speech recognition and dictation support

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83153

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WONTFIX

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


[Libreoffice-bugs] [Bug 86055] size and window placement (aka screen position) of LO is not remembered on OSX 10.10

2014-12-26 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=86055

V Stuart Foote vstuart.fo...@utsa.edu changed:

   What|Removed |Added

   Priority|highest |medium
 CC||vstuart.fo...@utsa.edu
 Blocks|79641   |

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs


  1   2   >