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

2014-02-23 Thread Miklos Vajna
 writerfilter/source/dmapper/DomainMapper.cxx   |   24 ++--
 writerfilter/source/doctok/resources.xmi   |  124 -
 writerfilter/source/ooxml/model.xml|8 -
 writerfilter/source/rtftok/rtfdocumentimpl.cxx |8 -
 4 files changed, 20 insertions(+), 144 deletions(-)

New commits:
commit 675ff51f2e0e1bf0d9f689382162a3e62e0f0f48
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun Feb 23 10:50:20 2014 +0100

writerfilter: convert sprm:CF{Caps,SmallCaps,Strike,DStrike}

Change-Id: Ib582a8266990a3a6dd630baeca588ed68fdb

diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index ea39f2c..80f1ed8 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -1312,13 +1312,13 @@ void DomainMapper::sprmWithProps( Sprm rSprm, 
PropertyMapPtr rContext, SprmType
 case NS_ooxml::LN_EG_RPrBase_bCs:
 case NS_ooxml::LN_EG_RPrBase_i:
 case NS_ooxml::LN_EG_RPrBase_iCs:
-case NS_sprm::LN_CFStrike: //sprmCFStrike
+case NS_ooxml::LN_EG_RPrBase_strike:
+case NS_ooxml::LN_EG_RPrBase_dstrike:
 case NS_sprm::LN_CFOutline: //sprmCFOutline
 case NS_sprm::LN_CFShadow: //sprmCFShadow
-case NS_sprm::LN_CFSmallCaps: //sprmCFSmallCaps
-case NS_sprm::LN_CFCaps: //sprmCFCaps
+case NS_ooxml::LN_EG_RPrBase_caps:
+case NS_ooxml::LN_EG_RPrBase_smallCaps:
 case NS_sprm::LN_CFVanish: //sprmCFVanish
-case NS_sprm::LN_CFDStrike:   // sprmCFDStrike
 {
 PropertyIds ePropertyId = PROP_CHAR_WEIGHT; //initialized to 
prevent warning!
 switch( nSprmId )
@@ -1331,8 +1331,8 @@ void DomainMapper::sprmWithProps( Sprm rSprm, 
PropertyMapPtr rContext, SprmType
 case NS_ooxml::LN_EG_RPrBase_iCs:
 ePropertyId = nSprmId == NS_ooxml::LN_EG_RPrBase_i ? 
PROP_CHAR_POSTURE : PROP_CHAR_POSTURE_COMPLEX;
 break;
-case NS_sprm::LN_CFStrike: /*sprmCFStrike*/
-case NS_sprm::LN_CFDStrike : /*sprmCFDStrike double strike 
through*/
+case NS_ooxml::LN_EG_RPrBase_strike:
+case NS_ooxml::LN_EG_RPrBase_dstrike:
 ePropertyId = PROP_CHAR_STRIKEOUT;
 break;
 case NS_sprm::LN_CFOutline: /*sprmCFOutline*/
@@ -1341,8 +1341,8 @@ void DomainMapper::sprmWithProps( Sprm rSprm, 
PropertyMapPtr rContext, SprmType
 case NS_sprm::LN_CFShadow: /*sprmCFShadow*/
 ePropertyId = PROP_CHAR_SHADOWED;
 break;
-case NS_sprm::LN_CFSmallCaps: /*sprmCFSmallCaps*/
-case NS_sprm::LN_CFCaps: /*sprmCFCaps*/
+case NS_ooxml::LN_EG_RPrBase_caps:
+case NS_ooxml::LN_EG_RPrBase_smallCaps:
 ePropertyId = PROP_CHAR_CASE_MAP;
 break;
 case NS_sprm::LN_CFVanish: /*sprmCFVanish*/
@@ -1416,11 +1416,11 @@ void DomainMapper::sprmWithProps( Sprm rSprm, 
PropertyMapPtr rContext, SprmType
 m_pImpl-appendGrabBag(m_pImpl-m_aInteropGrabBag, 
i, OUString::number(nIntValue));
 }
 break;
-case NS_sprm::LN_CFStrike: /*sprmCFStrike*/
+case NS_ooxml::LN_EG_RPrBase_strike:
 rContext-Insert(ePropertyId,
  uno::makeAny( nIntValue ? 
awt::FontStrikeout::SINGLE : awt::FontStrikeout::NONE ) );
 break;
-case NS_sprm::LN_CFDStrike : /*sprmCFDStrike double strike 
through*/
+case NS_ooxml::LN_EG_RPrBase_dstrike:
 rContext-Insert(ePropertyId,
  uno::makeAny( nIntValue ? 
awt::FontStrikeout::DOUBLE : awt::FontStrikeout::NONE ) );
 break;
@@ -1429,13 +1429,13 @@ void DomainMapper::sprmWithProps( Sprm rSprm, 
PropertyMapPtr rContext, SprmType
 case NS_sprm::LN_CFVanish: /*sprmCFVanish*/
 rContext-Insert(ePropertyId, uno::makeAny( nIntValue 
? true : false ));
 break;
-case NS_sprm::LN_CFSmallCaps: /*sprmCFSmallCaps*/
+case NS_ooxml::LN_EG_RPrBase_smallCaps:
 // If smallcaps would be just disabled and an other 
casemap is already inserted, don't do anything.
 if (nIntValue || rContext-find(ePropertyId) == 
rContext-end())
 rContext-Insert(ePropertyId, uno::makeAny( 
nIntValue ? style::CaseMap::SMALLCAPS : style::CaseMap::NONE));
 m_pImpl-appendGrabBag(m_pImpl-m_aInteropGrabBag, 
smallCaps, OUString::number(nIntValue));
 break;
-case NS_sprm::LN_CFCaps: /*sprmCFCaps*/
+case NS_ooxml::LN_EG_RPrBase_caps:
 rContext-Insert(ePropertyId,

[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-4.1' - 2 commits - Makefile.in

2014-02-23 Thread Tor Lillqvist
 Makefile.in |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

New commits:
commit 1de07c27647416b7a5e79db03f6e225bbaf5c39b
Author: Tor Lillqvist t...@collabora.com
Date:   Sun Feb 23 12:36:42 2014 +0200

Do install-gdb-printers only on Linux

Change-Id: I07d04826cdfdaf57b43f748104a466049044ac8c

diff --git a/Makefile.in b/Makefile.in
index b1f14f6..08f3909 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -271,7 +271,9 @@ ifeq ($(DISABLE_LINKOO),TRUE)
 ifneq ($(MACOSX_CODESIGNING_IDENTITY),)
@macosx-codesign-app-bundle $(DEVINSTALLDIR)/opt/LibreOffice from 
Collabora.app
 endif
+ifeq ($(OS),LINUX)
@install-gdb-printers -L
+endif
 else
@ooinstall -l $(DEVINSTALLDIR)/opt
 endif
commit 94554b86db23ef112b219ea390d158d954055a3e
Author: Tor Lillqvist t...@collabora.com
Date:   Sun Feb 23 12:34:47 2014 +0200

Hardcode app bundle name here, too

Change-Id: I44a8bd1f16ba28b42c3e3a6244c9a339cd9c721b

diff --git a/Makefile.in b/Makefile.in
index ef8f291..b1f14f6 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -269,7 +269,7 @@ else
 ifeq ($(DISABLE_LINKOO),TRUE)
@ooinstall $(DEVINSTALLDIR)/opt
 ifneq ($(MACOSX_CODESIGNING_IDENTITY),)
-   @macosx-codesign-app-bundle $(DEVINSTALLDIR)/opt/LibreOffice.app
+   @macosx-codesign-app-bundle $(DEVINSTALLDIR)/opt/LibreOffice from 
Collabora.app
 endif
@install-gdb-printers -L
 else
@@ -290,9 +290,9 @@ else ifeq ($(OS),MACOSX)
@echo
@echo Developer installation finished, you can now run:
@echo
-   @echo   open $(BUILDDIR)/install/LibreOffice.app
+   @echo   open '$(BUILDDIR)/install/LibreOffice from Collabora.app'
@echo
-   @echo To debug: gdb install/LibreOffice.app/Contents/MacOS/soffice
+   @echo To debug: gdb 'install/LibreOffice from 
Collabora.app/Contents/MacOS/soffice'
 endif
 
 dev-install-nocheck: build-nocheck
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: 13 commits - cui/source dbaccess/source editeng/source extensions/source filter/source forms/source framework/source reportdesign/source sfx2/source

2014-02-23 Thread Caolán McNamara
 cui/source/customize/cfg.cxx|4 ++--
 dbaccess/source/ui/control/FieldDescControl.cxx |3 +--
 editeng/source/editeng/impedit2.cxx |7 ---
 extensions/source/propctrlr/browserline.cxx |4 ++--
 filter/source/msfilter/msdffimp.cxx |2 +-
 filter/source/msfilter/svdfppt.cxx  |   11 ---
 forms/source/richtext/clipboarddispatcher.cxx   |   12 
 framework/source/layoutmanager/toolbarlayoutmanager.cxx |6 +++---
 reportdesign/source/ui/report/DesignView.cxx|2 +-
 sfx2/source/doc/objstor.cxx |2 +-
 10 files changed, 31 insertions(+), 22 deletions(-)

New commits:
commit 54ef215fa22c84d1b74f2bb63a2ec8f5a94f39fa
Author: Caolán McNamara caol...@redhat.com
Date:   Sun Feb 23 13:42:57 2014 +

coverity#704657 Dereference after null check

Change-Id: Ia274c4f6ab148fd0390f3ff553e4cc4245681ab0

diff --git a/reportdesign/source/ui/report/DesignView.cxx 
b/reportdesign/source/ui/report/DesignView.cxx
index 613999d..9b66b82 100644
--- a/reportdesign/source/ui/report/DesignView.cxx
+++ b/reportdesign/source/ui/report/DesignView.cxx
@@ -251,7 +251,7 @@ void ODesignView::resizeDocumentView(Rectangle 
_rPlayground)
 // normalize the split pos
 const long nSplitterWidth = 
GetSettings().GetStyleSettings().GetSplitSize();
 Point aTaskPanePos(nSplitPos + nSplitterWidth, _rPlayground.Top());
-if ( m_pTaskPane  m_pTaskPane-IsVisible() )
+if (m_pTaskPane  m_pTaskPane-IsVisible()  m_pPropWin)
 {
 aTaskPanePos.X() = aPlaygroundSize.Width() - 
m_pTaskPane-GetSizePixel().Width();
 sal_Int32 nMinWidth = m_pPropWin-getMinimumSize().Width();
commit 44f5f2bd34f79d4035caa8310401f03b0797fe74
Author: Caolán McNamara caol...@redhat.com
Date:   Sun Feb 23 13:39:03 2014 +

coverity#704648 Dereference after null check

Change-Id: I0b6c5dc5b1225fb15c99401501b2c5cc2bb94b58

diff --git a/framework/source/layoutmanager/toolbarlayoutmanager.cxx 
b/framework/source/layoutmanager/toolbarlayoutmanager.cxx
index 9566a41..d9ebead 100644
--- a/framework/source/layoutmanager/toolbarlayoutmanager.cxx
+++ b/framework/source/layoutmanager/toolbarlayoutmanager.cxx
@@ -3737,7 +3737,7 @@ throw (uno::RuntimeException)
 SolarMutexGuard aGuard;
 if ( pToolBox )
 aSize = pToolBox-CalcWindowSizePixel( 1, 
ImplConvertAlignment( aUIDockingElement.m_aDockedData.m_nDockedArea ) );
-else
+else if ( pWindow )
 aSize = pWindow-GetSizePixel();
 }
 
commit cc39a4b7d131c697d8f207da3acc4bba93cdd5cc
Author: Caolán McNamara caol...@redhat.com
Date:   Sun Feb 23 13:34:02 2014 +

coverity#704647 Dereference after null check

Change-Id: Ifc74e903f13e6065c507d9a90825e588c5e88a42

diff --git a/framework/source/layoutmanager/toolbarlayoutmanager.cxx 
b/framework/source/layoutmanager/toolbarlayoutmanager.cxx
index e495407..9566a41 100644
--- a/framework/source/layoutmanager/toolbarlayoutmanager.cxx
+++ b/framework/source/layoutmanager/toolbarlayoutmanager.cxx
@@ -744,9 +744,9 @@ bool ToolbarLayoutManager::dockToolbar( const OUString 
rResourceURL, ui::Dockin
 
 SolarMutexGuard aGuard;
 {
-if ( pToolBox )
+if (pToolBox)
 aSize = pToolBox-CalcWindowSizePixel( 1, 
ImplConvertAlignment( aUIElement.m_aDockedData.m_nDockedArea ) );
-else
+else if (pWindow)
 aSize = pWindow-GetSizePixel();
 }
 
commit 2a83910e724d21b774d39f6faf4e7329a6fc5ee8
Author: Caolán McNamara caol...@redhat.com
Date:   Sun Feb 23 13:32:33 2014 +

coverity#704644 Dereference after null check

Change-Id: I9b2aad39c54497b5b53a86cf11a754f89c012d0e

diff --git a/forms/source/richtext/clipboarddispatcher.cxx 
b/forms/source/richtext/clipboarddispatcher.cxx
index 5f3d0fe..31a3131 100644
--- a/forms/source/richtext/clipboarddispatcher.cxx
+++ b/forms/source/richtext/clipboarddispatcher.cxx
@@ -176,10 +176,14 @@ namespace frm
 void OPasteClipboardDispatcher::disposing( ::osl::ClearableMutexGuard 
_rClearBeforeNotify )
 {
 OSL_ENSURE( getEditView()  getEditView()-GetWindow(), 
OPasteClipboardDispatcher::disposing: EditView should not (yet) be 
disfunctional here! );
-if ( getEditView()  getEditView()-GetWindow()  m_pClipListener )
-m_pClipListener-AddRemoveListener( getEditView()-GetWindow(), 
sal_False );
-m_pClipListener-release();
-m_pClipListener = NULL;
+if (m_pClipListener)
+{
+ 

[Libreoffice-commits] core.git: 18 commits - lotuswordpro/source reportdesign/source sc/source sd/source starmath/source sw/source

2014-02-23 Thread Caolán McNamara
 lotuswordpro/source/filter/lwpobj.cxx   |2 
 lotuswordpro/source/filter/lwppara.cxx  |2 
 reportdesign/source/ui/report/dlgedfunc.cxx |2 
 sc/source/core/tool/compiler.cxx|   15 --
 sc/source/core/tool/interpr4.cxx|   14 +
 sd/source/filter/html/htmlex.cxx|2 
 sd/source/filter/ppt/pptin.cxx  |2 
 sd/source/ui/app/sdmod1.cxx |2 
 sd/source/ui/inc/slideshow.hxx  |8 ++-
 sd/source/ui/slideshow/slideshow.cxx|6 +-
 starmath/source/cursor.cxx  |5 --
 sw/source/core/access/accpara.cxx   |6 +-
 sw/source/core/access/accpara.hxx   |   12 +++--
 sw/source/filter/ww8/ww8par.cxx |   67 
 sw/source/filter/ww8/ww8par2.cxx|2 
 sw/source/filter/ww8/ww8scan.cxx|3 -
 sw/source/ui/ribbar/inputwin.cxx|   11 ++--
 17 files changed, 94 insertions(+), 67 deletions(-)

New commits:
commit 38940e29e3181ab7ecf83da5454b48f43188d5e6
Author: Caolán McNamara caol...@redhat.com
Date:   Sun Feb 23 15:54:27 2014 +

coverity#735534 Dead default in switch

Change-Id: I686cfdf2c876123aa72b2dcfc1c6abcabcad5ab7

diff --git a/sw/source/filter/ww8/ww8par.cxx b/sw/source/filter/ww8/ww8par.cxx
index c913499..c31b267 100644
--- a/sw/source/filter/ww8/ww8par.cxx
+++ b/sw/source/filter/ww8/ww8par.cxx
@@ -765,44 +765,37 @@ SdrObject* SwMSDffManager::ProcessObj(SvStream rSt,
 {
 while (nTextRotationAngle  36)
 nTextRotationAngle-=9000;
-switch (nTextRotationAngle)
+if (nTextRotationAngle == 9000)
 {
-case 9000:
-{
-long nWidth = rTextRect.GetWidth();
-rTextRect.Right() = rTextRect.Left() + 
rTextRect.GetHeight();
-rTextRect.Bottom() = rTextRect.Top() + nWidth;
-
-sal_Int32 nOldTextLeft = nTextLeft;
-sal_Int32 nOldTextRight = nTextRight;
-sal_Int32 nOldTextTop = nTextTop;
-sal_Int32 nOldTextBottom = nTextBottom;
-
-nTextLeft = nOldTextBottom;
-nTextRight = nOldTextTop;
-nTextTop = nOldTextLeft;
-nTextBottom = nOldTextRight;
-}
-break;
-case 27000:
-{
-long nWidth = rTextRect.GetWidth();
-rTextRect.Right() = rTextRect.Left() + 
rTextRect.GetHeight();
-rTextRect.Bottom() = rTextRect.Top() + nWidth;
-
-sal_Int32 nOldTextLeft = nTextLeft;
-sal_Int32 nOldTextRight = nTextRight;
-sal_Int32 nOldTextTop = nTextTop;
-sal_Int32 nOldTextBottom = nTextBottom;
-
-nTextLeft = nOldTextTop;
-nTextRight = nOldTextBottom;
-nTextTop = nOldTextRight;
-nTextBottom = nOldTextLeft;
-}
-break;
-default:
-break;
+long nWidth = rTextRect.GetWidth();
+rTextRect.Right() = rTextRect.Left() + 
rTextRect.GetHeight();
+rTextRect.Bottom() = rTextRect.Top() + nWidth;
+
+sal_Int32 nOldTextLeft = nTextLeft;
+sal_Int32 nOldTextRight = nTextRight;
+sal_Int32 nOldTextTop = nTextTop;
+sal_Int32 nOldTextBottom = nTextBottom;
+
+nTextLeft = nOldTextBottom;
+nTextRight = nOldTextTop;
+nTextTop = nOldTextLeft;
+nTextBottom = nOldTextRight;
+}
+else if (nTextRotationAngle == 27000)
+{
+long nWidth = rTextRect.GetWidth();
+rTextRect.Right() = rTextRect.Left() + 
rTextRect.GetHeight();
+rTextRect.Bottom() = rTextRect.Top() + nWidth;
+
+sal_Int32 nOldTextLeft = nTextLeft;
+sal_Int32 nOldTextRight = nTextRight;
+sal_Int32 nOldTextTop = nTextTop;
+sal_Int32 nOldTextBottom = nTextBottom;
+
+nTextLeft = nOldTextTop;
+nTextRight = nOldTextBottom;
+nTextTop = nOldTextRight;
+nTextBottom = nOldTextLeft;
 }
 }
 
commit bbaad0e03d04c2b2606823ce85f12a80803ed5af
Author: Caolán McNamara caol...@redhat.com

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

2014-02-23 Thread Markus Mohrhard
 chart2/source/view/main/DummyXShape.cxx |6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

New commits:
commit 89679beecfb30893418b353d18e5bbc0221a50d5
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun Feb 23 17:14:10 2014 +0100

make the debug message more readable

Change-Id: I79c3261bb3672c360073f91e320d8aafce09cd2e

diff --git a/chart2/source/view/main/DummyXShape.cxx 
b/chart2/source/view/main/DummyXShape.cxx
index 9e9251b..6b28c43 100644
--- a/chart2/source/view/main/DummyXShape.cxx
+++ b/chart2/source/view/main/DummyXShape.cxx
@@ -1290,8 +1290,6 @@ const char* getSourceString(GLenum source)
 return unknown;
 }
 
-#if 0
-
 const char* getTypeString(GLenum type)
 {
 switch(type)
@@ -1319,8 +1317,6 @@ const char* getTypeString(GLenum type)
 return unkown;
 }
 
-#endif
-
 extern C void
 #if defined _WIN32
 APIENTRY
@@ -1329,7 +1325,7 @@ debug_callback(GLenum source, GLenum type, GLuint id,
 GLenum severity, GLsizei , const GLchar* message, GLvoid* )
 {
 SAL_WARN(chart2.opengl, OpenGL debug message: source:   
getSourceString(source)  , type: 
- type  , id:   id  , severity:   
getSeverityString(severity)   with message:   message);
+ getTypeString(type)  , id:   id  , severity:   
getSeverityString(severity)   with message:   message);
 }
 
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-02-23 Thread Tomaž Vajngerl
 oox/source/token/tokens.txt|7 
 sw/source/filter/ww8/docxattributeoutput.cxx   |   72 +++-
 sw/source/filter/ww8/docxattributeoutput.hxx   |2 
 writerfilter/source/dmapper/DomainMapper.cxx   |   33 +-
 writerfilter/source/dmapper/PropertyIds.cxx|2 
 writerfilter/source/dmapper/PropertyIds.hxx|1 
 writerfilter/source/dmapper/TextEffectsHandler.cxx |  104 +-
 writerfilter/source/dmapper/TextEffectsHandler.hxx |   19 -
 writerfilter/source/ooxml/model.xml|  336 +++--
 9 files changed, 491 insertions(+), 85 deletions(-)

New commits:
commit fb217f27eb0f3a34c89d262d2c71a4ac4427ec5f
Author: Tomaž Vajngerl tomaz.vajng...@collabora.com
Date:   Sun Feb 23 17:26:30 2014 +0100

writerfilter: comment out incomplete w14 elements from model.xml

Change-Id: Ifdc0c0802e8d13d57023cb24096f8364e6ee9e91

diff --git a/writerfilter/source/ooxml/model.xml 
b/writerfilter/source/ooxml/model.xml
index 16fd71e..1f90369 100644
--- a/writerfilter/source/ooxml/model.xml
+++ b/writerfilter/source/ooxml/model.xml
@@ -5568,6 +5568,10 @@
 /optional
   /define
 
+  define name=CT_TextOutlineEffect
+empty/
+  /define
+
   define name=glow
 element name=glow
   ref name=CT_Glow/
@@ -5588,7 +5592,7 @@
 
   define name=textOutline
 element name=textOutline
-  empty/
+  ref name=CT_TextOutlineEffect/
 /element
   /define
 
@@ -17403,7 +17407,7 @@
 ref name=BUILT_IN_ANY_TYPE/
   /element
 /optional
-optional
+!--optional
   element name=w14:reflection
 ref name=BUILT_IN_ANY_TYPE/
   /element
@@ -17452,7 +17456,7 @@
   element name=w14:cntxtAlts
 ref name=BUILT_IN_ANY_TYPE/
   /element
-/optional
+/optional--
   /define
   define name=EG_RPrContent
 optional
@@ -23422,7 +23426,7 @@
   element name=oMath tokenid=ooxml:EG_RPrBase_oMath/
   element name=w14:glow tokenid=ooxml:EG_RPrBase_w14_glow/
   element name=w14:shadow tokenid=ooxml:EG_RPrBase_w14_shadow/
-  element name=w14:reflection 
tokenid=ooxml:EG_RPrBase_w14_reflection/
+  !--element name=w14:reflection 
tokenid=ooxml:EG_RPrBase_w14_reflection/
   element name=w14:textOutline 
tokenid=ooxml:EG_RPrBase_w14_textOutline/
   element name=w14:textFill tokenid=ooxml:EG_RPrBase_w14_textFill/
   element name=w14:scene3d tokenid=ooxml:EG_RPrBase_w14_scene3d/
@@ -23431,7 +23435,7 @@
   element name=w14:numForm tokenid=ooxml:EG_RPrBase_w14_numForm/
   element name=w14:numSpacing 
tokenid=ooxml:EG_RPrBase_w14_numSpacing/
   element name=w14:stylisticSets 
tokenid=ooxml:EG_RPrBase_w14_stylisticSets/
-  element name=w14:cntxtAlts tokenid=ooxml:EG_RPrBase_w14_cntxtAlts/
+  element name=w14:cntxtAlts 
tokenid=ooxml:EG_RPrBase_w14_cntxtAlts/--
 /resource
 resource name=EG_RPrContent resource=Properties tag=character
   element name=rPrChange tokenid=ooxml:EG_RPrContent_rPrChange/
commit ea7dd1a0551dd70093f7f46d86488b1bc01c3f40
Author: Tomaž Vajngerl tomaz.vajng...@collabora.com
Date:   Sun Feb 23 17:22:12 2014 +0100

writerfilter: restructure call to TextEffectsHandler

Change-Id: Iba02edccfb09c2b42be164c62c57315b58884c98

diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index 8e43ede..b3c419b 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -2348,15 +2348,15 @@ void DomainMapper::sprmWithProps( Sprm rSprm, 
PropertyMapPtr rContext, SprmType
 case NS_ooxml::LN_stylisticSets_stylisticSets:
 case NS_ooxml::LN_cntxtAlts_cntxtAlts:
 {
-writerfilter::ReferenceProperties::Pointer_t pProperties = 
rSprm.getProps();
-if( pProperties.get())
+TextEffectsHandlerPtr pTextEffectsHandlerPtr( new 
TextEffectsHandler(nSprmId) );
+boost::optionalPropertyIds aPropertyId = 
pTextEffectsHandlerPtr-getGrabBagPropertyId();
+if(aPropertyId)
 {
-TextEffectsHandlerPtr pTextEffectsHandlerPtr( new 
TextEffectsHandler(nSprmId) );
-boost::optionalPropertyIds aPropertyId = 
pTextEffectsHandlerPtr-getGrabBagPropertyId();
-
-if(aPropertyId)
+writerfilter::ReferenceProperties::Pointer_t pProperties = 
rSprm.getProps();
+if( pProperties.get())
 {
 pProperties-resolve(*pTextEffectsHandlerPtr);
+
 rContext-Insert(*aPropertyId, 
uno::makeAny(pTextEffectsHandlerPtr-getInteropGrabBag()), true, CHAR_GRAB_BAG);
 }
 }
commit ab2b20b66394c1d219caafc380488f5296c1c12c
Author: Tomaž Vajngerl tomaz.vajng...@collabora.com
Date:   Sat Feb 22 20:42:37 2014 +0100

ooxml: handle w14:shadow in import/export

Refactor the code to support 

[Libreoffice-commits] core.git: Branch 'aoo/trunk' - vcl/os2

2014-02-23 Thread Yuri Dario
 vcl/os2/source/gdi/salprn.cxx |   23 ---
 1 file changed, 4 insertions(+), 19 deletions(-)

New commits:
commit 034ca8fdc5b4c90aa3047682c06187cfc6757a29
Author: Yuri Dario yda...@apache.org
Date:   Sun Feb 23 16:44:37 2014 +

#i124294# use rAppName to fill pszComment field when opening the printer 
device.

diff --git a/vcl/os2/source/gdi/salprn.cxx b/vcl/os2/source/gdi/salprn.cxx
index b98694e..a71bf0a 100644
--- a/vcl/os2/source/gdi/salprn.cxx
+++ b/vcl/os2/source/gdi/salprn.cxx
@@ -1671,25 +1671,9 @@ sal_Bool Os2SalPrinter::StartJob( const XubString* 
pFileName,
 lType = OD_QUEUED;
 }
 
-#if 0 // YD FIXME
-// Set comment (AppName nur bis zum 1. Space-Zeichen nehmen)
-const xub_Unicode*  pComment = rAppName;
-USHORT  nCommentLen = 0;
-memset( maCommentBuf, 0, sizeof( maCommentBuf ) );
-while ( (nCommentLen  32) 
-(((*pComment = 'a')  (*pComment = 'z')) ||
- ((*pComment = 'A')  (*pComment = 'Z')) ||
- ((*pComment = '0')  (*pComment = '9')) ||
- (*pComment == '-')))
-{
-maCommentBuf[nCommentLen] = (char)(*pComment);
-nCommentLen++;
-pComment++;
-}
-aDevOpenStruc.pszComment = (PSZ)maCommentBuf;
-#endif
-ByteString jobName( rJobName, gsl_getSystemTextEncoding());
-aDevOpenStruc.pszComment = (PSZ)jobName.GetBuffer();
+// Set comment using application name
+ByteString appName( rAppName, gsl_getSystemTextEncoding());
+aDevOpenStruc.pszComment = (PSZ)appName.GetBuffer();
 
 // Kopien
 if ( nCopies  1 )
@@ -1740,6 +1724,7 @@ sal_Bool Os2SalPrinter::StartJob( const XubString* 
pFileName,
 #endif
 
 // JobName ermitteln und Job starten
+ByteString jobName( rJobName, gsl_getSystemTextEncoding());
 PSZ pszJobName = NULL;
 int nJobNameLen = 0;
 if ( jobName.Len()  0 )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-4.1' - desktop/source

2014-02-23 Thread Stephan Bergmann
 desktop/source/deployment/misc/dp_platform.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit da7a96fdedf7927202450b277ff4d44e7090729a
Author: Stephan Bergmann sberg...@redhat.com
Date:   Fri Aug 30 19:18:26 2013 +0200

Add macosx_x86_64 extension platform identifier

Change-Id: Ie7b6e8dee54ae240ff1ca7e7cac89b914dcce9ff

diff --git a/desktop/source/deployment/misc/dp_platform.cxx 
b/desktop/source/deployment/misc/dp_platform.cxx
index de8ea66..830f865 100644
--- a/desktop/source/deployment/misc/dp_platform.cxx
+++ b/desktop/source/deployment/misc/dp_platform.cxx
@@ -56,6 +56,7 @@
 #define PLATFORM_NETBSD_X86 netbsd_x86
 #define PLATFORM_NETBSD_X86_64  netbsd_x86_64
 #define PLATFORM_MACOSX_X86 macosx_x86
+#define PLATFORM_MACOSX_X86_64  macosx_x86_64
 #define PLATFORM_OPENBSD_X86openbsd_x86
 #define PLATFORM_OPENBSD_X86_64 openbsd_x86_64
 #define PLATFORM_DRAGONFLY_X86  dragonfly_x86
@@ -164,6 +165,8 @@ namespace
 ret = checkOSandCPU(NetBSD, X86_64);
 else if (token == PLATFORM_MACOSX_X86)
 ret = checkOSandCPU(MacOSX, x86);
+else if (token == PLATFORM_MACOSX_X86_64)
+ret = checkOSandCPU(MacOSX, X86_64);
 else if (token == PLATFORM_AIX_POWERPC)
 ret = checkOSandCPU(AIX, PowerPC);
 else if (token == PLATFORM_OPENBSD_X86)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-02-23 Thread Zolnai Tamás
 include/oox/drawingml/textparagraphpropertiescontext.hxx |2 --
 include/oox/drawingml/textspacing.hxx|3 ++-
 oox/source/drawingml/textparagraphpropertiescontext.cxx  |6 ++
 3 files changed, 4 insertions(+), 7 deletions(-)

New commits:
commit b0073ef79efe65d8094d479faf0c4b657dffbfb0
Author: Zolnai Tamás tamas.zol...@collabora.com
Date:   Sun Feb 23 16:15:06 2014 +0100

drawingML import: reduce code duplication

Change-Id: I7730fb047a10f270498bbf6f1a89dde034514121

diff --git a/include/oox/drawingml/textspacing.hxx 
b/include/oox/drawingml/textspacing.hxx
index e36ca72..4c859d7 100644
--- a/include/oox/drawingml/textspacing.hxx
+++ b/include/oox/drawingml/textspacing.hxx
@@ -24,6 +24,7 @@
 
 #include com/sun/star/style/LineSpacing.hpp
 #include com/sun/star/style/LineSpacingMode.hpp
+#include oox/drawingml/drawingmltypes.hxx
 
 namespace oox { namespace drawingml {
 
@@ -53,7 +54,7 @@ namespace oox { namespace drawingml {
 sal_Int32 toMargin( float fFontSize ) const
 {
 if ( nUnit == PERCENT )
-return (sal_Int32) fFontSize*nValue)/1000)*254 + 
360)/720);
+return 
GetTextSpacingPoint(static_castsal_Int32((fFontSize*nValue)/1000));
 else
 return nValue;
 }
commit a35a29829d1899e441a969de6d1045fd17e4639b
Author: Zolnai Tamás tamas.zol...@collabora.com
Date:   Sun Feb 23 16:09:34 2014 +0100

drawingML import: remove some unneeded member

Change-Id: Iea975665b9225e535dcc4fbdcd666d7c7bff8ef3

diff --git a/include/oox/drawingml/textparagraphpropertiescontext.hxx 
b/include/oox/drawingml/textparagraphpropertiescontext.hxx
index d1a5fa8..0d3dc98 100644
--- a/include/oox/drawingml/textparagraphpropertiescontext.hxx
+++ b/include/oox/drawingml/textparagraphpropertiescontext.hxx
@@ -43,8 +43,6 @@ public:
 protected:
 TextParagraphProperties mrTextParagraphProperties;
 TextSpacing maLineSpacing;
-TextSpacingmrSpaceBefore;
-TextSpacingmrSpaceAfter;
 BulletList mrBulletList;
 ::std::list ::com::sun::star::style::TabStop   maTabList;
 ::boost::shared_ptr BlipFillProperties  mxBlipProps;
diff --git a/oox/source/drawingml/textparagraphpropertiescontext.cxx 
b/oox/source/drawingml/textparagraphpropertiescontext.cxx
index 9e05446..a47d37f 100644
--- a/oox/source/drawingml/textparagraphpropertiescontext.cxx
+++ b/oox/source/drawingml/textparagraphpropertiescontext.cxx
@@ -47,8 +47,6 @@ 
TextParagraphPropertiesContext::TextParagraphPropertiesContext( ContextHandler2H
 
TextParagraphProperties rTextParagraphProperties )
 : ContextHandler2( rParent )
 , mrTextParagraphProperties( rTextParagraphProperties )
-, mrSpaceBefore( rTextParagraphProperties.getParaTopMargin() )
-, mrSpaceAfter( rTextParagraphProperties.getParaBottomMargin() )
 , mrBulletList( rTextParagraphProperties.getBulletList() )
 {
 OUString sValue;
@@ -171,9 +169,9 @@ ContextHandlerRef 
TextParagraphPropertiesContext::onCreateContext( sal_Int32 aEl
 case A_TOKEN( lnSpc ):  // CT_TextSpacing
 return new TextSpacingContext( *this, maLineSpacing );
 case A_TOKEN( spcBef ): // CT_TextSpacing
-return new TextSpacingContext( *this, mrSpaceBefore );
+return new TextSpacingContext( *this, 
mrTextParagraphProperties.getParaTopMargin() );
 case A_TOKEN( spcAft ): // CT_TextSpacing
-return new TextSpacingContext( *this, mrSpaceAfter );
+return new TextSpacingContext( *this, 
mrTextParagraphProperties.getParaBottomMargin() );
 // EG_TextBulletColor
 case A_TOKEN( buClrTx ):// CT_TextBulletColorFollowText ???
 mrBulletList.mbBulletColorFollowText = sal_True;
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: vcl/inc vcl/quartz

2014-02-23 Thread Douglas Mencken
 vcl/inc/quartz/salgdi.h |9 +
 vcl/quartz/ctfonts.cxx  |8 +++-
 vcl/quartz/salgdi.cxx   |   24 
 3 files changed, 36 insertions(+), 5 deletions(-)

New commits:
commit ae4a8c6152a6234eed52482da64d84ad5a56c03d
Author: Douglas Mencken dougmenc...@gmail.com
Date:   Sat Feb 22 14:24:45 2014 -0500

CoreText SDK 10.5 compatibility

Change-Id: Ic876ec473b1c03a70c160af4251c68b299b27eca
Reviewed-on: https://gerrit.libreoffice.org/7143
Reviewed-by: Norbert Thiebaud nthieb...@gmail.com
Tested-by: Norbert Thiebaud nthieb...@gmail.com

diff --git a/vcl/inc/quartz/salgdi.h b/vcl/inc/quartz/salgdi.h
index 7cd2e83..a6c8a8c 100644
--- a/vcl/inc/quartz/salgdi.h
+++ b/vcl/inc/quartz/salgdi.h
@@ -29,6 +29,15 @@
 #include ApplicationServices/ApplicationServices.h
 #include osx/osxvcltypes.h
 #include osx/salframe.h
+
+#if MAC_OS_X_VERSION_MAX_ALLOWED  1060
+// The following symbols are SPI (System Programming Interface) in 10.5.
+extern C {
+void CTRunGetAdvances(CTRunRef run, CFRange range, CGSize buffer[]);
+const CGSize* CTRunGetAdvancesPtr(CTRunRef run);
+extern const CFStringRef kCTTypesetterOptionForcedEmbeddingLevel;
+}
+#endif
 #else
 #include CoreGraphics/CoreGraphics.h
 #include CoreText/CoreText.h
diff --git a/vcl/quartz/ctfonts.cxx b/vcl/quartz/ctfonts.cxx
index ea89b53..72bc087 100644
--- a/vcl/quartz/ctfonts.cxx
+++ b/vcl/quartz/ctfonts.cxx
@@ -80,9 +80,13 @@ CoreTextStyle::CoreTextStyle( const FontSelectPattern rFSD )
  ((mpFontData-GetWeight()  WEIGHT_SEMIBOLD) 
   (mpFontData-GetWeight() != WEIGHT_DONTKNOW)) )
 {
+#if MAC_OS_X_VERSION_MAX_ALLOWED = 1060
 int nStroke = -10.0;
 CFNumberRef rStroke = CFNumberCreate(NULL, kCFNumberSInt32Type, 
nStroke);
 CFDictionarySetValue(mpStyleDict, kCTStrokeWidthAttributeName, 
rStroke);
+#else /* kCTStrokeWidthAttributeName is not available */
+/* do we really need fake bold? */
+#endif
 }
 
 // fake italic
@@ -335,9 +339,11 @@ ImplDevFontAttributes DevFontFromCTFontDescriptor( 
CTFontDescriptorRef pFD, bool
 
 // get font-enabled status
 if( bFontEnabled ) {
-int bEnabled = FALSE;
+int bEnabled = TRUE; // by default (and when we're on OS X  10.6) 
it's enabled
+#if MAC_OS_X_VERSION_MAX_ALLOWED = 1060
 CFNumberRef pEnabled = (CFNumberRef)CTFontDescriptorCopyAttribute( 
pFD, kCTFontEnabledAttribute );
 CFNumberGetValue( pEnabled, kCFNumberIntType, bEnabled );
+#endif
 *bFontEnabled = bEnabled;
 }
 
diff --git a/vcl/quartz/salgdi.cxx b/vcl/quartz/salgdi.cxx
index d826215..41e1b49 100644
--- a/vcl/quartz/salgdi.cxx
+++ b/vcl/quartz/salgdi.cxx
@@ -337,16 +337,32 @@ static bool AddTempDevFont(const OUString rFontFileURL)
 CFStringRef rFontPath = CFStringCreateWithCString(NULL, 
aCFileName.getStr(), kCFStringEncodingUTF8);
 CFURLRef rFontURL = CFURLCreateWithFileSystemPath(NULL, rFontPath, 
kCFURLPOSIXPathStyle, true);
 
-CFErrorRef error;
-bool success = CTFontManagerRegisterFontsForURL(rFontURL, 
kCTFontManagerScopeProcess, error);
+bool success = false;
 
+#if MAC_OS_X_VERSION_MAX_ALLOWED = 1060
+CFErrorRef error;
+success = CTFontManagerRegisterFontsForURL(rFontURL, 
kCTFontManagerScopeProcess, error);
 if (!success)
 {
 CFRelease(error);
-return false;
 }
+#else /* CTFontManagerRegisterFontsForURL is not available on OS X 10.6 */
+CGDataProviderRef dataProvider = CGDataProviderCreateWithURL(rFontURL);
+CGFontRef graphicsFont = CGFontCreateWithDataProvider(dataProvider);
+if (graphicsFont)
+{
+CTFontRef coreTextFont = CTFontCreateWithGraphicsFont(graphicsFont, 
/*fontSize*/ 0, /*matrix*/ NULL, /*attributes*/ NULL);
+if (coreTextFont)
+{
+success = true;
+CFRelease(coreTextFont);
+}
+CGFontRelease(graphicsFont);
+}
+CGDataProviderRelease(dataProvider);
+#endif
 
-return true;
+return success;
 }
 
 static void AddTempFontDir( const OUString rFontDirUrl )
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-4.1' - 2 commits - solenv/bin sysui/desktop

2014-02-23 Thread Tor Lillqvist
 solenv/bin/macosx-codesign-app-bundle |2 +-
 sysui/desktop/macosx/Info.plist   |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit a5f8d1bafafd56db57f85fddaf90d6039a5720be
Author: Tor Lillqvist t...@collabora.com
Date:   Sun Feb 23 21:05:34 2014 +0200

Use different CFBundleSignature than upstream

CFBundleSignature is an obsolete concept anyway, it is fine to use
'' apparently.

Change-Id: Ifc16e834739a5d7ee5fc5d99a3e3469f2aafa0ee

diff --git a/sysui/desktop/macosx/Info.plist b/sysui/desktop/macosx/Info.plist
index 9682cb0..6a7bb9a 100755
--- a/sysui/desktop/macosx/Info.plist
+++ b/sysui/desktop/macosx/Info.plist
@@ -1415,7 +1415,7 @@
keyCFBundlePackageType/key
stringAPPL/string
keyCFBundleSignature/key
-   stringLibO/string
+   string/string
keyLSRequiresCarbon/key
string1/string
keyNSPrincipalClass/key
commit 568783cb7a93b8f2fcad67ebd32ff4220b05a7e9
Author: Tor Lillqvist t...@collabora.com
Date:   Sun Feb 23 21:03:45 2014 +0200

Include the directory names in the ids to make them unique

There are lots of files with the same name, especially in an app
bundle that includes help in multiple languages.

Change-Id: I66cd2e3c3f22d681d88d02da6fd48ab9651c6f67

diff --git a/solenv/bin/macosx-codesign-app-bundle 
b/solenv/bin/macosx-codesign-app-bundle
index 48454a3..f01a5cf 100755
--- a/solenv/bin/macosx-codesign-app-bundle
+++ b/solenv/bin/macosx-codesign-app-bundle
@@ -39,7 +39,7 @@ find $APP_BUNDLE \( -name '*.dylib' -or -name '*.dylib.*' 
-or -name '*.so' \
 -or -name '*.jar' -or -name '*.jnilib' -or -name 'LICENSE' -or -name 
'LICENSE.html' \
 -or -name '*.applescript' \) ! -type l | grep -v 
LibreOfficePython\.framework |
 while read dylib; do
-id=`basename $dylib`
+id=`echo ${dylib#${APP_BUNDLE}/Contents/} | sed -e 's,/,.,g'`
 codesign --verbose --identifier=$MACOSX_BUNDLE_IDENTIFIER.$id --sign 
$MACOSX_CODESIGNING_IDENTITY $dylib
 done
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 03/4ca8fdc5b4c90aa3047682c06187cfc6757a29

2014-02-23 Thread Caolán McNamara
 03/4ca8fdc5b4c90aa3047682c06187cfc6757a29 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 8f07094eea6eda65aa2afeac7645a4e73cbe0ed9
Author: Caolán McNamara caol...@redhat.com
Date:   Sun Feb 23 20:09:06 2014 +

Notes added by 'git notes add'

diff --git a/03/4ca8fdc5b4c90aa3047682c06187cfc6757a29 
b/03/4ca8fdc5b4c90aa3047682c06187cfc6757a29
new file mode 100644
index 000..403addb
--- /dev/null
+++ b/03/4ca8fdc5b4c90aa3047682c06187cfc6757a29
@@ -0,0 +1 @@
+ignore: OS/2
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Code Pointer Request - FDO 74064: Period Detection for Save As (Linux)

2014-02-23 Thread Joel Madero
Hi All,

Looks like we have a new contributor who wants to tackle this one but
needs some assistance for code pointers.

In Linux when you do Save As the first period is detected for the file
name instead of the last so you'll get partial file names highlighted if
the file name as a period in it.

https://bugs.freedesktop.org/show_bug.cgi?id=74064


Thanks all!


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


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

2014-02-23 Thread Miklos Vajna
 writerfilter/source/dmapper/DomainMapper.cxx   |   20 ++--
 writerfilter/source/doctok/resources.xmi   |  124 -
 writerfilter/source/ooxml/model.xml|8 -
 writerfilter/source/rtftok/rtfdocumentimpl.cxx |6 -
 4 files changed, 17 insertions(+), 141 deletions(-)

New commits:
commit 6e38e82b7ce2aeb3d7628ad518437c9af6eec0a8
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sun Feb 23 21:53:28 2014 +0100

writerfilter: convert sprm:CF{Outline,Shadow,Emboss,Imprint}

Change-Id: I03a2d24d5ff6b868cd67c7b3e1d19c6a2243b92f

diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index b3c419b..68731b5 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -1307,15 +1307,15 @@ void DomainMapper::sprmWithProps( Sprm rSprm, 
PropertyMapPtr rContext, SprmType
 case NS_sprm::LN_CKcd:
 rContext-Insert(PROP_CHAR_EMPHASIS, uno::makeAny ( getEmphasisValue 
(nIntValue)));
 break;  // sprmCKcd
-case NS_sprm::LN_CFEmboss:// sprmCFEmboss
+case NS_ooxml::LN_EG_RPrBase_emboss:
 case NS_ooxml::LN_EG_RPrBase_b:
 case NS_ooxml::LN_EG_RPrBase_bCs:
 case NS_ooxml::LN_EG_RPrBase_i:
 case NS_ooxml::LN_EG_RPrBase_iCs:
 case NS_ooxml::LN_EG_RPrBase_strike:
 case NS_ooxml::LN_EG_RPrBase_dstrike:
-case NS_sprm::LN_CFOutline: //sprmCFOutline
-case NS_sprm::LN_CFShadow: //sprmCFShadow
+case NS_ooxml::LN_EG_RPrBase_outline:
+case NS_ooxml::LN_EG_RPrBase_shadow:
 case NS_ooxml::LN_EG_RPrBase_caps:
 case NS_ooxml::LN_EG_RPrBase_smallCaps:
 case NS_sprm::LN_CFVanish: //sprmCFVanish
@@ -1335,10 +1335,10 @@ void DomainMapper::sprmWithProps( Sprm rSprm, 
PropertyMapPtr rContext, SprmType
 case NS_ooxml::LN_EG_RPrBase_dstrike:
 ePropertyId = PROP_CHAR_STRIKEOUT;
 break;
-case NS_sprm::LN_CFOutline: /*sprmCFOutline*/
+case NS_ooxml::LN_EG_RPrBase_outline:
 ePropertyId = PROP_CHAR_CONTOURED;
 break;
-case NS_sprm::LN_CFShadow: /*sprmCFShadow*/
+case NS_ooxml::LN_EG_RPrBase_shadow:
 ePropertyId = PROP_CHAR_SHADOWED;
 break;
 case NS_ooxml::LN_EG_RPrBase_caps:
@@ -1348,7 +1348,7 @@ void DomainMapper::sprmWithProps( Sprm rSprm, 
PropertyMapPtr rContext, SprmType
 case NS_sprm::LN_CFVanish: /*sprmCFVanish*/
 ePropertyId = PROP_CHAR_HIDDEN;
 break;
-case NS_sprm::LN_CFEmboss: /*sprmCFEmboss*/
+case NS_ooxml::LN_EG_RPrBase_emboss:
 ePropertyId = PROP_CHAR_RELIEF;
 break;
 }
@@ -1424,8 +1424,8 @@ void DomainMapper::sprmWithProps( Sprm rSprm, 
PropertyMapPtr rContext, SprmType
 rContext-Insert(ePropertyId,
  uno::makeAny( nIntValue ? 
awt::FontStrikeout::DOUBLE : awt::FontStrikeout::NONE ) );
 break;
-case NS_sprm::LN_CFOutline: /*sprmCFOutline*/
-case NS_sprm::LN_CFShadow: /*sprmCFShadow*/
+case NS_ooxml::LN_EG_RPrBase_outline:
+case NS_ooxml::LN_EG_RPrBase_shadow:
 case NS_sprm::LN_CFVanish: /*sprmCFVanish*/
 rContext-Insert(ePropertyId, uno::makeAny( nIntValue 
? true : false ));
 break;
@@ -1440,7 +1440,7 @@ void DomainMapper::sprmWithProps( Sprm rSprm, 
PropertyMapPtr rContext, SprmType
  uno::makeAny( nIntValue ? 
style::CaseMap::UPPERCASE : style::CaseMap::NONE));
 m_pImpl-appendGrabBag(m_pImpl-m_aInteropGrabBag, 
caps, OUString::number(nIntValue));
 break;
-case NS_sprm::LN_CFEmboss: /*sprmCFEmboss*/
+case NS_ooxml::LN_EG_RPrBase_emboss:
 rContext-Insert(ePropertyId,
  uno::makeAny( nIntValue ? 
awt::FontRelief::EMBOSSED : awt::FontRelief::NONE ));
 break;
@@ -1573,7 +1573,7 @@ void DomainMapper::sprmWithProps( Sprm rSprm, 
PropertyMapPtr rContext, SprmType
 rContext-Insert(PROP_CHAR_SCALE_WIDTH,
  uno::makeAny( sal_Int16(nIntValue) ));
 break;
-case NS_sprm::LN_CFImprint: // sprmCFImprint   1 or 0
+case NS_ooxml::LN_EG_RPrBase_imprint:
 // FontRelief: NONE, EMBOSSED, ENGRAVED
 rContext-Insert(PROP_CHAR_RELIEF,
  uno::makeAny( nIntValue ? awt::FontRelief::ENGRAVED : 
awt::FontRelief::NONE ));
diff --git a/writerfilter/source/doctok/resources.xmi 
b/writerfilter/source/doctok/resources.xmi
index c694807..e013410 100644
--- a/writerfilter/source/doctok/resources.xmi
+++ b/writerfilter/source/doctok/resources.xmi
@@ 

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

2014-02-23 Thread Zhe Wang
 filter/source/msfilter/svdfppt.cxx   |   17 ++---
 sd/source/ui/dlg/headerfooterdlg.cxx |6 +++---
 2 files changed, 13 insertions(+), 10 deletions(-)

New commits:
commit 3b45f92ba6659836572d366aeda2b5bcedcae7f0
Author: Zhe Wang wangz...@apache.org
Date:   Mon Jun 25 05:24:31 2012 +

Resolves: #i119985# date/time is displayed as different language

(cherry picked from commit 977a050343fc836fc3e7bd876afaee931c47252c)

Change-Id: I1f31f6731353b2d8b8fd684fc6ea29becfd4a814

diff --git a/sd/source/ui/dlg/headerfooterdlg.cxx 
b/sd/source/ui/dlg/headerfooterdlg.cxx
index e3efd36..3756d86 100644
--- a/sd/source/ui/dlg/headerfooterdlg.cxx
+++ b/sd/source/ui/dlg/headerfooterdlg.cxx
@@ -638,8 +638,8 @@ void HeaderFooterTabPage::GetOrSetDateTimeLanguage( 
LanguageType rLanguage, boo
 }
 }
 
-// and set it, or just get it from the handout master page
-GetOrSetDateTimeLanguage( rLanguage, bSet, mpDoc-GetMasterSdPage( 0, 
PK_HANDOUT ) );
+// #i119985# and set it, or just get it from the notes master page
+GetOrSetDateTimeLanguage( rLanguage, bSet, mpDoc-GetMasterSdPage( 0, 
PK_NOTES ) );
 }
 else
 {
@@ -688,7 +688,7 @@ void HeaderFooterTabPage::GetOrSetDateTimeLanguage( 
LanguageType rLanguage, boo
 if( aFieldInfo.pFieldItem )
 {
 const SvxFieldData* pFieldData = 
aFieldInfo.pFieldItem-GetField();
-if( pFieldData  pFieldData-ISA( SvxDateTimeField ) )
+if( pFieldData  (pFieldData-ISA( SvxDateTimeField ) 
|| pFieldData-ISA( SvxDateField )) )
 {
 break;
 }
commit 8a5ad76b4e69b4ec742ed27d1825262681fb6f11
Author: Zhe Wang wangz...@apache.org
Date:   Mon Jun 25 05:23:47 2012 +

Related: #i119985# date/time is displayed as different language

(cherry picked from commit 2a3c87a5ea5e3308a138e461dffae19483c0184c)

Change-Id: I3ef171481b206f7a9d356110d1b4a1559cd5e837

diff --git a/filter/source/msfilter/svdfppt.cxx 
b/filter/source/msfilter/svdfppt.cxx
index fa1d06f..392e30e 100644
--- a/filter/source/msfilter/svdfppt.cxx
+++ b/filter/source/msfilter/svdfppt.cxx
@@ -4780,13 +4780,16 @@ sal_Bool PPTTextSpecInfoAtomInterpreter::Read( 
SvStream rIn, const DffRecordHea
 }
 if ( nLang )
 {
-sal_uInt16 nScriptType = GetI18NScriptTypeOfLanguage( nLang );
-if ( nScriptType  SCRIPTTYPE_LATIN )
-pEntry-nLanguage[ 0 ] = nLang;
-if ( nScriptType  SCRIPTTYPE_ASIAN )
-pEntry-nLanguage[ 1 ] = nLang;
-if ( nScriptType  SCRIPTTYPE_COMPLEX )
-pEntry-nLanguage[ 2 ] = nLang;
+// #i119985#, we could probably handle this better if we have a
+// place to over-ride the final language for weak
+// characters/fields to fallback to, rather than the current
+// application locale. Assuming that we can determine what the
+// default fallback language for a given .ppt, etc is during
+// load time.
+if (i == 2)
+{
+pEntry-nLanguage[ 0 ] = pEntry-nLanguage[ 1 ] = 
pEntry-nLanguage[ 2 ] = nLang;
+}
 }
 nFlags = ~i;
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 2a/3c87a5ea5e3308a138e461dffae19483c0184c

2014-02-23 Thread Caolán McNamara
 2a/3c87a5ea5e3308a138e461dffae19483c0184c |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 7c1a225e6e8b7f44f9b5c98fb4408f22c5f3e620
Author: Caolán McNamara caol...@redhat.com
Date:   Sun Feb 23 21:02:11 2014 +

Notes added by 'git notes add'

diff --git a/2a/3c87a5ea5e3308a138e461dffae19483c0184c 
b/2a/3c87a5ea5e3308a138e461dffae19483c0184c
new file mode 100644
index 000..82e4d79
--- /dev/null
+++ b/2a/3c87a5ea5e3308a138e461dffae19483c0184c
@@ -0,0 +1 @@
+merged as: 8a5ad76b4e69b4ec742ed27d1825262681fb6f11
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 97/7a050343fc836fc3e7bd876afaee931c47252c

2014-02-23 Thread Caolán McNamara
 97/7a050343fc836fc3e7bd876afaee931c47252c |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 9a50b2ef86902e6cd470a36f9c15c120daa88f8a
Author: Caolán McNamara caol...@redhat.com
Date:   Sun Feb 23 21:02:54 2014 +

Notes added by 'git notes add'

diff --git a/97/7a050343fc836fc3e7bd876afaee931c47252c 
b/97/7a050343fc836fc3e7bd876afaee931c47252c
new file mode 100644
index 000..8a43d99
--- /dev/null
+++ b/97/7a050343fc836fc3e7bd876afaee931c47252c
@@ -0,0 +1 @@
+merged as: 3b45f92ba6659836572d366aeda2b5bcedcae7f0
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'aoo/trunk' - 2 commits - configure.in

2014-02-23 Thread Andrea Pescetti
 configure.in |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 51110dc31f8985f0f86ff20486d029a35c0f0920
Author: Andrea Pescetti pesce...@apache.org
Date:   Sun Feb 23 20:32:17 2014 +

#i124301# Override system epm and --with-epm if --with-epm-url is used.

diff --git a/configure.in b/configure.in
index 44dfde3..9398ec9 100644
--- a/configure.in
+++ b/configure.in
@@ -3354,9 +3354,9 @@ if test $enable_epm = yes; then
  AC_PATH_PROG(EPM, epm, no)
   fi
 
-  if test $EPM = no  test -n $with_epm_url ; then
+  # Override system epm and --with-epm if --with-epm-url is used.
+  if test -n $with_epm_url ; then
  # At this moment we can not verify the URL or the content that we 
want to download.
-# Neither can we apply the test below for ruling out that it is the 
SunStudio dmake.
 EPM_URL=$with_epm_url
 AC_MSG_RESULT([epm will be downloaded and compiled in 
bootstrap])
 EPM=
commit caab055f151771adbec7b7de5eb952a4c7b11554
Author: Andrea Pescetti pesce...@apache.org
Date:   Sun Feb 23 20:05:19 2014 +

#i124301# Use more informative error messages for EPM failures.

diff --git a/configure.in b/configure.in
index c8ebd1c..44dfde3 100644
--- a/configure.in
+++ b/configure.in
@@ -3372,7 +3372,7 @@ if test $enable_epm = yes; then
 if $EPM | grep ESP Package Manager /dev/null 2/dev/null; then
AC_MSG_RESULT([yes])
 else
-  AC_MSG_ERROR([no. Install ESP Package Manager 
(http://www.msweet.org/projects.php?Z2) and/or specify the path to the right 
epm])
+  AC_MSG_ERROR([no. Install ESP Package Manager 
(http://www.msweet.org/projects.php?Z2) and/or specify the path to the right 
epm (--with-epm). Or specify an URL to an epm-3.7 source package 
(--with-epm-url); run configure with the --help option for a list of possible 
URLs.])
 fi
 AC_MSG_CHECKING([epm version])
 EPM_VERSION=`$EPM | grep 'ESP Package Manager' | cut -d' ' -f4 | 
$SED -e s/v//`
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-02-23 Thread Tomaž Vajngerl
 sw/source/filter/ww8/docxattributeoutput.cxx   |   10 ++
 writerfilter/source/dmapper/PropertyIds.cxx|   14 ++-
 writerfilter/source/dmapper/PropertyIds.hxx|   10 ++
 writerfilter/source/dmapper/TextEffectsHandler.cxx |   77 -
 writerfilter/source/ooxml/model.xml|   93 +++--
 5 files changed, 175 insertions(+), 29 deletions(-)

New commits:
commit a086a19714555ea7493e0c9ce71ee85bbc9a3664
Author: Tomaž Vajngerl tomaz.vajng...@collabora.com
Date:   Sun Feb 23 23:37:28 2014 +0100

ooxml export: w14:reflection element

Change-Id: I84cd2cd13b56a2fa369fc4c1e98c5be519a50e78

diff --git a/sw/source/filter/ww8/docxattributeoutput.cxx 
b/sw/source/filter/ww8/docxattributeoutput.cxx
index b34ce93..d37fe60 100644
--- a/sw/source/filter/ww8/docxattributeoutput.cxx
+++ b/sw/source/filter/ww8/docxattributeoutput.cxx
@@ -1124,6 +1124,7 @@ void DocxAttributeOutput::InitCollectedRunProperties()
 FSNS( XML_w, XML_rPrChange ),
 FSNS( XML_w14, XML_glow ),
 FSNS( XML_w14, XML_shadow ),
+FSNS( XML_w14, XML_reflection ),
 };
 
 // postpone the output so that we can later [in EndParagraphProperties()]
@@ -1150,12 +1151,18 @@ const NameToId constNameToIdMapping[] =
 {
 { OUString(glow),  FSNS( XML_w14, XML_glow ) },
 { OUString(shadow),FSNS( XML_w14, XML_shadow ) },
+{ OUString(reflection),FSNS( XML_w14, XML_reflection ) },
 
 { OUString(val),   FSNS( XML_w14, XML_val ) },
 { OUString(rad),   FSNS( XML_w14, XML_rad ) },
 { OUString(blurRad),   FSNS( XML_w14, XML_blurRad ) },
+{ OUString(stA),   FSNS( XML_w14, XML_stA ) },
+{ OUString(stPos), FSNS( XML_w14, XML_stPos ) },
+{ OUString(endA),  FSNS( XML_w14, XML_endA ) },
+{ OUString(endPos),FSNS( XML_w14, XML_endPos ) },
 { OUString(dist),  FSNS( XML_w14, XML_dist ) },
 { OUString(dir),   FSNS( XML_w14, XML_dir ) },
+{ OUString(fadeDir),   FSNS( XML_w14, XML_fadeDir ) },
 { OUString(sx),FSNS( XML_w14, XML_sx ) },
 { OUString(sy),FSNS( XML_w14, XML_sy ) },
 { OUString(kx),FSNS( XML_w14, XML_kx ) },
@@ -6465,7 +6472,8 @@ void DocxAttributeOutput::CharGrabBag( const 
SfxGrabBagItem rItem )
 // just skip these, they were processed before
 }
 else if (i-first == CharGlowTextEffect ||
- i-first == CharShadowTextEffect)
+ i-first == CharShadowTextEffect ||
+ i-first == CharReflectionTextEffect)
 {
 beans::PropertyValue aPropertyValue;
 i-second = aPropertyValue;
commit 155720819b58f745443ed09a5885159e27480ba6
Author: Tomaž Vajngerl tomaz.vajng...@collabora.com
Date:   Sun Feb 23 23:36:13 2014 +0100

writerfilter: put w14:reflection attributes into a GrabBag

Change-Id: I0738b3a69df9acc6e636849fbb78231621e1cad9

diff --git a/writerfilter/source/dmapper/TextEffectsHandler.cxx 
b/writerfilter/source/dmapper/TextEffectsHandler.cxx
index 7f292eb..fa0e2ad 100644
--- a/writerfilter/source/dmapper/TextEffectsHandler.cxx
+++ b/writerfilter/source/dmapper/TextEffectsHandler.cxx
@@ -161,6 +161,9 @@ void 
TextEffectsHandler::convertElementIdToPropertyId(sal_Int32 aElementId)
 maElementName = shadow;
 break;
 case NS_ooxml::LN_reflection_reflection:
+maPropertyId = PROP_CHAR_REFLECTION_TEXT_EFFECT;
+maElementName = reflection;
+break;
 case NS_ooxml::LN_textOutline_textOutline:
 case NS_ooxml::LN_textFill_textFill:
 case NS_ooxml::LN_scene3d_scene3d:
@@ -224,27 +227,50 @@ void TextEffectsHandler::lcl_attribute(Id aName, Value 
aValue)
 }
 break;
 case NS_ooxml::LN_CT_Shadow_blurRad:
+case NS_ooxml::LN_CT_Reflection_blurRad:
 mpGrabBagStack-addInt32(blurRad, sal_Int32(aValue.getInt()));
 break;
+case NS_ooxml::LN_CT_Reflection_stA:
+mpGrabBagStack-addInt32(stA, sal_Int32(aValue.getInt()));
+break;
+case NS_ooxml::LN_CT_Reflection_stPos:
+mpGrabBagStack-addInt32(stPos, sal_Int32(aValue.getInt()));
+break;
+case NS_ooxml::LN_CT_Reflection_endA:
+mpGrabBagStack-addInt32(endA, sal_Int32(aValue.getInt()));
+break;
+case NS_ooxml::LN_CT_Reflection_endPos:
+mpGrabBagStack-addInt32(endPos, sal_Int32(aValue.getInt()));
+break;
 case NS_ooxml::LN_CT_Shadow_dist:
+case NS_ooxml::LN_CT_Reflection_dist:
 mpGrabBagStack-addInt32(dist, sal_Int32(aValue.getInt()));
 break;
 case NS_ooxml::LN_CT_Shadow_dir:
+case NS_ooxml::LN_CT_Reflection_dir:
 mpGrabBagStack-addInt32(dir, sal_Int32(aValue.getInt()));
 break;
+case NS_ooxml::LN_CT_Reflection_fadeDir:
+

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

2014-02-23 Thread Takeshi Abe
 filter/source/svg/svgwriter.cxx|3 ++-
 sc/source/core/data/funcdesc.cxx   |8 ++--
 sc/source/core/data/validat.cxx|6 ++
 sc/source/core/tool/chartlis.cxx   |1 -
 sc/source/core/tool/rangenam.cxx   |9 ++---
 sc/source/core/tool/reftokenhelper.cxx |5 +++--
 sc/source/filter/excel/excel.cxx   |3 ++-
 sc/source/filter/excel/read.cxx|   10 --
 sc/source/filter/excel/xiescher.cxx|3 ++-
 sc/source/filter/xcl97/xcl97rec.cxx|6 --
 sc/source/filter/xml/xmlbodyi.cxx  |6 ++
 sc/source/filter/xml/xmlexprt.cxx  |2 +-
 sc/source/filter/xml/xmlsubti.cxx  |7 ++-
 sc/source/ui/cctrl/checklistmenu.cxx   |1 -
 sc/source/ui/docshell/impex.cxx|4 +++-
 sc/source/ui/pagedlg/scuitphfedit.cxx  |   18 ++
 sc/source/ui/view/dbfunc3.cxx  |7 +++
 sc/source/ui/view/gridwin4.cxx |4 +++-
 sc/source/ui/view/output2.cxx  |3 ++-
 sc/source/ui/view/tabvwsh3.cxx |8 +++-
 sc/source/ui/view/tabvwshf.cxx |2 +-
 scripting/source/protocolhandler/scripthandler.cxx |4 +++-
 22 files changed, 52 insertions(+), 68 deletions(-)

New commits:
commit a53577e6ff3629c4e9219616960d89eea9463593
Author: Takeshi Abe t...@fixedpoint.jp
Date:   Mon Feb 24 10:15:38 2014 +0900

Replace deprecated std::auto_ptr with boost::scoped_ptr

Change-Id: I55292f5f0049e7c77d5bb0e5ef5fa187b815d159

diff --git a/filter/source/svg/svgwriter.cxx b/filter/source/svg/svgwriter.cxx
index 6b3f04d..a124abf 100644
--- a/filter/source/svg/svgwriter.cxx
+++ b/filter/source/svg/svgwriter.cxx
@@ -29,6 +29,7 @@
 #include xmloff/unointerfacetouniqueidentifiermapper.hxx
 #include sax/tools/converter.hxx
 
+#include boost/scoped_ptr.hpp
 #include boost/shared_array.hpp
 
 
@@ -196,7 +197,7 @@ void SVGAttributeWriter::AddGradientDef( const Rectangle 
rObjRect, const Gradie
 ( rGradientId = Gradient_ ) += OUString::number( 
nCurGradientId++ ) );
 
 {
-::std::auto_ptr SvXMLElementExportapGradient;
+boost::scoped_ptr SvXMLElementExportapGradient;
 OUString aColorStr;
 
 if( rGradient.GetStyle() == GradientStyle_LINEAR || 
rGradient.GetStyle() == GradientStyle_AXIAL )
diff --git a/sc/source/core/data/funcdesc.cxx b/sc/source/core/data/funcdesc.cxx
index 9d1d701..89c1fcb 100644
--- a/sc/source/core/data/funcdesc.cxx
+++ b/sc/source/core/data/funcdesc.cxx
@@ -400,9 +400,7 @@ ScFunctionList::ScFunctionList() :
 
 for (sal_uInt16 k = 0; k  SAL_N_ELEMENTS(nDescBlock); ++k)
 {
-SAL_WNODEPRECATED_DECLARATIONS_PUSH
-::std::auto_ptrScResourcePublisher pBlock( new ScResourcePublisher( 
ScResId( nDescBlock[k] ) ) );
-SAL_WNODEPRECATED_DECLARATIONS_POP
+boost::scoped_ptrScResourcePublisher pBlock( new 
ScResourcePublisher( ScResId( nDescBlock[k] ) ) );
 // Browse for all possible OpCodes. This is not the fastest method, but
 // otherwise the sub resources within the resource blocks and the
 // resource blocks themselfs would had to be ordered according to
@@ -797,9 +795,7 @@ OUString ScFunctionMgr::GetCategoryName(sal_uInt32 
_nCategoryNumber )
 return OUString();
 }
 
-SAL_WNODEPRECATED_DECLARATIONS_PUSH
-::std::auto_ptrScResourcePublisher pCategories( new ScResourcePublisher( 
ScResId( RID_FUNCTION_CATEGORIES ) ) );
-SAL_WNODEPRECATED_DECLARATIONS_POP
+boost::scoped_ptrScResourcePublisher pCategories( new 
ScResourcePublisher( ScResId( RID_FUNCTION_CATEGORIES ) ) );
 return SC_RESSTR(static_castsal_uInt16(_nCategoryNumber));
 }
 
diff --git a/sc/source/core/data/validat.cxx b/sc/source/core/data/validat.cxx
index 68d407f..67de694e 100644
--- a/sc/source/core/data/validat.cxx
+++ b/sc/source/core/data/validat.cxx
@@ -48,7 +48,7 @@
 #include scmatrix.hxx
 
 #include math.h
-#include memory
+#include boost/scoped_ptr.hpp
 
 using namespace formula;
 
@@ -863,9 +863,7 @@ bool ScValidationData::IsListValid( ScRefCellValue rCell, 
const ScAddress rPos
 5)  A formula resulting in a cell/range reference or matrix/array.
 */
 
-SAL_WNODEPRECATED_DECLARATIONS_PUSH
-::std::auto_ptr ScTokenArray  pTokArr( CreateTokenArry( 0 ) );
-SAL_WNODEPRECATED_DECLARATIONS_POP
+boost::scoped_ptr ScTokenArray  pTokArr( CreateTokenArry( 0 ) );
 
 // *** try if formula is a string list ***
 
diff --git a/sc/source/core/tool/chartlis.cxx b/sc/source/core/tool/chartlis.cxx
index d5193fa..3cc5b8f 100644
--- a/sc/source/core/tool/chartlis.cxx
+++ b/sc/source/core/tool/chartlis.cxx
@@ -28,7 +28,6 @@
 

LibreOffice Gerrit News for core on 2014-02-24

2014-02-23 Thread gerrit
Moin!

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

 First time contributors doing great things! 
+ Use deprecated API for OS X alias resolving on X 10.5
  in https://gerrit.libreoffice.org/8195 from Douglas Mencken
  about module sal
+ Yet another one undefined comparison of 'const' and a 'non-const' iterato
  in https://gerrit.libreoffice.org/8197 from Douglas Mencken
  about module unoidl
+ Adjust gb_MKTEMP in the case you have mktemp from GNU coreutils.
  in https://gerrit.libreoffice.org/8196 from Douglas Mencken
  about module solenv
+ Restore abandoned lines in bridges/Library_cpp_uno.mk
  in https://gerrit.libreoffice.org/8193 from Douglas Mencken
  about module bridges
 End of freshness 

+ define sal_Size to be size_t and sal_sSize to be ptrdiff_t
  in https://gerrit.libreoffice.org/8198 from Norbert Thiebaud
  about module include
+ Get rid of comments like //===, , //..., //###, //___, //... and //**
  in https://gerrit.libreoffice.org/8194 from Alexander Wilms
  about module UnoControls, accessibility, animations, avmedia, basctl, 
basegfx, basic, bridges, canvas, chart2, cli_ure, codemaker, comphelper, 
compilerplugins, connectivity, cppcanvas, cppu, cppuhelper, crashrep, cui, 
dbaccess, desktop, drawinglayer, dtrans, editeng, embeddedobj, embedserv, 
eventattacher, extensions, filter, forms, formula, fpicker, framework, 
helpcompiler, i18nlangtag, i18npool, include, io, javaunohelper, jvmfwk, 
l10ntools, lingucomponent, lotuswordpro, mysqlc, odk, oox, pyuno, registry, 
remotebridges, reportdesign, sal, salhelper, sc, scaddins, scripting, sd, 
sdext, setup_native, sfx2, shell, slideshow, sot, starmath, stoc, store, svgio, 
svl, svtools, svx, sw, testtools, toolkit, ucb, ucbhelper, unodevtools, 
unotools, unoxml, uui, vbahelper, vcl, winaccessibility, writerfilter, xmlhelp, 
xmloff, xmlscript
+ Add two saveas icons for sifr theme.
  in https://gerrit.libreoffice.org/8191 from Matthias Freund
  about module icon-themes
+ Lots of Tango icon changes
  in https://gerrit.libreoffice.org/8192 from Miroslav Mazel
  about module icon-themes
+ Change semantics of GetGraphics
  in https://gerrit.libreoffice.org/8070 from Chris Sherlock
  about module include, starmath, vcl
+ Update the documentation for ImplInitGraphics()
  in https://gerrit.libreoffice.org/8030 from Chris Sherlock
  about module include
+ Added ImplSetGraphics function.
  in https://gerrit.libreoffice.org/8025 from Chris Sherlock
  about module include, vcl
+ Change EnableOutput(bool) to (Enable|Disable)Output()
  in https://gerrit.libreoffice.org/7981 from Chris Sherlock
  about module canvas, cppcanvas, drawinglayer, filter, include, sc, sd, sfx2, 
slideshow, svtools, svx, sw, vcl
+ fdo#74424 Use GetClipRegion() in ImplInitClipRegion()
  in https://gerrit.libreoffice.org/7980 from Chris Sherlock
  about module vcl
+ Add default parameter to OutputDevice::GetClipRegion
  in https://gerrit.libreoffice.org/7965 from Chris Sherlock
  about module include, vcl
+ Clipping functions grouped together
  in https://gerrit.libreoffice.org/7964 from Chris Sherlock
  about module include
+ Changes to IsClipRegion and ImplIsAntiparallel
  in https://gerrit.libreoffice.org/7949 from Chris Sherlock
  about module editeng, include, vcl
+ fdo#74424 Move ReMirror into wrapper functions
  in https://gerrit.libreoffice.org/7943 from Chris Sherlock
  about module include, vcl
+ Seperate initialization of OutputDevice instance
  in https://gerrit.libreoffice.org/ from Chris Sherlock
  about module include, vcl


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

+ CoreText SDK 10.5 compatibility
  in https://gerrit.libreoffice.org/7143 from Douglas Mencken


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

+ harminize Tell() and other to use the same type
  in https://gerrit.libreoffice.org/8185 from Norbert Thiebaud


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

+ fdo#74566:DOCX: Preservation w:br tag for Break to Next Page
  in https://gerrit.libreoffice.org/7891 from Pallavi Jadhav
+ Lots of changes to Tango icons
  in https://gerrit.libreoffice.org/7987 from Miroslav Mazel
+ sw/docx export: fix handling of document with header and section(s)
  in https://gerrit.libreoffice.org/6248 from Pierre-Eric Pelloux-Prayer
+ fdo#51525 Fix duplicate Paste Special entries in Calc.
  in https://gerrit.libreoffice.org/7784 from Andrzej Hunt
+ fdo#72661: Check ‘Hyphenation active’ automatically
  in https://gerrit.libreoffice.org/7291 from Jiwoong Youn
+ sa/l add release_assert() and assert that stay even in release code
  in https://gerrit.libreoffice.org/7625 from Norbert Thiebaud
+ fdo#69407: On transparent frames, shadows are painted in foreground.
  in https://gerrit.libreoffice.org/7070 from Mohamed-Ali BEN MANSOUR
+ add a header to provide posix compatible wrapper for platform lacking
  in https://gerrit.libreoffice.org/6837 

Re: [Libreoffice-qa] [Fun] My emotions during bug reporting process

2014-02-23 Thread Adam Fyne
Like :)


On Sat, Feb 22, 2014 at 8:18 AM, Tommy ba...@quipo.it wrote:

 On Fri, 21 Feb 2014 21:22:56 +0100, Zeki Bildirici 
 zeki.ozguryazi...@gmail.com wrote:

  Hi,

 I made a caps to show my feelings during the bug reporting process for
 LibreOffice. I share this list too to thank all the hardworking QA
 team, hope you'll enjoy it :)

 Caps: https://lh3.googleusercontent.com/-dletn6apbhE/UwPpnCojeLI/
 DdM/blgOqIK6QoA/w506-h930/LibreOffice-Y%25C4%25B1lmaz-Vural.jpg


 nice!!!


 ___
 List Name: Libreoffice-qa mailing list
 Mail address: Libreoffice-qa@lists.freedesktop.org
 Change settings: http://lists.freedesktop.org/
 mailman/listinfo/libreoffice-qa
 Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-
 unsubscribe/
 Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
 List archive: http://lists.freedesktop.org/archives/libreoffice-qa/




-- 

[image: appicon.png]


*Adam Fyne*

Twitter http://www.twitter.com/cloudoninc |
LinkedInhttp://www.linkedin.com/company/cloudon
 | Facebook http://www.facebook.com/cloudoninc |
Bloghttp://site.cloudon.com/blog
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-qa] Urgent clarification for Bug submitters/triagers! Attention Devs!

2014-02-23 Thread Pedro
Hi all

Since the 4.2.1 branch was closed with a single release and the current
daily builds from the 4.2 branch are now named 4.2.3 (since Feb 20th), what
happened to 4.2.2???

What does that mean for a bug like this one
https://bugs.freedesktop.org/show_bug.cgi?id=75376

It worked in 4.2.0, it is broken in 4.2.1 (so it is a regression) and it is
fixed in the daily builds named 4.2.3...

Does it mean 
1) it will be fixed for 4.2.2 and that the dailies are simply incorrectly
named
2) there will be no 4.2.2 release and the fix will be included in the next
release which will be named 4.2.3
3) there will be a 4.2.2 release (with no dailies) and the bugs fixed in
4.2.3 will be released with 4.2.3 (so it would make sense to request this
regression fix to be cherry picked?)

Cheers,
Pedro



--
View this message in context: 
http://nabble.documentfoundation.org/Urgent-clarification-for-Bug-submitters-triagers-Attention-Devs-tp4098638.html
Sent from the QA mailing list archive at Nabble.com.
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


[Libreoffice-qa] contributing membership..

2014-02-23 Thread Cor Nouws
Hi all,

I expect that quite some of the people doing tremendous work on QA are
member of TDF. But maybe some didn't realise or pay attention ??

I think I don't say to much, when writing the applying for membership is
really appreciated. 'Join the growing community', I would say :)

Some info:

https://wiki.documentfoundation.org/TDF/Membership_Role

http://www.documentfoundation.org/foundation/application-for-tdf-community-membership/

Cheers,

Cor

-- 
Cor Nouws
GPD key ID: 0xB13480A6 - 591A 30A7 36A0 CE3C 3D28  A038 E49D 7365 B134 80A6
- vrijwilliger http://nl.libreoffice.org
- volunteer http://www.libreoffice.org
- The Document Foundation Membership Committee Member



signature.asc
Description: OpenPGP digital signature
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

Re: [Libreoffice-qa] Urgent clarification for Bug submitters/triagers! Attention Devs!

2014-02-23 Thread M Henri Day
2014-02-23 13:16 GMT+01:00 Pedro pedl...@gmail.com:

 Hi all

 Since the 4.2.1 branch was closed with a single release and the current
 daily builds from the 4.2 branch are now named 4.2.3 (since Feb 20th), what
 happened to 4.2.2???

 What does that mean for a bug like this one
 https://bugs.freedesktop.org/show_bug.cgi?id=75376

 It worked in 4.2.0, it is broken in 4.2.1 (so it is a regression) and it is
 fixed in the daily builds named 4.2.3...

 Does it mean
 1) it will be fixed for 4.2.2 and that the dailies are simply incorrectly
 named
 2) there will be no 4.2.2 release and the fix will be included in the next
 release which will be named 4.2.3
 3) there will be a 4.2.2 release (with no dailies) and the bugs fixed in
 4.2.3 will be released with 4.2.3 (so it would make sense to request this
 regression fix to be cherry picked?)

 Cheers,
 Pedro


​You seem to have effectively covered all bases there, Pedro !... [?]

Henri​
inline: 347.png___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-bugs] [Bug 73826] PRINTING: Top line of the table is not printed

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73826

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 CC||ba...@quipo.it
Summary|PRINTING: Top line of the   |PRINTING: Top line of the
   |table does not printed  |table is not printed
  Component|Writer  |Printing and PDF export

-- 
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 73813] 'Adapt row height' process sometimes takes 8 to 10 minutes to complete on a 156, 000 line .ods

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73813

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||ba...@quipo.it
Summary|'Adapt row height' process  |'Adapt row height' process
   |sometimes take 8 to 10  |sometimes takes 8 to 10
   |minutes to complete on a|minutes to complete on a
   |156,000 line ods file.  |156,000 line .ods
 Ever confirmed|0   |1

--- Comment #2 from tommy27 ba...@quipo.it ---
upload test file to some webhosting site and provide a download link.
otherwise it will be impossible to test and debug.

set status to NEEDINFO

-- 
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 73629] FILEOPEN: paragraph spacing issues with numbered list .doc

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73629

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||ba...@quipo.it,
   ||mst...@redhat.com
Summary|LibreOffice is not opening  |FILEOPEN: paragraph spacing
   |doc file with numbered list |issues with numbered list
   |right   |.doc
Version|4.0.6.2 release |3.6.0.4 release
   Keywords||regression
 Ever confirmed|0   |1

--- Comment #7 from tommy27 ba...@quipo.it ---
In reply to comment #0)
 Have trouble with openning doc file in LibreOffice 4.0.6 on Debian Wheezy. 
 
 Doc file contains only ordered list and if opened with LO, paragraph
 spacings are not right. There is more space withn same paragraph then
 between two bollets.
 
 Between two parahraphs there is no spacing at all, but withn the same
 paragraph spacing is double (or at least 1.5).

tested under Win7x64bit

paragraph spacing issues reproducible since 3.6.0.4 and persist in 4.2.0.4 and
4.3.0.0alpha. works fine with 3.5.7.2, hence regression

reworded summary notes
added Writer expert to CC list

-- 
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 73432] Large file does not get convert to PDF

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73432

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||ba...@quipo.it
 Ever confirmed|0   |1

--- Comment #7 from tommy27 ba...@quipo.it ---
I set status to NEEDINFO until a test file is provided.
use webhosting sites to upload it, after clearing sensitive informations, and
provide a download link.

Vikram, please understand that without a test file it will be impossible to
test and debug.

-- 
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 72320] EDITING: Image disappears after rotation

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=72320

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||ba...@quipo.it
 Ever confirmed|0   |1

--- Comment #5 from tommy27 ba...@quipo.it ---
reproducible under Win7x64 with releases 4.1.5, 4.2.0 and 4.3master

-- 
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 49853] EDITING: Attempting paste into find bar with Edit:Paste (or Cmd-V on OS X) pastes into document

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49853

--- Comment #68 from Ralph Martin ra...@cs.cf.ac.uk ---
But I wanted to notice one thing. The Edit menu behaviour cannot be regarded
a bug. Actually, this is the way it should be: Edit menu describes actions that
should be performed in edited document, not in some other auxiliary windows
(such as Find toolbar edit box).

This is plain wrong on the Mac, and not how any other app on the Mac behaves.
(I do not know about Windows ir Linux). But if you are making a cross-platform
app, it should work like a native app on all platforms.

On the Mac it has always been the case that you can paste into native dialog
boxes, for example, either by command-key, or by menu.

-- 
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 49853] EDITING: Attempting paste into find bar with Edit:Paste (or Cmd-V on OS X) pastes into document

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49853

--- Comment #69 from Ralph Martin ra...@cs.cf.ac.uk ---
Under OSX, this is really a problem, things don't work as expected. And THE
way to fix this would be to DISABLE all Main Menu accelerators while caret is
outside the main edit window, and restore them on entry.

And that too would not be how native applications work on the Mac. Suggesting
disabling functionality instead of fixing it is unhelpful.

-- 
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 49853] EDITING: Attempting paste into find bar with Edit:Paste (or Cmd-V on OS X) pastes into document

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49853

--- Comment #70 from Mike Kaganski mikekagan...@hotmail.com ---
(In reply to comment #69)
 And that too would not be how native applications work on the Mac.
 Suggesting disabling functionality instead of fixing it is unhelpful.

Unfortunately, I don't have a Mac. So I don't know what is native there.
Could you explain, if native Mac applications are expected to use main menu to
paste into any active vidget? I mean, do you expect that when the caret is
inside Find vidget, you will click main menu, and then Paste, ant this will
paste into Find string?

If so, isn't Mac menu Edit expected to be changed when a vidget is active, to
reflect only those commands that are relevant to active vidget (i.e., to look
like contect menu)?

-- 
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 37315] pictures in docx file appears in wrong place

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37315

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #9 from tommy27 ba...@quipo.it ---
still present in 4.1.5.3, 4.2.0.4 and recent 4.3master under Win7x64bit
same findings reported by Foss

similar issuse with AOO 4.0.0 as well

-- 
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 37315] cropped pictures in .docx file are mangled and in wrong place

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37315

tommy27 ba...@quipo.it changed:

   What|Removed |Added

Summary|pictures in docx file   |cropped pictures in .docx
   |appears in wrong place  |file are mangled and in
   ||wrong place
Version|3.4.0 Beta5 |Inherited From OOo

--- Comment #10 from tommy27 ba...@quipo.it ---
(In reply to comment #0)
 Created attachment 46861 [details]
 all 4 pictures appears in one corner but should be in all corners
 

this was originally present in OOo 3.3.0 and LibO 3.3.0 as well.
so issue is inherited from OOo.(In reply to comment #3)

 in 3.5.3 situation is much better than in 3.3.4, but still incorrect

yes, things improved during development but as pointed out in comment #8:

 pictures get mangled rather badly. Bottom left pic missing, top right has a
 white bar in the middle.


actully bottom left pic is moved to the bottom right and is hiding the original
right bottom image which in almost completely obscured by white rectangle

-- 
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 75318] FORMATTING: shape in .docx file is out of page bounds

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75318

--- Comment #6 from Dominique Boutry dominique.bout...@laposte.net ---
Hi.

The red drawing object in the first page header exceeds the page height, and
extends on following page. I don't know if it is the expected behaviour.

For instance :
- in a NEW writer text,
- set the page height to 69.7 cm, zoom out to see it entirely,
- draw a rectangle of about 2 cm width 64 cm height,
- set back the page height to 29.7 cm,
- deselect the rectangle then type 2 hard returns, in order to fill 3 pages,
- observe that the rectangle extends on the 3 pages. Is it the expected
behaviour?
- select the rectangle then position and size: its height is 29,7 cm,
consistent with page height (see bug 73453) but inconsistent with the effective
drawing.

I confirm that there is a bug, but I can't explicit it without a better knowing
of LibO specifications.

-- 
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 49853] EDITING: Attempting paste into find bar with Edit:Paste (or Cmd-V on OS X) pastes into document

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49853

--- Comment #71 from Ralph Martin ra...@cs.cf.ac.uk ---
(In reply to comment #70)
 Unfortunately, I don't have a Mac. So I don't know what is native there.
 Could you explain, if native Mac applications are expected to use main menu
 to paste into any active vidget?

Absoultely standard behaviour for all native applications. E.g

 I mean, do you expect that when the caret
 is inside Find vidget, you will click main menu, and then Paste, ant this
 will paste into Find string?

Yes.

Or you can paste a password into a password dialog. And so on.

Simply put, if you choose Paste on a Mac, when editing text, it will paste
wherever the caret is. It does not matter if that is a window, a dialog box, or
anything else.

Furthermore, the Mac makes no distinction whether you use the Edit menu, or a
command key - the command key is regarded as just a short cut for using the
menu.

 If so, isn't Mac menu Edit expected to be changed when a vidget is active,
 to reflect only those commands that are relevant to active vidget (i.e., to
 look like contect menu)?

Yes, menus are supposed to change to reflect conext. However, at the risk of
getting boring, being able to paste text wherever you are typing text is
expected. Any application which disabled pasting text into dialogs would be
considered broken.

-- 
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 75388] FILESAVE: Random crash with data loss

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75388

tommy27 ba...@quipo.it changed:

   What|Removed |Added

 CC||ba...@quipo.it

--- Comment #1 from tommy27 ba...@quipo.it ---
is this crash happening with this file only?
if yes attach that test file

-- 
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 49853] EDITING: Attempting paste into find bar with Edit:Paste (or Cmd-V on OS X) pastes into document

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49853

--- Comment #72 from Mike Kaganski mikekagan...@hotmail.com ---
Then my proposition remains true: I mean, main menu must be modified on entry
to vidgets, and restored on return to main edit window. The only mistake I did
is what exactly should be modified: it's not shortcuts, but the menu items
themselves: they must be replaced with context menu entries that work with
active vidget. And this is not the same as what is seen in Linuxes and Windows.

-- 
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 49853] EDITING: Attempting paste into find bar with Edit:Paste (or Cmd-V on OS X) pastes into document

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49853

--- Comment #73 from Mike Kaganski mikekagan...@hotmail.com ---
By the way, I never meant to disable pasting; what I meant was temporarily
remove DUPLICATE accelerators from main menu, that are the same in Main menu
and in Context menu, so that no conflict exist, and Context menu keys would be
active. Well, it's not disabling functionality, it would enable Ctrl+V as
well. But not in a native way. If main menu must be redirected under OSX, well,
that should be done, but not under other OSes.

-- 
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 75317] FILEOPEN: .xlsx Fails to import chart properly - First data label of 2nd column is displayed on the bottom

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75317

Jorendc jore...@libreoffice.org changed:

   What|Removed |Added

  Attachment #94506|text/plain  |application/vnd.openxmlform
  mime type||ats-officedocument.spreadsh
   ||eetml.sheet

-- 
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 58420] : impress/draw get extremely slow with documents including svg in libo 4.0 beta 1

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58420

--- Comment #7 from Manuel R. Ciosici manuelrcios...@gmail.com ---
I can confirm this issue affect calc (LibreOffice 4.2.0.4) on Mac OS X 10.9.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 75396] New: FORMCONTROLS: Can not copy-paste a table to the email Thunderbird

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75396

  Priority: medium
Bug ID: 75396
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FORMCONTROLS: Can not copy-paste a table to the email
Thunderbird
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: hau.truongc...@gameloft.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.2.0.4 release
 Component: Spreadsheet
   Product: LibreOffice

Problem description: 

User use Thunderbird to write an email, he insert a table from LibreOffice Calc
(Copy a Table data) and paste to email of Thunderbird, after that he notices
that any pasted.

Thunderbird v24.3.0

Operating System: Windows XP
Version: 4.2.0.4 release

-- 
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 75306] Other: cross reference

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75306

--- Comment #1 from Dominique Boutry dominique.bout...@laposte.net ---
Reproduced with LibO 4.2.1.1 on Win7, on the provided attachment. Unable to
reproduce it in a NEW writer text.

-- 
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 74889] DRAW crashes while changing page orientation

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74889

apta...@gmx.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED
Version|4.2.0.4 release |4.2.1.1 rc

--- Comment #7 from apta...@gmx.de ---
after update of win8.1 and update to LO Version: 4.2.1.1
Build-ID: d7dbbd7842e6a58b0f521599204e827654e1fb8b

the crash could not be reproduced either. 

thread can be CLOSED

-- 
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 30770] xslx import/export takes hours, while UI freezes

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=30770

Tobias Lippert d...@fastmail.fm changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |d...@fastmail.fm
   |desktop.org |

-- 
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 75373] Export PDF - do not work with images inserted in document

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75373

Gibey jmarc...@orange.fr changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 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 75397] New: Array formula bug SUM(Len(A2:A200)) adds empty cells

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75397

  Priority: medium
Bug ID: 75397
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Array formula bug SUM(Len(A2:A200)) adds empty cells
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: elico...@hotmail.com
  Hardware: x86 (IA32)
Status: UNCONFIRMED
   Version: 4.1.3.2 release
 Component: Spreadsheet
   Product: LibreOffice

In a sheet where the range A2:A200 contain text strings and some are empty, the
array formula
{=SUM(Len(A2:A200))} adds one to the sum for every empty cell.

{=SUM(IF(ISBLANK(A2:A200),0,LEN(A2:K200)))}, however, works correctly - but the
if(isblank()) shouldn't be necessary.

It seems to be more than just the SUM function, as I tried the QUARTILE
function with LEN as an array function and I also got the result 1 when I was
expecting 0. So perhaps any time you do an array function LEN() with empty
cells, LEN gives 1 when it should give 0.

(Needless to say the nonarray variation where you use a range of cells to
perform the same calculation e.g.
=LEN(A2)
=LEN(A3)
=LEN(A4)
=LEN(A5)
...
=LEN(A199)
=LEN(A200)
=SUM(B2:B200)

works fine.

See demonstration of the problem in cell B12 here:
https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/1273659/+attachment/3962696/+files/Array%20Formula%20Bug.ods

-- 
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 43691] Different interpretation of empty space () in case of formulas sum(A1; C1) and A1+B1+C1

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43691

elico...@hotmail.com changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|NOTABUG |---

--- Comment #3 from elico...@hotmail.com ---
See also https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/1273659

-- 
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 43691] Different interpretation of empty space () in case of formulas sum(A1; C1) and A1+B1+C1

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43691

elico...@hotmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |NOTABUG

--- Comment #4 from elico...@hotmail.com ---
Sorry please ignore previous comment, posted into wrong bug!! (Is it possible
to delete comments?)

-- 
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 75397] Array formula bug SUM(Len(A2:A200)) adds empty cells

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75397

elico...@hotmail.com changed:

   What|Removed |Added

   Hardware|x86 (IA32)  |All

--- Comment #1 from elico...@hotmail.com ---
See also https://bugs.launchpad.net/ubuntu/+source/libreoffice/+bug/1273659

-- 
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 74478] Other: test_sc_opencl_test.dll hangs inCygwin

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74478

--- Comment #3 from Honza Havlíček havlicek.ho...@gmail.com ---
(In reply to comment #1)
 
 Thanks for filing Honza - we already have a black-list here; I suspect it'd
 be good to turn that into a white-list =) Can you report your Windows
 Version too in case that's interesting.
 

Win 7 SP1 64 bit, version 6.1.7601. 
Card is AMD Radeon HD 7700 Series, driver is atiumdag 9.12.0.0 (Catalyst
13.1)/Win 7 64 (according to GPU-Z).

-- 
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 75381] FILESAVE: Rotation in text is lost when exporting as SVG

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75381

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
reproducible with LO 4.2.1.1 (Win8.1)

Steps Done:
1. Open the attachment in DRAW
2. Go to FILE / EXPORT and select svg as file format and click SAVE
3. Open the svg file e.g. with Internet Explorer or Firefox

Result: The X-Axis label is no longer rotated.

But I experienced another strange bug if you try to open the exported svg file
in DRAW.
This results in a svg file with a chart with black page background.  This does
not happen in IE or Firefox when opening the same file.

-- 
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 75380] FORMATTING: Can't Create a Border Around a Chart

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75380

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 OS|Mac OS X (All)  |All
 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
already reproducible with LO 4.2.1.1 (Win8.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 43691] Different interpretation of empty space () in case of formulas sum(A1; C1) and A1+B1+C1

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43691

--- Comment #5 from andis.lazd...@gmail.com ---
I think it is solved now (in 4.1), at least it is no problem to use both + and
sum(). Of course, in Excel it ends with error. The bug could be closed now as
resolved.

-- 
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 75374] In Calc - Chart - Line chart, Stack series checkbox does not work

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75374

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
reproducible with LO 4.2.1.1 (Win8.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 75398] New: Use Sifr instead of hicontrast theme

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75398

  Priority: medium
Bug ID: 75398
CC: libreoffice-ux-adv...@lists.freedesktop.org
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Use Sifr instead of hicontrast theme
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: heinzless...@gmail.com
  Hardware: All
Status: UNCONFIRMED
   Version: 4.3.0.0.alpha0+ Master
 Component: ux-advise
   Product: LibreOffice

Is it an option to ship the Sifr theme instead of the hicontrast theme?

The Sifr theme uses relatively simple shapes, is flat and should provide good
contrast (at least on light backgrounds). Are there any reasons to keep the old
hicontrast theme around?

-- 
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 75398] Use Sifr instead of hicontrast theme

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75398

Stefan Knorr (astron) heinzless...@gmail.com changed:

   What|Removed |Added

 CC||vstuart.fo...@utsa.edu

--- Comment #1 from Stefan Knorr (astron) heinzless...@gmail.com ---
Adding V. Stuart Foote for accessibility input.

-- 
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 75370] Moving and resizing images in Draw is very slow

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75370

--- Comment #1 from A (Andy) stgohi-lob...@yahoo.de ---
not reproducible with LO 4.2.1.1 (Win8.1, i3)

-- 
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 75398] Use Sifr instead of hicontrast theme

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75398

A (Andy) stgohi-lob...@yahoo.de changed:

   What|Removed |Added

   Severity|normal  |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 75399] New: SUMPRODUCT function treat empty cells in different ways (1 instead of 0), as the order of column vectors are reversed

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75399

  Priority: medium
Bug ID: 75399
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: SUMPRODUCT function treat empty cells in different
ways (1 instead of 0), as the order of column vectors
are reversed
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: laszlov...@gmail.com
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.2.0.4 release
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 94597
  -- https://bugs.freedesktop.org/attachment.cgi?id=94597action=edit
Asymetry in SUMPRODUCT

SUMPRODUCT function treat empty cells as 1 when the arrays in the calculations
in the argument are placed in reverse order, but treat empty cells as 0 when
the arrays in the calculations in the argument are placed in the usual
increasing order.
For example:
Increasing order: SUMPRODUCT($A3:$A11;H3:H11) treat empty cells as 0 in both
vectors
Reverse order: SUMPRODUCT(H3:H11;$A3:$A11) treat empty cells as 1 in 
the H3:H11 vector but not in the $A3:$A11 vector

-- 
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 75256] Sifr icon theme is highly incomplete

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75256

--- Comment #2 from Papamatti matti...@yahoo.de ---
Ok, I will try my luck and create the missing ones.

-- 
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-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60251

Bug 60251 depends on bug 75162, which changed state.

Bug 75162 Summary: [Accessibility] the root of a LibreOffice document must be 
of role document, not window
https://bugs.freedesktop.org/show_bug.cgi?id=75162

   What|Removed |Added

 Status|NEW |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 36549] ACCESSIBILITY: Tracking bug for issues affecting a11y ATK and GNOME Orca screen reader support

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36549

Bug 36549 depends on bug 75162, which changed state.

Bug 75162 Summary: [Accessibility] the root of a LibreOffice document must be 
of role document, not window
https://bugs.freedesktop.org/show_bug.cgi?id=75162

   What|Removed |Added

 Status|NEW |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 75162] [Accessibility] the root of a LibreOffice document must be of role document, not window

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75162

Marlin marlincgrodrig...@yahoo.com.br changed:

   What|Removed |Added

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

--- Comment #19 from Marlin marlincgrodrig...@yahoo.com.br ---
Tested and fixed. 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 55571] ACCESSIBILITY: Tracking bug for important issues related to the Mac OS X Accessibility API

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55571

Bug 55571 depends on bug 75162, which changed state.

Bug 75162 Summary: [Accessibility] the root of a LibreOffice document must be 
of role document, not window
https://bugs.freedesktop.org/show_bug.cgi?id=75162

   What|Removed |Added

 Status|NEW |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 75193] FORMATTING: Stock Chart 4 Bug for LO 4.2.0.4

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75193

Dominique Boutry dominique.bout...@laposte.net changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #4 from Dominique Boutry dominique.bout...@laposte.net ---
Thanks to your answer.
OK, I reproduce the bug after interverting Low and High (LibO 4.2.1.1 on Win7)

So status set to NEW

-- 
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 75167] Tools | Options | LibreOffice Calc | Calculate | Enable Regular Expressions in formulas setting not saved

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75167

Dominique Boutry dominique.bout...@laposte.net changed:

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever confirmed|1   |0

--- Comment #3 from Dominique Boutry dominique.bout...@laposte.net ---
OK, thank you.
I reproduce the behaviour with LibO 4.2.1.1 on Win7.

I understand that part of the options are global (as should be regular
expression, you say), and that another part is carried by a document (as Date
[origin] in the same Tab). What criteria to fall into one category or the
other? I wonder whether some people may build Calc applications that build
texts to be interpreted as regular expression, and would therefore prefer that
the regular expression option be carry by their documents.

Status put back to Unconfirmed to gather additionnal advices.

-- 
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 75162] [Accessibility] the root of a LibreOffice document must be of role document, not window

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75162

--- Comment #20 from V Stuart Foote vstuart.fo...@utsa.edu ---
On Windows 7 sp1, 64-bit

Confirming the accessible role has changed to 'docuemnt' and paragraphs back to
announcing as 'blank' with /A Administrative installs both of todays TB39 and
TB47 builds of master on Windows

Version: 4.3.0.0.alpha0+
Build ID: b129443eeddab30b31c07bb8c544adaa80785046
TinderBox: Win-x86@39, Branch:master, Time: 2014-02-23_00:07:48

Version: 4.3.0.0.alpha0+
Build ID: f839b5dd16c05c0eda21345ec36ec0cb024eb732
TinderBox: Win-x86@47-TDF, Branch:MASTER, Time: 2014-02-23_09:54:38

The TB47, with the en-US help files installed, has dictionary support and
command annotations available, so maybe is a better choice for testing
accessibility UX.  Of course TB39 with debug symbols available will still be
needed for that use.

-- 
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 75386] cell reference recalculation is wrong

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75386

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

   What|Removed |Added

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

--- Comment #1 from m.a.riosv mari...@miguelangel.mobi ---
Hi Andras,

Reproducible with:
Win7x64Ultimate
Version: 4.2.1.1 Build ID: d7dbbd7842e6a58b0f521599204e827654e1fb8b
Version: 4.2.3.0.0+ Build ID: 5fd90cdd1fdb20ab7f6a2b67c384f0994f09a86b
   TinderBox: Win-x86@42, Branch:libreoffice-4-2, Time: 2014-02-21_22:38:15
Version: 4.3.0.0.alpha0+ Build ID: d84ccb39b744457cd47125beb4291c84223d5219
   TinderBox: Win-x86@39, Branch:master, Time: 2014-02-22_10:05:06

Last working:
Version: 4.1.6.0.0+ Build ID: 1c33633ef18274bf384c74c492195519be83c05

A hard recalculation gives the correct values.

But I have found that undo doesn't restore the cell references in B1:B16 they
remain C1:C16.

Maybe a MAB by the undo issue.

-- 
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 75399] SUMPRODUCT function treat empty cells in different ways (1 instead of 0), as the order of column vectors are reversed

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75399

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||mari...@miguelangel.mobi

--- Comment #1 from m.a.riosv mari...@miguelangel.mobi ---


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

-- 
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 75402] New: Other: Copy

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75402

  Priority: medium
Bug ID: 75402
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Other: Copy
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: ela1...@aol.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.2.0.4 release
 Component: Writer
   Product: LibreOffice

Problem description: When copy of a table is selected in Write and then an
email window is opened to write an email.  The copy past will not work at all. 
Only copy past with  un formatted option selected will work.  The previous
version 4.0 will do this easily.  It will past the table into the email
write area as a table.  Please fix. I have uninstalled 4.2 and
will reinstall 4.0.  Please advise when fix has been made.


Steps to reproduce:
1. Make a table in Write and put something in it.
2. Select the table
3. Copy the table
4. Open email software and write an email
5. Use past and past the table into the email.   It will
Not work.  You have to use past and unformated.

Current behavior:
Nothing happens

Expected behavior:  Table pasted into the email.


Operating System: Windows 7
Version: 4.2.0.4 release

-- 
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 75397] Array formula bug SUM(Len(A2:A200)) adds empty cells

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75397

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

   What|Removed |Added

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

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

Reproducible with:
Win7x64Ultimate
Version: 4.1.6.0.0+ Build ID: 1c33633ef18274bf384c74c492195519be83c05
until
Version: 4.3.0.0.alpha0+
Build ID: d84ccb39b744457cd47125beb4291c84223d5219
TinderBox: Win-x86@39, Branch:master, Time: 2014-02-22_10:05:06

Last working:
Versión 3.6.7.2 (ID de compilación: e183d5b)

-- 
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 74381] EDITING: Copy and paste from calc to excel does not work as expected - only plain text works

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=74381

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

   What|Removed |Added

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

--- Comment #1 from Jacques Guilleron guillero...@aol.com ---
Hello Papamatti,

Thanks for reporting that.
Calc and Writer affected when we use Copy from thoses apps and Paste to an
external app as Excel, Word, Firefox...
This was previously reported in Bug 74584 - Can no longer copy spreadsheet
cells from libreoffice calc to another app like thunderbird and paste as html
table. 
It's already fixed and will be available in LO 4.2.2

Kind regards,

Jacques

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

-- 
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 75396] FORMCONTROLS: Can not copy-paste a table to the email Thunderbird

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75396

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

   What|Removed |Added

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

--- Comment #1 from Jacques Guilleron guillero...@aol.com ---
Hello Truong Cong Hau,

Thanks for reporting that.
Calc and Writer affected too when we use Copy from thoses apps and Paste to an
external app as Excel, Word, Firefox...
This was previously reported in Bug 74584 - Can no longer copy spreadsheet
cells from libreoffice calc to another app like thunderbird and paste as html
table. 
It's already fixed and will be available in LO 4.2.2

Kind regards,

Jacques

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

-- 
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 75402] Other: Copy

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75402

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

   What|Removed |Added

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

--- Comment #1 from Jacques Guilleron guillero...@aol.com ---
Hello Adkins,

Thanks for reporting that.
Calc and Writer affected when we use Copy from thoses apps and Paste to an
external app as Excel, Word, Firefox...
This was previously reported in Bug 74584 - Can no longer copy spreadsheet
cells from libreoffice calc to another app like thunderbird and paste as html
table. 
It's already fixed and will be available in LO 4.2.2

Kind regards,

Jacques

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

-- 
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 75398] Use Sifr instead of hicontrast theme

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75398

--- Comment #2 from V Stuart Foote vstuart.fo...@utsa.edu ---
Created attachment 94602
  -- https://bugs.freedesktop.org/attachment.cgi?id=94602action=edit
Windows 7 default HC mode themes available

Astron, Mirek

Reviewed related design discussions 

https://wiki.documentfoundation.org/Design/Meetings/2014-02-23
https://wiki.documentfoundation.org/Design/Meetings/2014-02-16

Attached is a snip of the MS Windows 7 default offerings for HC mode (OS X and
Linux DTE's have many as well), the static bitmaps of the existing HC mode icon
set is actually not optimal for a number of these HC 'themes'.  

IIRC current high contrast icon set was morphed from the Tango designs, see no
reason not to do the same for a set of Sifr for use when OS shifts to its
HighContrast mode.  

Am I correct in thinking that since Sifr is a dynamic 'flat' icons set, the OS
HighContrast settings could be picked up to drive the Sifr color set as
rendered for HC.

Unfortunately you can't switch OS (Windows 7) into a HighContrast mode, and
have LibreOffice honor a Tools - Options - View setting of Sifr icons to see
what it does with the existing renderings. When in Windows OS HC mode,
LibreOffice switches to the HC icon set.

Can anyone think of a way to mock-up appearance of Sifr icons on the common HC
layouts with dynamic color assignment?

-- 
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 75388] FILESAVE: Random crash with data loss

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75388

--- Comment #2 from ianthe...@gmail.com ---
I upgraded to LibreOffice 4.2 and that seems to have resolved the issue.

-- 
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 40780] Impress Custom Animation Sound Effect not audible in Slide Show

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40780

--- Comment #12 from Joshua O'Leary joshua.ole...@btinternet.com ---
vulc...@gmx.com: no, the problem with not including the file in the
presentation is another issue altogether (but related). This concerns custom
animation, and the sound effects do not play at all (let alone get embedded in
the slide show). 

I think the whole multimedia system for Libreoffice could be in need of being
redone, though this is no small task. (I would help if I knew and had the time
to learn C++, I only know C)

-- 
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 43938] UI: Default area color without name in Impress/Draw

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43938

--- Comment #20 from Joshua O'Leary joshua.ole...@btinternet.com ---
Shouldn't the default option be set to just no fill / invisible?

-- 
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 75391] Upgrade using rpm -Uvh fails dependency missing help.

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75391

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||serval2...@yahoo.fr
Summary|Upgrade using rpm -Uvh  |Upgrade using rpm -Uvh
   |fails dependacy missing |fails dependency missing
   |help.   |help.
 Ever confirmed|0   |1

--- Comment #1 from Julien Nabet serval2...@yahoo.fr ---
Michael: what distribution do you use + what version of it?
What version of LO are you trying to install?
Where did you retrieve the rpm (from LO website) or from your distribution
repository?
What was the precise error message?

-- 
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 75388] FILESAVE: Random crash with data loss

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75388

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME
 CC||serval2...@yahoo.fr

--- Comment #3 from Julien Nabet serval2...@yahoo.fr ---
ianthealy: Following your last comment, I put it WFM.
Don't hesitate to reopen this tracker if you can reproduce the crash again. In
this case, you may provide some interesting information by following this link:
https://wiki.documentfoundation.org/QA/BugReport/Debug_Information#GNU.2FLinux:_How_to_get_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 75391] Upgrade using rpm -Uvh fails dependency missing help.

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75391

--- Comment #2 from Michael Setzer II mi...@kuentos.guam.net ---
This is on an older machine that has Fedora 14. The libre office is the 4.2.1.1
that was just downloaded from the libre website.

Downloaded and extracted to the RPM file as I have done in the past and
extracted it. rpm -Uvh *.rpm result in a error about a dependency of the help
file, and nothing would update. I then extracted the help file that I had
already downloaded, and just copied the one RPM from it to the directory with
all the other rpm files. Then ram rpm -Uvh *.rpm and it ran with no issue. 

Usually, would do the updates of the main files with no issues, and then do the
update of the help files afterwards with no issue.

Was just running yum update on Fedora 20 64 bit machines, and it sees that
there is the new 4.2.1.1 in the repo, but it is failing due to a requirement of
libcmis-0.4, but there is only libcmis-0.3.1-8 and nothing in the testing repo,
so not sure why it is required? But that is another issue.

-- 
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 75404] New: Problem in CALC with date 1st of May 1921

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75404

  Priority: medium
Bug ID: 75404
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Problem in CALC with date 1st of May 1921
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: erkkijoen...@yahoo.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.1.5.3 release
 Component: Libreoffice
   Product: LibreOffice

When writing in CALC the date May 1st 1921 (1.5.1921) CALC shows 30.4.1921

When making a list of dates, Calc shows 2 times 30.4.1921
26.04.1921
27.04.1921
28.04.1921
29.04.1921
30.04.1921
30.04.1921
02.05.1921
03.05.1921
04.05.1921

24. huhtikuuta 1921
25. huhtikuuta 1921
26. huhtikuuta 1921
27. huhtikuuta 1921
28. huhtikuuta 1921
29. huhtikuuta 1921
30. huhtikuuta 1921
30. huhtikuuta 1921
2. toukokuuta 1921
3. toukokuuta 1921
4. toukokuuta 1921
5. toukokuuta 1921

-- 
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 75376] Documents with fields have weird characters

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75376

Charles tansta...@libertytrek.org changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |FIXED

--- Comment #7 from Charles tansta...@libertytrek.org ---
@Stuart

I agree, but you seem to be missing my two main points as to why I reopened the
bug...

1. This is a critical BLOCKER for the CURRENT RELEASE, version (4.2.1), and

2. When you closed the bug, you did so saying that is was fixed on the 4.3+
branch,m which to me says the fix will NOT be in the next release versions
(4.2.2).

Setting 'works for me' is contrary to your confirmation of the bug.

It does NOT work for you with the build the bug is reported for.

Setting RESOLVED  FIXED in 4.2.2 branch.

In my opinion, an emergency new release (4.2.1.2?) should be issued whenever
something like this is encountered (in this case only for the Windows version),
otherwise lots more people will stumble into this mess until the next release
is posted.

-- 
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 75376] Documents with fields have weird characters

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75376

--- Comment #8 from paolo_debort...@yahoo.com ---
it doesn't show the problem on my system  (LO 4.2.0.4 italian on linux ubuntu).

-- 
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 75376] Documents with fields have weird characters

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75376

--- Comment #9 from paolo_debort...@yahoo.com ---
Created attachment 94607
  -- https://bugs.freedesktop.org/attachment.cgi?id=94607action=edit
problem doesn't show

-- 
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 71290] [FILEOPEN] arrows is missing in diagrams. MS Office 2007 document.

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=71290

--- Comment #5 from Alexandr alexpik...@gmail.com ---
Created attachment 94608
  -- https://bugs.freedesktop.org/attachment.cgi?id=94608action=edit
Screenshot with MS Word 2007sp3

Hello, Nikolay.
I have tried the test document with MS Word 2007 on Win7 and MS Word 2010 on
Win 2003. I attach a screenshot with MS Word 2007. The picture is the same as
in LO Writer 4.2.0. Could you recheck the test file in MS Office?

-- 
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 75404] Problem in CALC with date 1st of May 1921

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75404

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 Erkki, thanks for reporting.

Please could you verified if it is same issue as here:
https://bugs.freedesktop.org/show_bug.cgi?id=74869

-- 
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 75369] Applications in the Libreoffice suite not installed appear the same as those that are installed when viewing in the startcenter.

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75369

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

  Attachment #94568|text/plain  |image/png
  mime type||

-- 
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 75406] New: Wrong preview with table

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75406

  Priority: medium
Bug ID: 75406
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Wrong preview with table
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: ddora...@dmaths.org
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.2.1.1 rc
 Component: Writer
   Product: LibreOffice

Created attachment 94609
  -- https://bugs.freedesktop.org/attachment.cgi?id=94609action=edit
File for test

I get wrong borderline when I see a preview.
But borderline are right for printing.
Try with the attached file.

It does not appear with Lo 4.2.0.4

-- 
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 53320] LibreOffice 3.6 will not open on OS X 10.7.5 and Mountain Lion with unidentified developer error - GateKeeper

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53320

Foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #23 from Foss f...@openmailbox.org ---
Just verified in QA IRC that language packs should be signed.

So all is good and this is WORKSFORME °/

-- 
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 42082] [META] Make LibreOffice shine and glow on OS X

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42082

Bug 42082 depends on bug 53320, which changed state.

Bug 53320 Summary: LibreOffice 3.6 will not open on OS X 10.7.5 and Mountain 
Lion with unidentified developer error - GateKeeper
https://bugs.freedesktop.org/show_bug.cgi?id=53320

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |WORKSFORME

-- 
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 75372] EDITING: Error with defined names after coping sheets

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75372

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||mari...@miguelangel.mobi
 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 75369] [StartCenter] Non-installed applications aren’t greyed out

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75369

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|NOTABUG |---
 CC||f...@libreoffice.org
Summary|Applications in the |[StartCenter] Non-installed
   |Libreoffice suite not   |applications aren’t greyed
   |installed appear the same   |out
   |as those that are installed |
   |when viewing in the |
   |startcenter.|

--- Comment #2 from Adolfo Jayme f...@libreoffice.org ---
(Editing this bug’s title for improved clarity and reopening)

-- 
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 68071] Editing: Non-printing Characters are Not Set Apart from Text

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=68071

Adolfo Jayme f...@libreoffice.org changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #12 from Adolfo Jayme f...@libreoffice.org ---
(In reply to comment #11)
 Also, should that be a new bug or should we re-open this one?

Report that separately. This bug, as described in its summary, is fixed. Don’t
mess with that.

-- 
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 75407] New: com.sun.star.util.PathSubstitution do'nt retrieve the installation path

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75407

  Priority: medium
Bug ID: 75407
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: com.sun.star.util.PathSubstitution do'nt retrieve
the installation path
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: ddora...@dmaths.org
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.2.1.1 rc
 Component: BASIC
   Product: LibreOffice

Try the bellow code.
I do'nt get the right path
I got : /opt/libreoffice4.2/program/.. instead of /opt/libreoffice4.2

Sub Essai
Print GetRepertoirePath(inst) 
End Sub


Function GetRepertoirePath(sInstPath as String) as String 'donne le répertoire
correspondant
Dim  oPathSubstSrv as Object
Dim sPath as String
sInstPath = $(+sInstPath+)
  oPathSubstSrv = createUnoService(com.sun.star.util.PathSubstitution)
  sPath = ConvertFromUrl(oPathSubstSrv.getSubstituteVariableValue(sInstPath))
GetRepertoirePath = sPath
End Function

-- 
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 75408] New: Formula in writer is shrinked instead of keeping same size when changing border space in writer style

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75408

  Priority: medium
Bug ID: 75408
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Formula in writer is shrinked instead of keeping same
size when changing border space in writer style
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: pierre.choffar...@free.fr
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.2.1.1 rc
 Component: Formula Editor
   Product: LibreOffice

1 Create a new formula in writer for example 1+1=1
2 chose modify frame style named formula in stylist (F11)
3 choose tab border, add a border and change border spacing from 0 to 0,5cm
4 OK

-- The fromula frame as the same size and the forumula is shrinked so you
can't see it (LO 4.2.1.1)

expected behavior :
The formula frame is increased buy 0,5cm in each direction, and the formula
keep the same size (LO 4.1.5)

So it's a 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 75376] Documents with fields have weird characters

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=75376

--- Comment #10 from Charles tansta...@libertytrek.org ---
@paulo

No offense, but why would you bother reporting that you don't see the bug on an
EARLIER VERSION THAT THE BUG REPORTED SPECIFICALLY SAID DOES NOT EXHIBIT THE
PROBLEM???

-- 
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 62355] Formula objects with widehat/widevector in Writer have wrong size, top of the hat/vector is cropped

2014-02-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62355

--- Comment #45 from Dorange-Pattoret Didier ddora...@dmaths.org ---
Created attachment 94612
  -- https://bugs.freedesktop.org/attachment.cgi?id=94612action=edit
With LO

-- 
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   >