[Libreoffice-commits] .: Branch 'libreoffice-3-4-5' - sw/source

2012-01-03 Thread Petr Mladek
 sw/source/ui/app/applab.cxx |   10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

New commits:
commit 7f978af6476d73246d7cf6c29b48e88a7465f44e
Author: Winfried Donkers w.donk...@dci-electronics.nl
Date:   Fri Dec 9 17:44:20 2011 +0100

fdo#36874: Label PRINTING misplaced on paper sheet

Signed-off-by: Petr Mladek pmla...@suse.cz
Signed-off-by: Bjoern Michaelsen bjoern.michael...@canonical.com
Signed-off-by: Lubos Lunak l.lu...@suse.cz

diff --git a/sw/source/ui/app/applab.cxx b/sw/source/ui/app/applab.cxx
index 00809fe..f1f8536 100644
--- a/sw/source/ui/app/applab.cxx
+++ b/sw/source/ui/app/applab.cxx
@@ -266,10 +266,14 @@ void SwModule::InsertLab(SfxRequest rReq, sal_Bool 
bLabel)
 
 aDesc.SetUseOn(nsUseOnPage::PD_ALL);   
// Site numbering
 
+// fix (fdo36874) revised page size calculation
 // Set page size
-rFmt.SetFmtAttr(SwFmtFrmSize(ATT_FIX_SIZE,
-rItem.lLeft  + rItem.nCols * 
rItem.lHDist + MINLAY,
-rItem.lUpper + rItem.nRows * 
rItem.lVDist + MINLAY));
+long lPgWidth, lPgHeight;
+lPgWidth = (((rItem.lLeft  + (rItem.nCols - 1) * rItem.lHDist + 
rItem.lWidth + rItem.lLeft)  MINLAY) ?
+(rItem.lLeft  + (rItem.nCols - 1) * rItem.lHDist + 
rItem.lWidth + rItem.lLeft) : MINLAY);
+lPgHeight = (((rItem.lUpper + (rItem.nRows - 1) * rItem.lVDist + 
rItem.lHeight + rItem.lUpper)  MINLAY) ?
+(rItem.lUpper + (rItem.nRows - 1) * rItem.lVDist + 
rItem.lHeight + rItem.lUpper) : MINLAY);
+rFmt.SetFmtAttr( SwFmtFrmSize( ATT_FIX_SIZE, lPgWidth, lPgHeight 
));
 
 // Numbering type
 SvxNumberType aType;
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-4-5' - writerfilter/source

2012-01-03 Thread Petr Mladek
 writerfilter/source/dmapper/DomainMapper.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 850b17faca7d7aba1c5e0f7deb452825063e06ce
Author: Miklos Vajna vmik...@frugalware.org
Date:   Wed Jun 8 19:47:31 2011 +0200

dmapper: fix NS_sprm::LN_CFDStrike with zero nIntValue

Signed-off-by: Petr Mladek pmla...@suse.cz
Signed-off-by: Lubos Lunak l.lu...@suse.cz
Signed-off-by: Cedric Bosdonnat cbosdon...@suse.com

diff --git a/writerfilter/source/dmapper/DomainMapper.cxx 
b/writerfilter/source/dmapper/DomainMapper.cxx
index f8b32c8..a182ee7 100644
--- a/writerfilter/source/dmapper/DomainMapper.cxx
+++ b/writerfilter/source/dmapper/DomainMapper.cxx
@@ -1968,7 +1968,7 @@ void DomainMapper::sprmWithProps( Sprm rSprm, 
PropertyMapPtr rContext, SprmType
 break;
 case NS_sprm::LN_CFDStrike : /*sprmCFDStrike double strike 
through*/
 rContext-Insert(ePropertyId, true,
- uno::makeAny( 
awt::FontStrikeout::DOUBLE ) );
+ uno::makeAny( nIntValue ? 
awt::FontStrikeout::DOUBLE : awt::FontStrikeout::NONE ) );
 break;
 case NS_sprm::LN_CFOutline: /*sprmCFOutline*/
 case NS_sprm::LN_CFShadow: /*sprmCFShadow*/
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-4-5' - svx/source

2012-01-03 Thread Petr Mladek
 svx/source/table/svdotable.cxx |2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 47fad446a73a27e3335b98745cf77ec9e8065f5f
Author: Christian Lippka ORACLE christian.lip...@oracle.com
Date:   Tue Dec 6 03:28:41 2011 +0100

impress210: #i117319# disconnect and reconnect to table style on change 
model in SdrTableObjImpl

impress210: #i117319# disconnect and reconnect to table style on change 
model in SdrTableObjImpl

Signed-off-by: Petr Mladek pmla...@suse.cz
Signed-off-by: Lubos Lunak l.lu...@suse.cz
Signed-off-by: Radek Doulík r...@novell.com

diff --git a/svx/source/table/svdotable.cxx b/svx/source/table/svdotable.cxx
index b2c39fc..ef4b1a6 100644
--- a/svx/source/table/svdotable.cxx
+++ b/svx/source/table/svdotable.cxx
@@ -332,6 +332,7 @@ void SdrTableObjImpl::operator=( const SdrTableObjImpl 
rSource )
 void SdrTableObjImpl::SetModel(SdrModel* /*pOldModel*/, SdrModel* pNewModel)
 {
 // try to find new table style
+disconnectTableStyle();
 
 Reference XIndexAccess  xNewTableStyle;
 if( mxTableStyle.is() ) try
@@ -362,6 +363,7 @@ void SdrTableObjImpl::SetModel(SdrModel* /*pOldModel*/, 
SdrModel* pNewModel)
 
 mxTableStyle = xNewTableStyle;
 
+connectTableStyle();
 update();
 }
 
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: sw/source

2012-01-03 Thread Miklos Vajna
 sw/source/filter/ww8/rtfexportfilter.cxx |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit 83fbebfea32b27cd722466607aa978244ac53575
Author: Miklos Vajna vmik...@frugalware.org
Date:   Tue Jan 3 12:22:45 2012 +0100

fdo#37161 RTF: update layout (if present) before export

diff --git a/sw/source/filter/ww8/rtfexportfilter.cxx 
b/sw/source/filter/ww8/rtfexportfilter.cxx
index 7c974ee..49329f8 100644
--- a/sw/source/filter/ww8/rtfexportfilter.cxx
+++ b/sw/source/filter/ww8/rtfexportfilter.cxx
@@ -31,6 +31,7 @@
 #include rtfexport.hxx
 
 #include docsh.hxx
+#include editsh.hxx
 #include unotxdoc.hxx
 
 #include comphelper/mediadescriptor.hxx
@@ -72,6 +73,12 @@ sal_Bool RtfExportFilter::filter( const uno::Sequence 
beans::PropertyValue  a
 return sal_False;
 }
 
+// fdo#37161 - update layout (if present), for SwWriteTable
+ViewShell* pViewShell = NULL;
+pDoc-GetEditShell(pViewShell);
+if (pViewShell != NULL)
+pViewShell-CalcLayout();
+
 // get SwPaM*
 // we get SwPaM for the entire document; copypaste is handled internally, 
not via UNO
 SwPaM aPam( pDoc-GetNodes().GetEndOfContent() );
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-5' - sw/source

2012-01-03 Thread Miklos Vajna
 sw/source/filter/ww8/rtfexportfilter.cxx |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit 99fccadd08d41e8a4abcc062d075886d4a0910be
Author: Miklos Vajna vmik...@frugalware.org
Date:   Tue Jan 3 12:22:45 2012 +0100

fdo#37161 RTF: update layout (if present) before export

(cherry picked from commit 83fbebfea32b27cd722466607aa978244ac53575)

diff --git a/sw/source/filter/ww8/rtfexportfilter.cxx 
b/sw/source/filter/ww8/rtfexportfilter.cxx
index 7c59694..257c43b 100644
--- a/sw/source/filter/ww8/rtfexportfilter.cxx
+++ b/sw/source/filter/ww8/rtfexportfilter.cxx
@@ -31,6 +31,7 @@
 #include rtfexport.hxx
 
 #include docsh.hxx
+#include editsh.hxx
 #include unotxdoc.hxx
 
 #include comphelper/mediadescriptor.hxx
@@ -72,6 +73,12 @@ sal_Bool RtfExportFilter::filter( const uno::Sequence 
beans::PropertyValue  a
 return sal_False;
 }
 
+// fdo#37161 - update layout (if present), for SwWriteTable
+ViewShell* pViewShell = NULL;
+pDoc-GetEditShell(pViewShell);
+if (pViewShell != NULL)
+pViewShell-CalcLayout();
+
 // get SwPaM*
 // we get SwPaM for the entire document; copypaste is handled internally, 
not via UNO
 SwPaM aPam( pDoc-GetNodes().GetEndOfContent() );
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: sw/source

2012-01-03 Thread Miklos Vajna
 sw/source/filter/ww8/docxexportfilter.cxx |7 +++
 1 file changed, 7 insertions(+)

New commits:
commit 867eed75e6f3e742ac383b65659cc7e98fa1c83c
Author: Miklos Vajna vmik...@frugalware.org
Date:   Tue Jan 3 12:43:19 2012 +0100

Related: fdo#37161 update layout (if present) before DOCX export

diff --git a/sw/source/filter/ww8/docxexportfilter.cxx 
b/sw/source/filter/ww8/docxexportfilter.cxx
index 38faf1c..a780c5c 100644
--- a/sw/source/filter/ww8/docxexportfilter.cxx
+++ b/sw/source/filter/ww8/docxexportfilter.cxx
@@ -32,6 +32,7 @@
 #include docxexport.hxx
 
 #include docsh.hxx
+#include editsh.hxx
 #include pam.hxx
 #include unotxdoc.hxx
 
@@ -62,6 +63,12 @@ bool DocxExportFilter::exportDocument()
 if ( !pDoc )
 return false;
 
+// update layout (if present), for SwWriteTable
+ViewShell* pViewShell = NULL;
+pDoc-GetEditShell(pViewShell);
+if (pViewShell != NULL)
+pViewShell-CalcLayout();
+
 // get SwPaM*
 // FIXME so far we get SwPaM for the entire document; probably we should
 // be able to output just the selection as well - though no idea how to
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: README.cross

2012-01-03 Thread Tor Lillqvist
 README.cross |   42 +-
 1 file changed, 29 insertions(+), 13 deletions(-)

New commits:
commit 3ef7293919e417c2fb2fce414fb64b1f5b4c244b
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Tue Jan 3 13:48:29 2012 +0200

More Android notes

diff --git a/README.cross b/README.cross
index ebd08b7..709838b 100644
--- a/README.cross
+++ b/README.cross
@@ -367,11 +367,20 @@ CXX_FOR_BUILD=ccache g++
 --without-helppack-integration
 --without-myspell-dicts
 
-There is no app you could run yet that would use LibreOffice code,
-but you can build some non-interactive unit tests and run them on the
-emulator (or, presumably, on a device, although I haven't tested that
-as I don't have any Android device...) The simple unit tests will
-succeed, the complex one still fails.
+There is no interactive end-user app you could run yet that would
+use LibreOffice code, but you can build some non-interactive unit
+tests and run them on the emulator (or, presumably,
+on a device, although I haven't tested that as I don't have any
+Android device...)  The simple unit tests will succeed, the complex
+one still fails. 
+
+These unit tests *are* proper apps from Android'd point of view, but
+they don't have any GUI and thus don't take part in the normal Android
+message passing and Android thinks they are stuck and offers to kill
+them...
+
+The activity used for these apps is in android/Bootstrap. See
+README.Android.
 
 To build the complex unit test (for Calc functionality; invokes the
 ucalc unit test code from sc) source the environment (. Env.Host.sh)
@@ -380,11 +389,11 @@ completely manually written, this stuff is so 
experimental it doesn't
 make sense yet to try to integrate with the normal gbuild
 mechanism.
 
-Then to run it, make install followed by make run. You most likely
-want to have an adb logcat running in another window, and you
-probably also want to have set the stdout and stderr of app processes
-to be redirected to logcat (adb shell stop; adb shell setprop
-log.redirect-stdio true; adb shell start).
+Then to run the unit test, do make install followed by make
+run. You most likely want to have an adb logcat running in another
+window, and you probably also want to have set the stdout and stderr
+of app processes to be redirected to logcat (adb shell stop; adb
+shell setprop log.redirect-stdio true; adb shell start).
 
 Unfortunately you might notice that the command line passed to adb
 shell am start is too long (actually, not command line as such, but
@@ -392,9 +401,11 @@ the length of the so-called extra arguments passed to 
the action, or
 something like that, see Android bug
 http://code.google.com/p/android/issues/detail?id=23351 , so you need
 to shorten it somehow... for instance by creating a symlink to
-/data/data/org.libreoffice.android.qa.sc in /system and using that
-shorter path snippet in all places instead of the longer one on the
-adb shell am start command line then...
+/data/data/org.libreoffice.android.qa.sc in /system: adb remount; adb
+shell ln -s /data/data/org.libreoffice.android.qa.sc /system/sc and
+then use that shorter path /system/sc snippet in all places instead of
+the longer /data/data/org.libreoffice.android.qa.sc on the adb shell
+am start command line.
 
 To debug, do manually what make run would do, adding args -e
 lo-main-delay 20 to the command line, and when the app has started,
@@ -402,6 +413,11 @@ run ndk-gdb. Unfortunately the gdb in NDK r7 is broken, 
use the one in
 the NDK build with newer versions of gcc and gdb from
 http://code.google.com/p/mingw-and-ndk/ instead.
 
+Running strace on the unit test in progress is often useful to find
+out what is going wrong. Pass something like -e lo-strace '-tt -f -e
+trace=file,process,network -o /system/sc/strace.out' to the am start
+command line.
+
 
 PowerPC Mac OS X
 
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: oox/source

2012-01-03 Thread Muthu Subramanian
 oox/source/drawingml/textparagraphpropertiescontext.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 82e385c7e0b466cd1106e19cdbb6dc15b2464811
Author: Muthu Subramanian sumu...@suse.com
Date:   Tue Jan 3 18:07:24 2012 +0530

n734734: Line Spacing is used from previous values.

diff --git a/oox/source/drawingml/textparagraphpropertiescontext.cxx 
b/oox/source/drawingml/textparagraphpropertiescontext.cxx
index 2164bf2..9d06ae1 100644
--- a/oox/source/drawingml/textparagraphpropertiescontext.cxx
+++ b/oox/source/drawingml/textparagraphpropertiescontext.cxx
@@ -148,6 +148,9 @@ 
TextParagraphPropertiesContext::~TextParagraphPropertiesContext()
 PropertyMap rPropertyMap( 
mrTextParagraphProperties.getTextParagraphPropertyMap() );
 if ( maLineSpacing.bHasValue )
 rPropertyMap[ PROP_ParaLineSpacing ] = maLineSpacing.toLineSpacing();
+else
+rPropertyMap[ PROP_ParaLineSpacing ] = 
::com::sun::star::style::LineSpacing( 
::com::sun::star::style::LineSpacingMode::PROP, 100 );
+
 
 ::std::list TabStop ::size_type nTabCount = maTabList.size();
 if( nTabCount != 0 )
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-5' - oox/source

2012-01-03 Thread Muthu Subramanian
 oox/source/drawingml/textparagraphpropertiescontext.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit b90236d3a516d8b7236ffc10a4ae5b26ac127a53
Author: Muthu Subramanian sumu...@suse.com
Date:   Tue Jan 3 18:07:24 2012 +0530

n734734: Line Spacing is used from previous values.

diff --git a/oox/source/drawingml/textparagraphpropertiescontext.cxx 
b/oox/source/drawingml/textparagraphpropertiescontext.cxx
index 0bee276..d0d1f08 100644
--- a/oox/source/drawingml/textparagraphpropertiescontext.cxx
+++ b/oox/source/drawingml/textparagraphpropertiescontext.cxx
@@ -148,6 +148,9 @@ 
TextParagraphPropertiesContext::~TextParagraphPropertiesContext()
 PropertyMap rPropertyMap( 
mrTextParagraphProperties.getTextParagraphPropertyMap() );
 if ( maLineSpacing.bHasValue )
 rPropertyMap[ PROP_ParaLineSpacing ] = maLineSpacing.toLineSpacing();
+else
+rPropertyMap[ PROP_ParaLineSpacing ] = 
::com::sun::star::style::LineSpacing( 
::com::sun::star::style::LineSpacingMode::PROP, 100 );
+
 
 ::std::list TabStop ::size_type nTabCount = maTabList.size();
 if( nTabCount != 0 )
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: codemaker/source

2012-01-03 Thread Stephan Bergmann
 codemaker/source/cppumaker/cpputype.cxx |   45 ++--
 1 file changed, 20 insertions(+), 25 deletions(-)

New commits:
commit df68f63f0b24bae202b6526486d26a8402b16341
Author: Stephan Bergmann sberg...@redhat.com
Date:   Tue Jan 3 13:51:32 2012 +0100

Leak comprehensive type descriptions to avoid problems at exit.

diff --git a/codemaker/source/cppumaker/cpputype.cxx 
b/codemaker/source/cppumaker/cpputype.cxx
index 977c8b3..dc238fc 100644
--- a/codemaker/source/cppumaker/cpputype.cxx
+++ b/codemaker/source/cppumaker/cpputype.cxx
@@ -715,10 +715,10 @@ void CppuType::dumpComprehensiveGetCppuType(FileStream o)
 
 OString sType = m_typeName.copy(m_typeName.lastIndexOf('/') + 1);
 OString sStaticTypeClass = the + sType + Type;
-o  indent()  struct   sStaticTypeClass   : public 
rtl::StaticWithInit ::com::sun::star::uno::Type,   sStaticTypeClass   
\n;
+o  indent()  struct   sStaticTypeClass   : public 
rtl::StaticWithInit ::com::sun::star::uno::Type *,   sStaticTypeClass   
\n;
 o  indent()  {\n;
 inc();
-o  indent()  ::com::sun::star::uno::Type operator()() const\n;
+o  indent()  ::com::sun::star::uno::Type * operator()() const\n;
 o  indent()  {\n;
 inc();
 
@@ -807,9 +807,8 @@ void CppuType::dumpComprehensiveGetCppuType(FileStream o)
 o  indent()  typelib_typedescription_release( pTD );\n
indent()  // End inline typedescription generation\n\n;
 
-o  indent()  ::com::sun::star::uno::Type the_staticType( 
-   getTypeClass(m_typeName)  , sTypeName );\n;
-o  indent()  return the_staticType;\n;
+o  indent()  return new ::com::sun::star::uno::Type( 
+   getTypeClass(m_typeName)  , sTypeName ); // leaked\n;
 
 dec();
 o  indent()  }\n;
@@ -824,7 +823,7 @@ void CppuType::dumpComprehensiveGetCppuType(FileStream o)
 o   }\n\n;
 
 dumpGetCppuTypePreamble(o);
-o   indent()  return detail::  sStaticTypeClass  ::get();\n;
+o   indent()  return *detail::  sStaticTypeClass  ::get();\n;
 dumpGetCppuTypePostamble(o);
 }
 
@@ -1633,10 +1632,10 @@ void 
InterfaceType::dumpComprehensiveGetCppuType(FileStream o)
 
 OString sType = m_typeName.copy(m_typeName.lastIndexOf('/') + 1);
 OString sStaticTypeClass = the + sType + Type;
-o  indent()  struct   sStaticTypeClass   : public 
rtl::StaticWithInit ::com::sun::star::uno::Type,   sStaticTypeClass   
\n;
+o  indent()  struct   sStaticTypeClass   : public 
rtl::StaticWithInit ::com::sun::star::uno::Type *,   sStaticTypeClass   
\n;
 o  indent()  {\n;
 inc();
-o  indent()  ::com::sun::star::uno::Type operator()() const\n;
+o  indent()  ::com::sun::star::uno::Type * operator()() const\n;
 o  indent()  {\n;
 
 inc();
@@ -1710,10 +1709,8 @@ void 
InterfaceType::dumpComprehensiveGetCppuType(FileStream o)
(typelib_typedescription_release( (typelib_TypeDescription*)pTD
);\n\n);
 
-o  indent()  ::com::sun::star::uno::Type the_staticType( 
-   getTypeClass(m_typeName)  , sTypeName );\n;
-
-o  indent()  return the_staticType;\n;
+o  indent()  return new ::com::sun::star::uno::Type( 
+   getTypeClass(m_typeName)  , sTypeName ); // leaked\n;
 
 dec();
 
@@ -1728,7 +1725,7 @@ void 
InterfaceType::dumpComprehensiveGetCppuType(FileStream o)
 o   }\n\n;
 
 dumpGetCppuTypePreamble(o);
-o   indent()  const ::com::sun::star::uno::Type rRet = detail::  
sStaticTypeClass  ::get();\n;
+o   indent()  const ::com::sun::star::uno::Type rRet = *detail::  
sStaticTypeClass  ::get();\n;
 
 o  indent()  // End inline typedescription generation\n;
 
@@ -2915,7 +2912,7 @@ void 
StructureType::dumpComprehensiveGetCppuType(FileStream  out)
 out  indent();
 if (isPolymorphic())
 dumpTemplateHead(out);
-out  struct   sStaticTypeClass   : public rtl::StaticWithInit 
::com::sun::star::uno::Type, ;
+out  struct   sStaticTypeClass   : public rtl::StaticWithInit 
::com::sun::star::uno::Type *, ;
 out  sStaticTypeClass;
 if (isPolymorphic())
 dumpTemplateParameters(out);
@@ -2923,7 +2920,7 @@ void 
StructureType::dumpComprehensiveGetCppuType(FileStream  out)
 
 out  indent()  {\n;
 inc();
-out  indent()  ::com::sun::star::uno::Type operator()() const\n;
+out  indent()  ::com::sun::star::uno::Type * operator()() const\n;
 out  indent()  {\n;
 
 inc();
@@ -3050,9 +3047,8 @@ void 
StructureType::dumpComprehensiveGetCppuType(FileStream  out)
 out  indent()  ::typelib_typedescription_register(the_newType);\n;
 out  indent()  ::typelib_typedescription_release(the_newType);\n;
 
-out  indent()  ::com::sun::star::uno::Type the_staticType(
- getTypeClass(m_typeName)  , the_name);\n;
-out  indent()  return the_staticType;\n;
+out  indent()  return new ::com::sun::star::uno::Type(
+ getTypeClass(m_typeName)  , the_name); // leaked\n;
 dec();
 out  indent()  }\n;
 dec();
@@ -3065,7 +3061,7 @@ 

[Libreoffice-commits] .: Branch 'libreoffice-3-4' - filter/inc filter/source

2012-01-03 Thread Petr Mladek
 filter/inc/filter/msfilter/msdffimp.hxx |   17 +++--
 filter/source/msfilter/msdffimp.cxx |   40 +++-
 2 files changed, 48 insertions(+), 9 deletions(-)

New commits:
commit e7421d2e4d6426ba9b120c52abb2a37f95207943
Author: Caolán McNamara caol...@redhat.com
Date:   Wed Dec 21 17:35:39 2011 +0100

avoid looping on busted escher records

Signed-off-by: Petr Mladek pmla...@suse.cz

diff --git a/filter/inc/filter/msfilter/msdffimp.hxx 
b/filter/inc/filter/msfilter/msdffimp.hxx
index c1a0294..9344084 100644
--- a/filter/inc/filter/msfilter/msdffimp.hxx
+++ b/filter/inc/filter/msfilter/msdffimp.hxx
@@ -77,9 +77,20 @@ public:
 bool IsContainer() const { return nRecVer == DFF_PSFLAG_CONTAINER; }
 sal_uLongGetRecBegFilePos() const { return nFilePos; }
 sal_uLongGetRecEndFilePos() const { return nFilePos + 
DFF_COMMON_RECORD_HEADER_SIZE + nRecLen; }
-void SeekToEndOfRecord(SvStream rIn) const { rIn.Seek(nFilePos + 
DFF_COMMON_RECORD_HEADER_SIZE + nRecLen ); }
-void SeekToContent(SvStream rIn) const { rIn.Seek(nFilePos + 
DFF_COMMON_RECORD_HEADER_SIZE ); }
-void SeekToBegOfRecord(SvStream rIn) const { rIn.Seek( nFilePos ); }
+bool SeekToEndOfRecord(SvStream rIn) const
+{
+sal_Size nPos = nFilePos + DFF_COMMON_RECORD_HEADER_SIZE + nRecLen;
+return nPos == rIn.Seek(nPos);
+}
+bool SeekToContent(SvStream rIn) const
+{
+sal_Size nPos = nFilePos + DFF_COMMON_RECORD_HEADER_SIZE;
+return nPos == rIn.Seek(nPos);
+}
+bool SeekToBegOfRecord(SvStream rIn) const
+{
+return nFilePos == rIn.Seek(nFilePos);
+}
 
 MSFILTER_DLLPUBLIC friend SvStream operator(SvStream rIn, 
DffRecordHeader rRec);
 
diff --git a/filter/source/msfilter/msdffimp.cxx 
b/filter/source/msfilter/msdffimp.cxx
index aabba56..5764c66 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -156,6 +156,11 @@ using namespace container  ;
 static sal_uInt32 nMSOleObjCntr = 0;
 #define MSO_OLE_Obj MSO_OLE_Obj
 
+/*/
+bool lclGood(const SvStream rStream)
+{
+return rStream.GetError() == 0  !rStream.IsEof();
+}
 
 /*/
 sal_Bool Impl_OlePres::Read( SvStream  rStm )
@@ -3545,7 +3550,7 @@ sal_Bool SvxMSDffManager::SeekToShape( SvStream rSt, 
void* /* pClientData */, s
 rSt  aEscherF002Hd;
 sal_uLong nEscherF002End = aEscherF002Hd.GetRecEndFilePos();
 DffRecordHeader aEscherObjListHd;
-while ( rSt.Tell()  nEscherF002End )
+while (lclGood(rSt)  rSt.Tell()  nEscherF002End)
 {
 rSt  aEscherObjListHd;
 if ( aEscherObjListHd.nRecVer != 0xf )
@@ -3579,9 +3584,14 @@ bool SvxMSDffManager::SeekToRec( SvStream rSt, 
sal_uInt16 nRecId, sal_uLong nMa
 bool bRet = sal_False;
 sal_uLong nFPosMerk = rSt.Tell(); // FilePos merken fuer ggf. spaetere 
Restauration
 DffRecordHeader aHd;
+// make sure that we move somewhere with every iteration
+sal_Size nStPos;
 do
 {
+nStPos = rSt.Tell();
 rSt  aHd;
+if (!lclGood(rSt))
+break;
 if ( aHd.nRecType == nRecId )
 {
 if ( nSkipCount )
@@ -3596,9 +3606,13 @@ bool SvxMSDffManager::SeekToRec( SvStream rSt, 
sal_uInt16 nRecId, sal_uLong nMa
 }
 }
 if ( !bRet )
-aHd.SeekToEndOfRecord( rSt );
+{
+bool bSeekSuccess = aHd.SeekToEndOfRecord( rSt );
+if (!bSeekSuccess)
+break;
+}
 }
-while ( rSt.GetError() == 0  rSt.Tell()  nMaxFilePos  !bRet );
+while ( lclGood(rSt)  rSt.Tell()  nMaxFilePos  rSt.Tell() != nStPos 
 !bRet );
 if ( !bRet )
 rSt.Seek( nFPosMerk ); // FilePos restaurieren
 return bRet;
@@ -6187,10 +6201,18 @@ void SvxMSDffManager::GetFidclData( long nOffsDggL )
 
 if ( mnIdClusters--  2 )
 {
-if ( aDggAtomHd.nRecLen == ( mnIdClusters * sizeof( FIDCL ) + 
16 ) )
+const sal_Size nFIDCLsize = sizeof(sal_uInt32) * 2;
+if ( aDggAtomHd.nRecLen == ( mnIdClusters * nFIDCLsize + 16 ) )
 {
+sal_Size nStCtrlCurr = rStCtrl.Tell();
+sal_Size nStCtrlEnd = rStCtrl.Seek(STREAM_SEEK_TO_END);
+sal_Size nMaxEntriesPossible = ( nStCtrlEnd - nStCtrlCurr 
) / nFIDCLsize;
+rStCtrl.Seek(nStCtrlCurr);
+mnIdClusters = std::min(nMaxEntriesPossible, 
static_castsal_Size(mnIdClusters));
+
 mpFidcls = new FIDCL[ mnIdClusters ];
-for ( sal_uInt32 i = 0; i  mnIdClusters; i++ )
+memset(mpFidcls, 0, mnIdClusters * sizeof(FIDCL));

[Libreoffice-commits] .: Branch 'libreoffice-3-4-5' - filter/inc filter/source

2012-01-03 Thread Petr Mladek
 filter/inc/filter/msfilter/msdffimp.hxx |   17 +++--
 filter/source/msfilter/msdffimp.cxx |   40 +++-
 2 files changed, 48 insertions(+), 9 deletions(-)

New commits:
commit 0623e3db604ab3504f5f074dcfddbb47b5b995e9
Author: Caolán McNamara caol...@redhat.com
Date:   Wed Dec 21 17:35:39 2011 +0100

avoid looping on busted escher records

Signed-off-by: Petr Mladek pmla...@suse.cz
Signed-off-by: Stephan Bergmann sberg...@redhat.com
Signed-off-by: Lubos Lunak llu...@novell.com

diff --git a/filter/inc/filter/msfilter/msdffimp.hxx 
b/filter/inc/filter/msfilter/msdffimp.hxx
index c1a0294..9344084 100644
--- a/filter/inc/filter/msfilter/msdffimp.hxx
+++ b/filter/inc/filter/msfilter/msdffimp.hxx
@@ -77,9 +77,20 @@ public:
 bool IsContainer() const { return nRecVer == DFF_PSFLAG_CONTAINER; }
 sal_uLongGetRecBegFilePos() const { return nFilePos; }
 sal_uLongGetRecEndFilePos() const { return nFilePos + 
DFF_COMMON_RECORD_HEADER_SIZE + nRecLen; }
-void SeekToEndOfRecord(SvStream rIn) const { rIn.Seek(nFilePos + 
DFF_COMMON_RECORD_HEADER_SIZE + nRecLen ); }
-void SeekToContent(SvStream rIn) const { rIn.Seek(nFilePos + 
DFF_COMMON_RECORD_HEADER_SIZE ); }
-void SeekToBegOfRecord(SvStream rIn) const { rIn.Seek( nFilePos ); }
+bool SeekToEndOfRecord(SvStream rIn) const
+{
+sal_Size nPos = nFilePos + DFF_COMMON_RECORD_HEADER_SIZE + nRecLen;
+return nPos == rIn.Seek(nPos);
+}
+bool SeekToContent(SvStream rIn) const
+{
+sal_Size nPos = nFilePos + DFF_COMMON_RECORD_HEADER_SIZE;
+return nPos == rIn.Seek(nPos);
+}
+bool SeekToBegOfRecord(SvStream rIn) const
+{
+return nFilePos == rIn.Seek(nFilePos);
+}
 
 MSFILTER_DLLPUBLIC friend SvStream operator(SvStream rIn, 
DffRecordHeader rRec);
 
diff --git a/filter/source/msfilter/msdffimp.cxx 
b/filter/source/msfilter/msdffimp.cxx
index aabba56..5764c66 100644
--- a/filter/source/msfilter/msdffimp.cxx
+++ b/filter/source/msfilter/msdffimp.cxx
@@ -156,6 +156,11 @@ using namespace container  ;
 static sal_uInt32 nMSOleObjCntr = 0;
 #define MSO_OLE_Obj MSO_OLE_Obj
 
+/*/
+bool lclGood(const SvStream rStream)
+{
+return rStream.GetError() == 0  !rStream.IsEof();
+}
 
 /*/
 sal_Bool Impl_OlePres::Read( SvStream  rStm )
@@ -3545,7 +3550,7 @@ sal_Bool SvxMSDffManager::SeekToShape( SvStream rSt, 
void* /* pClientData */, s
 rSt  aEscherF002Hd;
 sal_uLong nEscherF002End = aEscherF002Hd.GetRecEndFilePos();
 DffRecordHeader aEscherObjListHd;
-while ( rSt.Tell()  nEscherF002End )
+while (lclGood(rSt)  rSt.Tell()  nEscherF002End)
 {
 rSt  aEscherObjListHd;
 if ( aEscherObjListHd.nRecVer != 0xf )
@@ -3579,9 +3584,14 @@ bool SvxMSDffManager::SeekToRec( SvStream rSt, 
sal_uInt16 nRecId, sal_uLong nMa
 bool bRet = sal_False;
 sal_uLong nFPosMerk = rSt.Tell(); // FilePos merken fuer ggf. spaetere 
Restauration
 DffRecordHeader aHd;
+// make sure that we move somewhere with every iteration
+sal_Size nStPos;
 do
 {
+nStPos = rSt.Tell();
 rSt  aHd;
+if (!lclGood(rSt))
+break;
 if ( aHd.nRecType == nRecId )
 {
 if ( nSkipCount )
@@ -3596,9 +3606,13 @@ bool SvxMSDffManager::SeekToRec( SvStream rSt, 
sal_uInt16 nRecId, sal_uLong nMa
 }
 }
 if ( !bRet )
-aHd.SeekToEndOfRecord( rSt );
+{
+bool bSeekSuccess = aHd.SeekToEndOfRecord( rSt );
+if (!bSeekSuccess)
+break;
+}
 }
-while ( rSt.GetError() == 0  rSt.Tell()  nMaxFilePos  !bRet );
+while ( lclGood(rSt)  rSt.Tell()  nMaxFilePos  rSt.Tell() != nStPos 
 !bRet );
 if ( !bRet )
 rSt.Seek( nFPosMerk ); // FilePos restaurieren
 return bRet;
@@ -6187,10 +6201,18 @@ void SvxMSDffManager::GetFidclData( long nOffsDggL )
 
 if ( mnIdClusters--  2 )
 {
-if ( aDggAtomHd.nRecLen == ( mnIdClusters * sizeof( FIDCL ) + 
16 ) )
+const sal_Size nFIDCLsize = sizeof(sal_uInt32) * 2;
+if ( aDggAtomHd.nRecLen == ( mnIdClusters * nFIDCLsize + 16 ) )
 {
+sal_Size nStCtrlCurr = rStCtrl.Tell();
+sal_Size nStCtrlEnd = rStCtrl.Seek(STREAM_SEEK_TO_END);
+sal_Size nMaxEntriesPossible = ( nStCtrlEnd - nStCtrlCurr 
) / nFIDCLsize;
+rStCtrl.Seek(nStCtrlCurr);
+mnIdClusters = std::min(nMaxEntriesPossible, 
static_castsal_Size(mnIdClusters));
+
 mpFidcls = new FIDCL[ mnIdClusters ];
-for ( 

[Libreoffice-commits] .: sw/source

2012-01-03 Thread Cédric Bosdonnat
 sw/source/ui/docvw/PageBreakWin.cxx |6 --
 1 file changed, 6 deletions(-)

New commits:
commit 5807b07161d84ef105cc1a2292c8c1f09888e39f
Author: Cédric Bosdonnat cedric.bosdon...@free.fr
Date:   Mon Jan 2 10:58:12 2012 +0100

Page Breaks: avoid flickering of the tab by drawing it over the line

diff --git a/sw/source/ui/docvw/PageBreakWin.cxx 
b/sw/source/ui/docvw/PageBreakWin.cxx
index 7e6232d..538f6d7 100644
--- a/sw/source/ui/docvw/PageBreakWin.cxx
+++ b/sw/source/ui/docvw/PageBreakWin.cxx
@@ -477,15 +477,9 @@ void SwPageBreakWin::UpdatePosition( )
 {
 long nRight = std::min( nPgRight + aBtnSize.getWidth() - ARROW_WIDTH / 
2, aVisArea.Right() );
 nBtnLeft = nRight - aBtnSize.getWidth();
-if ( IsVisible() )
-   nLineRight = nBtnLeft;
 }
 else
-{
 nBtnLeft = std::max( nPgLeft - aBtnSize.Width() + ARROW_WIDTH / 2, 
aVisArea.Left() );
-if ( IsVisible() )
-   nLineLeft = nBtnLeft + aBtnSize.Width();
-}
 
 // Set the button position
 Point aBtnPos( nBtnLeft, nYLineOffset - aBtnSize.Height() / 2 );
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-4-5' - instsetoo_native/util solenv/inc

2012-01-03 Thread Petr Mladek
 instsetoo_native/util/openoffice.lst |   16 
 solenv/inc/minor.mk  |4 ++--
 2 files changed, 10 insertions(+), 10 deletions(-)

New commits:
commit 9e0b7280f00eb33b7f0395aa130d1779bdb5b86f
Author: Petr Mladek pmla...@suse.cz
Date:   Tue Jan 3 14:52:31 2012 +0100

bump product version to 3.4.5-rc2, release number to 502

diff --git a/instsetoo_native/util/openoffice.lst 
b/instsetoo_native/util/openoffice.lst
index f34f689..d7de8f7 100644
--- a/instsetoo_native/util/openoffice.lst
+++ b/instsetoo_native/util/openoffice.lst
@@ -57,7 +57,7 @@ LibreOffice
PRODUCTVERSION 3.4
PRODUCTEXTENSION 
LONG_PRODUCTEXTENSION 
-   SHORT_PRODUCTEXTENSION rc1
+   SHORT_PRODUCTEXTENSION rc2
 POSTVERSIONEXTENSION
 POSTVERSIONEXTENSIONUNIX
BRANDPACKAGEVERSION 3.4
@@ -125,7 +125,7 @@ LibreOffice_wJRE
PRODUCTVERSION 3.4
PRODUCTEXTENSION 
LONG_PRODUCTEXTENSION 
-   SHORT_PRODUCTEXTENSION rc1
+   SHORT_PRODUCTEXTENSION rc2
 POSTVERSIONEXTENSION
 POSTVERSIONEXTENSIONUNIX
BRANDPACKAGEVERSION 3.4
@@ -189,7 +189,7 @@ LibreOffice_Dev
PRODUCTVERSION 3.4
PRODUCTEXTENSION 
LONG_PRODUCTEXTENSION 
-   SHORT_PRODUCTEXTENSION rc1
+   SHORT_PRODUCTEXTENSION rc2
BASISROOTNAME LibO-dev
UNIXBASISROOTNAME lo-dev
 POSTVERSIONEXTENSION
@@ -266,7 +266,7 @@ URE
 PRODUCTEXTENSION
 BRANDPACKAGEVERSION 3.4
 LONG_PRODUCTEXTENSION
-SHORT_PRODUCTEXTENSION rc1
+SHORT_PRODUCTEXTENSION rc2
 LICENSENAME LGPL
 SETSTATICPATH 1
 NOVERSIONINDIRNAME 1
@@ -305,7 +305,7 @@ LibreOffice_SDK
 PRODUCTVERSION 3.4
 PRODUCTEXTENSION
 LONG_PRODUCTEXTENSION
-SHORT_PRODUCTEXTENSION rc1
+SHORT_PRODUCTEXTENSION rc2
 POSTVERSIONEXTENSION SDK
 POSTVERSIONEXTENSIONUNIX sdk
 BRANDPACKAGEVERSION 3.4
@@ -351,7 +351,7 @@ LibreOffice_Dev_SDK
 PRODUCTVERSION 3.4
 PRODUCTEXTENSION
 LONG_PRODUCTEXTENSION
-SHORT_PRODUCTEXTENSION rc1
+SHORT_PRODUCTEXTENSION rc2
 BASISROOTNAME LibO-dev
 UNIXBASISROOTNAME lo-dev
 POSTVERSIONEXTENSION SDK
@@ -403,7 +403,7 @@ OxygenOffice
PRODUCTVERSION 3.4
PRODUCTEXTENSION
LONG_PRODUCTEXTENSION
-   SHORT_PRODUCTEXTENSION  rc1
+   SHORT_PRODUCTEXTENSION  rc2
 POSTVERSIONEXTENSION
 POSTVERSIONEXTENSIONUNIX
BRANDPACKAGEVERSION 3.4
@@ -473,7 +473,7 @@ OxygenOffice_wJRE
PRODUCTVERSION 3.4
PRODUCTEXTENSION
LONG_PRODUCTEXTENSION
-   SHORT_PRODUCTEXTENSION rc1
+   SHORT_PRODUCTEXTENSION rc2
 POSTVERSIONEXTENSION
 POSTVERSIONEXTENSIONUNIX
BRANDPACKAGEVERSION 3.4
diff --git a/solenv/inc/minor.mk b/solenv/inc/minor.mk
index 485a1d3..cd04a68 100644
--- a/solenv/inc/minor.mk
+++ b/solenv/inc/minor.mk
@@ -1,5 +1,5 @@
 RSCVERSION=340
-RSCREVISION=340m1(Build:501)
-BUILD=501
+RSCREVISION=340m1(Build:502)
+BUILD=502
 LAST_MINOR=m1
 SOURCEVERSION=OOO340
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-4-5' - connectivity/source

2012-01-03 Thread Petr Mladek
 connectivity/source/drivers/evoab2/EApi.cxx |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 04a3004564c8e0a39cfedfda270d43bfdb2f2d14
Author: Rene Engelhard r...@debian.org
Date:   Sun Dec 25 13:51:46 2011 +0100

support libebook-1.2.so.12 (evolution 3.2)

Signed-off-by: Petr Mladek pmla...@suse.cz

diff --git a/connectivity/source/drivers/evoab2/EApi.cxx 
b/connectivity/source/drivers/evoab2/EApi.cxx
index 1767ec1..95cdb55 100644
--- a/connectivity/source/drivers/evoab2/EApi.cxx
+++ b/connectivity/source/drivers/evoab2/EApi.cxx
@@ -35,6 +35,7 @@
 #define  DECLARE_FN_POINTERS 1
 #include EApi.h
 static const char *eBookLibNames[] = {
+libebook-1.2.so.12, // bumped again
 libebook-1.2.so.10, // bumped again
 libebook-1.2.so.9,  // evolution-2.8
 libebook-1.2.so.5,  // evolution-2.4 and 2.6+
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: comphelper/inc comphelper/source

2012-01-03 Thread Stephan Bergmann
 comphelper/inc/comphelper/oslfile2streamwrap.hxx   |   11 +++
 comphelper/source/streaming/oslfile2streamwrap.cxx |7 +++
 2 files changed, 14 insertions(+), 4 deletions(-)

New commits:
commit a90d4d5f036ab7785ba72038936c6c8427b74ba8
Author: Stephan Bergmann sberg...@redhat.com
Date:   Tue Jan 3 16:11:26 2012 +0100

Do not export whole class to avoid MS C++ implicitly exporting base 
template.

diff --git a/comphelper/inc/comphelper/oslfile2streamwrap.hxx 
b/comphelper/inc/comphelper/oslfile2streamwrap.hxx
index e817be9..754be72 100644
--- a/comphelper/inc/comphelper/oslfile2streamwrap.hxx
+++ b/comphelper/inc/comphelper/oslfile2streamwrap.hxx
@@ -65,17 +65,20 @@ public:
 // FmUnoOutStream,
 // Datensenke fuer Files
 //==
-class COMPHELPER_DLLPUBLIC OSLOutputStreamWrapper : public 
::cppu::WeakImplHelper1stario::XOutputStream
+class OSLOutputStreamWrapper : public 
::cppu::WeakImplHelper1stario::XOutputStream
 {
-::osl::FilerFile;
-
 public:
-OSLOutputStreamWrapper(::osl::File _rFile) :rFile(_rFile) { }
+COMPHELPER_DLLPUBLIC OSLOutputStreamWrapper(::osl::File _rFile);
+
+private:
+virtual ~OSLOutputStreamWrapper();
 
 // stario::XOutputStream
 virtual void SAL_CALL writeBytes(const staruno::Sequence sal_Int8  
aData) throw(stario::NotConnectedException, 
stario::BufferSizeExceededException, staruno::RuntimeException);
 virtual void SAL_CALL flush() throw(stario::NotConnectedException, 
stario::BufferSizeExceededException, staruno::RuntimeException);
 virtual void SAL_CALL closeOutput() throw(stario::NotConnectedException, 
stario::BufferSizeExceededException, staruno::RuntimeException);
+
+::osl::FilerFile;
 };
 
 }   // namespace comphelper
diff --git a/comphelper/source/streaming/oslfile2streamwrap.cxx 
b/comphelper/source/streaming/oslfile2streamwrap.cxx
index 06bac1d..bf93a8e 100644
--- a/comphelper/source/streaming/oslfile2streamwrap.cxx
+++ b/comphelper/source/streaming/oslfile2streamwrap.cxx
@@ -145,6 +145,13 @@ void SAL_CALL OSLInputStreamWrapper::closeInput() throw( 
stario::NotConnectedExc
 /*/
 // stario::XOutputStream
 
//--
+
+OSLOutputStreamWrapper::OSLOutputStreamWrapper(osl::File  _rFile):
+rFile(_rFile)
+{}
+
+OSLOutputStreamWrapper::~OSLOutputStreamWrapper() {}
+
 void SAL_CALL OSLOutputStreamWrapper::writeBytes(const staruno::Sequence 
sal_Int8  aData) throw( stario::NotConnectedException, 
stario::BufferSizeExceededException, staruno::RuntimeException )
 {
 sal_uInt64 nWritten;
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] Changes to 'refs/tags/libreoffice-3.4.5.2'

2012-01-03 Thread Petr Mladek
Tag 'libreoffice-3.4.5.2' created by Petr Mladek pmla...@suse.cz at 
2012-01-03 15:26 +0100

Tag $lo_version_tag (${vendor_use:+$vendor LO }$lo_version_app-$lo_release_id)
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iQIcBAABAgAGBQJPAx4LAAoJEPQ0oe+v7q6jVcUP/0WCZNRkLUWVwfW9kxGOr9DM
FGSfgdryjFHFmhtpgcqHk8ZusQdL4y50oIKIH1OM6Ny6y/j7+/KU0dUoA//hAU1W
AWJ8lCf+2oxUPeAhXElU4F5quf6Kl4gbPT26wU3BdbBgGwi8URgewXsv7z3Y5TME
sTactc9WQ5NBg6n8oix2QXXdly642oKJIBeu1ptqdJ2ZINKwfKmcxmOc1EW8fhIZ
TY70vud8F/dNlyyGYKhhvb+YXg2vT2cida+SArCsEvvfrJAC6CLg6MJwauIe6LWQ
SR596aH5WauXI0bejGjCp2H1aFD/PUAZ2rRzyhLHM3owqxqY9/6Fpa/J6VfEvLXz
jHNyy8W3jLc8Ra8spHl30Ia5SqGsXq4M5SwVDrbDJ0EyRD9Zwq3/e9kdj331zn9b
8pqsNMbL7xHvKB0sNA+J1WVjBd1VZxOH7tSR9mjaajQlkoZ1fE/rkwzHrGivDa+t
KUOsygD820rJj8JA4ZXv7ou+mB+eg6qzcAmYH/en2QAoUpR/Zu3OpYOum9wg8SXC
2kh65hJrHKo0dHiCvTiHBifkZoCXRfO9adCYoozmthrY+tR8PZDHjS5pmyZK9hdX
+Wb3itf9WdJyvpreOvyfNEC9hnP/tdWu7xSgnFbhOGBCHkcSTUfbQ96IyKASUhW9
YAflzPtKwgv4htqkAAbO
=orqN
-END PGP SIGNATURE-

Changes since libreoffice-3.4.5.1-1:
---
 0 files changed
---
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] Changes to 'refs/tags/libreoffice-3.4.5.2'

2012-01-03 Thread Petr Mladek
Tag 'libreoffice-3.4.5.2' created by Petr Mladek pmla...@suse.cz at 
2012-01-03 15:26 +0100

Tag $lo_version_tag (${vendor_use:+$vendor LO }$lo_version_app-$lo_release_id)
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iQIcBAABAgAGBQJPAx4LAAoJEPQ0oe+v7q6j23QP/R7ISpXUpbTMZCeqsOTdoAFQ
S1UG1VjDbeBN6P7ucGkPZ0mrBA5DIGaNd6BFvsgyWIHRqayNh8KHlks/wtFsdKft
3TENnDRN/7GlYvRFl8IcoXGwseIyOrZEE6bBWsYHK97w1g56pT6PmNGGfeAhDTbr
4hsh68sls3IV9zEW1cwYBFlBTf5GtJUbL1kHIvDlHYlO/NoTUu+rHLVjUdNm/wt5
L5UeZKKDWaQLZXEOtZKJog6yqfdeFy8uEMXZ+b/M/m6zpSIEi0dq0xjiLY6ez88v
cxxnpI0ORvuC1z0Ofqa9yY/abg/7vyO+HS5kMuJajWAKTai9N4+XhyTtywRkffLW
SW54IA4vBtKdvBS5A8kqj/zqqSYU9ia/VoaQa6CTJZoiWChFXNhoxzS597k3pi2+
1EJUmfgxVpKSw6wkpocKKw5B8ieY9Ri3z5lzSsNwut2UTOp2hcfmu7pvukJiYfcl
+QkUdCInlD63G9W58PH5K17a90r0jRBmRWXaujGYKHpJRhtlNqCl3+TI+m1DVXxm
QxlLLbc2QtdzWfC9gFEmkb0bBskUdBlNVBsa+r0N5h70RcQtsLOwsQOe17UJyoHH
+/EEKO7aCRrPF6AyTTqmMCuQNMEh9aX00/m1kM54e1GQkfKw3tE35Vt42Oub+FA7
4rG3+ZUiVTzc+vBoX2M/
=oVq0
-END PGP SIGNATURE-

Changes since libreoffice-3.4.5.1-2:
---
 0 files changed
---
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] Changes to 'refs/tags/libreoffice-3.4.5.2'

2012-01-03 Thread Petr Mladek
Tag 'libreoffice-3.4.5.2' created by Petr Mladek pmla...@suse.cz at 
2012-01-03 15:26 +0100

Tag $lo_version_tag (${vendor_use:+$vendor LO }$lo_version_app-$lo_release_id)
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iQIcBAABAgAGBQJPAx4MAAoJEPQ0oe+v7q6jMS4P/ROPrGpznTkhzEdRgV1+CkRr
FXPH+5QQzqWaAk8SA8mEYgZ8URS6yNgCK0+aLSMtxxe5HXgjrgqFDDn7d9HGjQhO
sdPrscq6n2CLqcSHF8m7eL03542DdLsumE27+Oy/Fq3azUlQn93hQbuw5QiCxtm5
jjs3amgmONXhenEWyA7V/2VJv8kHjpbYM5ERL/CXw29r5u5hEfdDLCBum8Lgqe0D
/GWyT4pVOF9+LhAdBDetwErqaFVnQnKL/eAGcN7DBeqmzz8Rpfs0VLa/651Nmv8U
PvnSMIzPSBecYNRqiTscNwDk623zqCwDrLyqO/GiTP8Q1NoL/RmvCweyCitfC2Or
mHt844nQQFGeFijD48TSgMTMwm6n6/hZG91mGoCFiEgvrAZxQ5v80kGNOrbv12dk
FMrmwGC15ALhOzVvrnUbTLyh0K9dAljO4/uc4rEIHN7Vc+tUvXMElEFwZJWGkLAA
Xe9bKei7KcrDHRbYSsdge4l9FoNQZu5twxklqSgJifYg/BUoX4i0cZDIAnS6pE+Z
UCfDJrGFUrbWq97z3uzzRh4Q6u/Bz5LoV70l7NrVgWJCtavsYZMqs6r3RdhrfMCp
V4j6wo5/tra1jvkBdL5aLhk6/NSGfG242yLtEy9FdmWP2F5spO/1agEfTGZM1+/W
7By3hvQFb7GPMg5CVcZY
=/yFi
-END PGP SIGNATURE-

Changes since libreoffice-3.4.5.1-2:
---
 0 files changed
---
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] Changes to 'refs/tags/libreoffice-3.4.5.2'

2012-01-03 Thread Petr Mladek
Tag 'libreoffice-3.4.5.2' created by Petr Mladek pmla...@suse.cz at 
2012-01-03 15:26 +0100

Tag $lo_version_tag (${vendor_use:+$vendor LO }$lo_version_app-$lo_release_id)
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iQIcBAABAgAGBQJPAx4MAAoJEPQ0oe+v7q6jH10P/0ZHG/RK6MVhdY1+ZBrDbPo5
2O5G4Qc87r1VRrj5NodFI8wKlOEQqsMrRCqSAodfNc/e+8GhBsVdpS2RzF5HtoDZ
dK3XE4U56Ktmusi129pNrEQ9MemkGkVFSqlfxsO6TkehMRM2HtQiOvlcfU15TtCi
qbXNR0KJ/29+EStwlG+SIplcFb27xK6jk4rxMbPpmy3H/RkDC+eNs847BweNH/1I
k8iE2FllUlMg74ovEOn0VC07J7kWzxsIXMRfmpiC/3Eq1zvs7ye0BTghzMHApyZv
Ploa5qoJWQnYK4GTFWWKtDFlBoCGImYOA5wBeRFaXG+Dpbi8shXGO2p8Tol2G++A
cxsUU7ghKVmU47Ft/wCZlwgbEg3FhFEBOQ2DB8k1UuwMW6G0KIVZ3TMIqlG4u4+B
H2P/JMGVV05NkG5xXx4G170evaqjq3+U9uc0AB3jUuv/rm7bZTRsYF0XoZsSMIdM
VpjWRAbPej2A5oEJvDP3EJxhq4GAyrSC3ESxSGkKzePO1tMAJRzzB1mpGjqsFomR
PJ/tGOwHxYA3XUiW+tZ2309/qNBoKPH8Iws0gmXSDEier77g3diO5AHo8M8HbXje
1FD1S8kYrbSCTnkooLPe/iVcRm3OTw0/n1Jjl/G8IpmDvcVu2Cn9QoP6iWWdmWyg
4yCQrVFZfGcAUf396bHi
=nzZe
-END PGP SIGNATURE-

Changes since libreoffice-3.4.5.1-1:
---
 0 files changed
---
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] Changes to 'refs/tags/libreoffice-3.4.5.2'

2012-01-03 Thread Petr Mladek
Tag 'libreoffice-3.4.5.2' created by Petr Mladek pmla...@suse.cz at 
2012-01-03 15:26 +0100

Tag $lo_version_tag (${vendor_use:+$vendor LO }$lo_version_app-$lo_release_id)
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iQIcBAABAgAGBQJPAx4MAAoJEPQ0oe+v7q6j4hIP/2cM24krBp7vnVmuKZ/dgIgn
hEesck7D6C+Q6uQfYiYNJSmG4yVxPJUj3GjhmzhBt09qSu2c83RCJ94nx8z2Jhwd
oKZ3TNsRylT78bVf7pRufbkFxP80G5R8eijFPlZZay11GaE3hWsvhiy6mQsDhfv9
zRwZo9W0vyNbKBREJuBaIaOxdelz9n1m11ZGz6ZH0kPb7VuUxHYP7xRqoOcKWoR/
uqZLdYCZhzzTFj1KCQhEA8csIXLvXiuMDAfMrgik848h9Z8wh4Rs98Q4x2JQvQqV
+h6f73GL9M5tzDJUH8hzn+PlPzrmn+gqBksaDYWOaBJS0SLEziKbyY/snKIjVeG3
rt58EtPKe7Rp9aFaGSq9VXhCQX1aCldqfetZdckCVnUBO2mr2wGu8affudl1FFG6
IfdYeTK6QSmvTU33rZKkX9GrqQIxX3yhC0hvhwg7zhb0kI4+hkg99nn7bmriWnOD
4DlwtwSguaWKfwEKVGztXmbKbmqQiuFcveAVkcdGozUGhLJ7ImONL9SFH5MTdp1s
42NaroI7bd10VWueV9kKcMpAHWORBA7L4ygLlHdBWRacmUgw07/983F9Fs4FyvAT
N+YGK8QX0iRdW7ssjfmmDpkUc+/nghwYp5Y3pGYTQ2SpeTAEaeKK7jhLdCVd1oUJ
47d5PLRxbno3GRX7dMiP
=UVCJ
-END PGP SIGNATURE-

Changes since libreoffice-3.4.5.1-3:
---
 0 files changed
---
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] Changes to 'refs/tags/libreoffice-3.4.5.2'

2012-01-03 Thread Petr Mladek
Tag 'libreoffice-3.4.5.2' created by Petr Mladek pmla...@suse.cz at 
2012-01-03 15:26 +0100

Tag $lo_version_tag (${vendor_use:+$vendor LO }$lo_version_app-$lo_release_id)
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iQIcBAABAgAGBQJPAx4MAAoJEPQ0oe+v7q6jBtEP/RxClmQLNUsZIxSdsNcvg+5N
MSA4brOZCo4aal8IUivlPegeHF2owf7KNfafPjaxuRZ5Bm+bsa38wU+1vNz/agGu
/mt1/hS2dbXIF9xSEpNBGuAIIXA0GpR3+qCbSmHJdZ0ftz/o1uHmD7Z/5xk5Fjmm
B3qaVXnPi41hwvLhpKvleTDCNS2VgfRkq4wL+qibA+Qtc4gr96/uK7lryiV2Uot0
IKgXlSvSWMyPel8VIIORZrwcR7DGp0gimku/y1uz/cjywdIGKp8g1KOv4BvYZZ27
HpjGExoO0sLv70qC34MPXu/i4xCYaWPQY5uH6omE6jkkywRiJgPWn/B4qJ37QW5V
qupsT1YMbqt1NvtWkGKC9/LkI2ypedM/nM6YAZ+mo1Xn1fww+bmkRRQMvfe9otB2
cwoeen/bo5IevrYVVE5EE1S2liv/2uLrwT86Ov9R0QpR/+uhcnQhrSBSj4BU+7rY
FT33BgjSCbV3RLI54Zg7HabAEbcSgZzh8ClC+UNa7oxdUmY0UEl+p2BKzcQ1F36C
80/CjS6hpVzg72iSBPgHsJ2MfW0j5XqL61eSmbmsbTnFprVcEpBnNJKGGYehPVki
U42bW2f/3InZn56SaluWhuJscwlmLi3BV5GUxlXzGM0TPF7Cc8AMJ0KV/a5rZ6q7
xYFSkOKGFZ0dA9upDAPM
=b5Ni
-END PGP SIGNATURE-

Changes since libreoffice-3.4.5.1-1:
---
 0 files changed
---
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] Changes to 'refs/tags/libreoffice-3.4.5.2'

2012-01-03 Thread Petr Mladek
Tag 'libreoffice-3.4.5.2' created by Petr Mladek pmla...@suse.cz at 
2012-01-03 15:26 +0100

Tag $lo_version_tag (${vendor_use:+$vendor LO }$lo_version_app-$lo_release_id)
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iQIcBAABAgAGBQJPAx4NAAoJEPQ0oe+v7q6jCzgQAMGVgG1V9+EnLsliS3vw686D
0RYVSu2VhUjKLFFkjQiEzETStwpc2P17pC03/XeKSG1Ita57LQcfcN7lwceDfz3W
l0iTfw7z9YZo8ejrTntaLFcpkhvNOTt29pgBo3HjWzHMXCWpNQom5pzm6Aarlr1j
zzhYr77qs7KmZKqaVrXKC/KuIad/yT1scX65InR1pLTkhVZVKdkCos3oA82RLgxb
/crwPmQV39JLcC85zfquzHYPBf+lwyxTUlvDon9kjzCfJxXJEWNCsKfuC7WMxl3a
Uo2JkKo3I4cxe8Kx4o9Am8TwX9rgjjyEAu7ju2qvUnx3b8kZnjuB27nMeb8xATVK
viaffdIc4bWuOxqBroVAvRLuk+zQL6ND2/vr3IUUstxLVrI5ZJbS2Ka5N67Bmfux
W4fJEp+GRPCQomFeU93KSuJneFB+I4Xe9hvphM362jSaMkKLPHbShaUk6zurwiKl
1JCAY3ifhkllDXmYIqHICcndhA/J+PPaO8TIj3ml9TBuoPA4N3szYsu01CVcNE/I
PXXeVm7EbxjoqIOMAMIWuhGou12NZlBVlAJUHutZhGkH3bJkLXFHPMCyQtyhBGhc
MIe3ODlz0qWwPOLhMEFJMLPUJS5bNbXBkHFM9H2yExL3oiWr72ruyuhs7kPPLYIP
PoJLnYQ3vyLJjTef7/8R
=j71B
-END PGP SIGNATURE-

Changes since libreoffice-3.4.5.1-1:
---
 0 files changed
---
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] Changes to 'refs/tags/libreoffice-3.4.5.2'

2012-01-03 Thread Petr Mladek
Tag 'libreoffice-3.4.5.2' created by Petr Mladek pmla...@suse.cz at 
2012-01-03 15:26 +0100

Tag $lo_version_tag (${vendor_use:+$vendor LO }$lo_version_app-$lo_release_id)
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iQIcBAABAgAGBQJPAx4NAAoJEPQ0oe+v7q6jezoQAIHM0DV3X3zRdXvfZEpKqyjl
Gdom6Mu/qESfb7NdXXIRx1Tvlm64HMdMX9RhKQkgEyiGZ+OzGyejIjbcAqhblJ9d
M9C6T7xHByr/5Du2ztN1VKxFgR3wF/tHoVYipeOadTkVOQ/S6hST34B4N8apnqe7
SJLIQNbDZ1k2YRe8CfBan7mW5VX2WR2NDtClfP1Qa45mN97EZfwti0qJccRkNesb
pfNZIenMvI0sJJ+NHpKY6iENmgG/Qzm+FH2+9VysoByNTfaj5eaD1so2LdbLfAvT
S5gUEM2kl1nkSNx8DpFcUyRdQ6EDcq1aihdxmpNh8nW2xSAh6TQuw0vXAjGa23h1
YKHk1H+nQHuFBlWKKOAhFZI/UBH3KSSOypdu/NS2ufKR2XGNuLwmCOfIMxw3MJEK
cyjhYJ8sWb6eQoY20uv+lnp0opJXJcxH9ZmAZmLlmQ7anDpYhlJXvNg4gemqH9e3
2+nhaXld3sA9BTQa4W0MBSPj36T4mqqlVhprWqk97m2q7+KVVK5vhdBK4f/3/8NM
Ek1x62MMDZA0jc1F/VBW5eqryzYEwe8Fc4xpL2zu0BiAfyte0c3sNhy5/J8cMW0a
aU4Gl4X6rnB3CQBIyLNU62KafjDtE/EbgrimVUObqmR8A4NGbSOMwSKTz01eP/WF
TIpeXveBy8HrOkXgpWhL
=Ohlt
-END PGP SIGNATURE-

Changes since libreoffice-3.4.5.1-1:
---
 0 files changed
---
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] Changes to 'refs/tags/libreoffice-3.4.5.2'

2012-01-03 Thread Petr Mladek
Tag 'libreoffice-3.4.5.2' created by Petr Mladek pmla...@suse.cz at 
2012-01-03 15:26 +0100

Tag $lo_version_tag (${vendor_use:+$vendor LO }$lo_version_app-$lo_release_id)
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)

iQIcBAABAgAGBQJPAx4NAAoJEPQ0oe+v7q6jBmsP/RG7oWd7ls4tY2bDunmw/EQF
sUX1wgNANhQD2C7mIN6Xn0sNxtTR9cqf3MC9Sqz/oPY0g/DHEVav+Bx+UXRhm9qx
ZXXiNIQSiEIjmobjSxFGICabXOFp+JNLX2d8p2BXqnmDkrF5yTTVYHO7T/xGgzhI
pCPrSlbSYpWzfjq6w+iDHlD5yvPmiceneIpK+84OuJeccSBJ3YAxDol3dgcwaZNt
BTyLvnO8uJm4G/nBJqLufE/uc+0Zbbg2NPGA66u4dJtzn5RgUeh98xGU894d/78E
i5wcS3EPTRCL/5rQRI8KNnD7jzqVx+dwUVuK8KK9F5aoMmX9nI8aQFLxdB1w0Q9C
IwvLjSer6dLM23KP/fBM/7/AxIRjrOvirfXPqkOJTMCrHfy8K87hxUvxAiCY6c4n
rXIaGf+rQYdgmd57idAUdmIj97xxSoGUk05eLl8LRIPDiWLdFdfQiX/Pw1yRa7Aw
LHQU0Z/d1+Bx7Z9XVTzt3FuN9lTY3UniugzZGmxzlRVYOb/vpJQ1RWx5VvMWxKLG
EY+5BeRYX3gSIv6se3cTKVR6kJuVdfsGkfvnWTu6Lzc0HrBem51kb4Q5yoHbcmmi
mGM8NpbEuYZRoNM9gMJ/no5uJGsE28AWjODRqR4UweL+7V0GGUc19ZPEYPCtk8hf
s2eoBvMfbgx83kGOLbGz
=Nnsu
-END PGP SIGNATURE-

Changes since libreoffice-3.4.5.1-1:
---
 0 files changed
---
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-4-5' -

2012-01-03 Thread Petr Mladek
 0 files changed

New commits:
commit 61fbbdba2339fcfe5945c3266f66822b093fb703
Author: Petr Mladek pmla...@suse.cz
Date:   Tue Jan 3 16:23:56 2012 +0100

Version 3.4.5.2, tag libreoffice-3.4.5.2 (3.4.5-rc2)
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-4-5' -

2012-01-03 Thread Petr Mladek
 0 files changed

New commits:
commit 5d5d28be27b2f9b9953da52c09ba5dbfee87d62d
Author: Petr Mladek pmla...@suse.cz
Date:   Tue Jan 3 16:23:56 2012 +0100

Version 3.4.5.2, tag libreoffice-3.4.5.2 (3.4.5-rc2)
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-4-5' -

2012-01-03 Thread Petr Mladek
 0 files changed

New commits:
commit e978037ae424968fdf72bda03b62c41e211e32fc
Author: Petr Mladek pmla...@suse.cz
Date:   Tue Jan 3 16:23:57 2012 +0100

Version 3.4.5.2, tag libreoffice-3.4.5.2 (3.4.5-rc2)
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-4-5' -

2012-01-03 Thread Petr Mladek
 0 files changed

New commits:
commit 39491e4755a6193b81a8484ce5604d51bfb1480e
Author: Petr Mladek pmla...@suse.cz
Date:   Tue Jan 3 16:24:00 2012 +0100

Version 3.4.5.2, tag libreoffice-3.4.5.2 (3.4.5-rc2)
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-4-5' -

2012-01-03 Thread Petr Mladek
 0 files changed

New commits:
commit 71d06244d06f43021ac882f87364bdedd446c8bf
Author: Petr Mladek pmla...@suse.cz
Date:   Tue Jan 3 16:24:00 2012 +0100

Version 3.4.5.2, tag libreoffice-3.4.5.2 (3.4.5-rc2)
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-4-5' -

2012-01-03 Thread Petr Mladek
 0 files changed

New commits:
commit 9a4ad1e6ac8e8c79a57d1dfd83f8d33266dd2be4
Author: Petr Mladek pmla...@suse.cz
Date:   Tue Jan 3 16:24:02 2012 +0100

Version 3.4.5.2, tag libreoffice-3.4.5.2 (3.4.5-rc2)
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-3-4-5' -

2012-01-03 Thread Petr Mladek
 0 files changed

New commits:
commit f04ffea58d58df47257b403966dbbc6beab572fb
Author: Petr Mladek pmla...@suse.cz
Date:   Tue Jan 3 16:24:03 2012 +0100

Version 3.4.5.2, tag libreoffice-3.4.5.2 (3.4.5-rc2)
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: 3 commits - sw/inc sw/source

2012-01-03 Thread Lubos Lunak
 sw/inc/SwXMLSectionList.hxx |6 +-
 sw/inc/shellio.hxx  |6 +-
 sw/inc/swunohelper.hxx  |6 +-
 sw/source/core/swg/SwXMLSectionList.cxx |9 +--
 sw/source/core/unocore/swunohelper.cxx  |8 +-
 sw/source/core/unocore/unofield.cxx |   18 ++
 sw/source/filter/basflt/shellio.cxx |2 
 sw/source/filter/inc/fltini.hxx |4 -
 sw/source/filter/xml/swxml.cxx  |   12 +---
 sw/source/ui/dialog/uiregionsw.cxx  |   10 +--
 sw/source/ui/inc/glosdoc.hxx|   11 +--
 sw/source/ui/misc/glosdoc.cxx   |   89 
 sw/source/ui/utlui/gloslst.cxx  |   10 +--
 13 files changed, 80 insertions(+), 111 deletions(-)

New commits:
commit 3fb612cb206a989c0749ac509b173ec01eb3f49e
Author: Brad Sowden c...@sowden.org
Date:   Thu Dec 29 22:26:57 2011 +1300

Easyhack fdo#38831 remove SvStrings

diff --git a/sw/source/core/unocore/unofield.cxx 
b/sw/source/core/unocore/unofield.cxx
index 6b0ddc7..2e4785f 100644
--- a/sw/source/core/unocore/unofield.cxx
+++ b/sw/source/core/unocore/unofield.cxx
@@ -85,7 +85,6 @@
 #include tools/datetime.hxx
 #include tools/urlobj.hxx
 #include svx/dataaccessdescriptor.hxx
-#define _SVSTDARR_STRINGS
 #include svl/svstdarr.hxx
 #include osl/mutex.hxx
 #include vcl/svapp.hxx
@@ -95,6 +94,7 @@
 #include fmtmeta.hxx // MetaFieldManager
 #include switerator.hxx
 #include rtl/strbuf.hxx
+#include vector
 
 using ::rtl::OUString;
 using namespace ::com::sun::star;
@@ -2539,32 +2539,30 @@ uno::Sequence OUString  
SwXTextFieldMasters::getElementNames(void)
 const SwFldTypes* pFldTypes = GetDoc()-GetFldTypes();
 sal_uInt16 nCount = pFldTypes-Count();
 
-SvStrings aFldNames;
+std::vectorString* aFldNames;
 String* pString = new String();
-sal_uInt16 i;
 
-for( i = 0; i  nCount; i++)
+for( sal_uInt16 i = 0; i  nCount; i++)
 {
 SwFieldType rFldType = *((*pFldTypes)[i]);
 
 if (SwXTextFieldMasters::getInstanceName(rFldType, *pString))
 {
-aFldNames.Insert(pString, aFldNames.Count());
+aFldNames.push_back(pString);
 pString = new String();
 }
 }
 delete pString;
 
-uno::Sequence OUString  aSeq(aFldNames.Count());
+uno::Sequence OUString  aSeq( static_castsal_uInt16(aFldNames.size()) 
);
 OUString* pArray = aSeq.getArray();
-for(i = 0; i  aFldNames.Count();i++)
+for(sal_uInt16 i = 0; i  aFldNames.size();i++)
 {
-pArray[i] = *aFldNames.GetObject(i);
+pArray[i] = *aFldNames[i];
+delete aFldNames[i];
 }
-aFldNames.DeleteAndDestroy(0, aFldNames.Count());
 
 return aSeq;
-
 }
 
 sal_Bool SwXTextFieldMasters::hasByName(const OUString rName) throw( 
uno::RuntimeException )
commit 9e192c9fd1c0ddc0cd9b926a46f4144f1bf71526
Author: Brad Sowden c...@sowden.org
Date:   Thu Dec 29 22:26:06 2011 +1300

Easyhack fdo#38831 remove SvStrings

diff --git a/sw/inc/SwXMLSectionList.hxx b/sw/inc/SwXMLSectionList.hxx
index 0467864..c59fda7 100644
--- a/sw/inc/SwXMLSectionList.hxx
+++ b/sw/inc/SwXMLSectionList.hxx
@@ -31,7 +31,7 @@
 #include xmloff/xmlictxt.hxx
 #include xmloff/xmlimp.hxx
 
-class SvStrings;
+class vector;
 
 class SwXMLSectionList : public SvXMLImport
 {
@@ -43,11 +43,11 @@ protected:
   const ::com::sun::star::uno::Reference
 ::com::sun::star::xml::sax::XAttributeList   xAttrList );
 public:
-SvStrings  rSectionList;
+std::vectorString* rSectionList;
 
 SwXMLSectionList(
 const ::com::sun::star::uno::Reference 
::com::sun::star::lang::XMultiServiceFactory  xServiceFactory,
-SvStrings  rNewSectionList );
+std::vectorString* rNewSectionList );
 
 virtual ~SwXMLSectionList ( )
 throw();
diff --git a/sw/inc/shellio.hxx b/sw/inc/shellio.hxx
index 56cd063..0b91804 100644
--- a/sw/inc/shellio.hxx
+++ b/sw/inc/shellio.hxx
@@ -56,7 +56,6 @@ class SfxItemSet;
 class SfxMedium;
 class SvPtrarr;
 class SvStream;
-class SvStrings;
 class SvxFontItem;
 class SvxMacroTableDtor;
 class SwCntntNode;
@@ -64,6 +63,7 @@ class SwCrsrShell;
 class SwDoc;
 class SwPaM;
 class SwTextBlocks;
+class vector;
 struct SwPosition;
 struct Writer_Impl;
 
@@ -272,8 +272,8 @@ public:
 
 // Read the sections of the document, which is equal to the medium.
 // Returns the count of it
-virtual sal_uInt16 GetSectionList( SfxMedium rMedium,
-SvStrings rStrings ) const;
+virtual size_t GetSectionList( SfxMedium rMedium,
+   std::vectorString* rStrings ) const;
 
 SotStorageRef getSotStorageRef() { return pStg; };
 void setSotStorageRef(SotStorageRef pStgRef) { pStg = pStgRef; };
diff --git a/sw/source/core/swg/SwXMLSectionList.cxx 
b/sw/source/core/swg/SwXMLSectionList.cxx
index 1d00774..3a1adfd 100644
--- a/sw/source/core/swg/SwXMLSectionList.cxx
+++ 

[Libreoffice-commits] .: tools/source

2012-01-03 Thread Kohei Yoshida
 tools/source/stream/stream.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 8173b0d29717438dcaa47b3cc2f7010c9646fbe0
Author: Kohei Yoshida kohei.yosh...@suse.com
Date:   Tue Jan 3 13:54:41 2012 -0500

Fix import of multi-line cell contents during csv import.

Regression from 3.3.x.

Import of tab-delimited csv documents containing multi-line cells
were unfortunately broken with my fix for handling malformed csv
documents.  The intent was to break out of the loop only when a tab
character is encountered before the closing quote is encountered, but
the old code would break out whenever a tab character is encountered
even outside the quotes.

This commit fixes it.

diff --git a/tools/source/stream/stream.cxx b/tools/source/stream/stream.cxx
index 3cfb900..f00e7ff 100644
--- a/tools/source/stream/stream.cxx
+++ b/tools/source/stream/stream.cxx
@@ -1062,7 +1062,7 @@ sal_Bool SvStream::ReadCsvLine( String rStr, sal_Bool 
bEmbeddedLineBreak,
 {
 if (nQuotes)
 {
-if (bTabSep  *p == '\t')
+if (bTabSep  *p == '\t'  (nQuotes % 2) != 0)
 {
 // When tab-delimited, tab char ends quoted sequence
 // even if we haven't reached the end quote.  Doing
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: extensions/source

2012-01-03 Thread Julien Nabet
 extensions/source/ole/oleobjw.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b07d24180641d3b9fe2f0ac2602f8263fcf3aaa6
Author: Julien Nabet serval2...@yahoo.fr
Date:   Tue Jan 3 20:34:06 2012 +0100

Fix replace INVOKE_PROPERTYPUT, put INVOKE_PROPERTYPUTREF instead

diff --git a/extensions/source/ole/oleobjw.cxx 
b/extensions/source/ole/oleobjw.cxx
index 8fb9261..9d203c8 100644
--- a/extensions/source/ole/oleobjw.cxx
+++ b/extensions/source/ole/oleobjw.cxx
@@ -1814,7 +1814,7 @@ Any  
IUnknownWrapper_Impl::invokeWithDispIdComTlb(FuncDesc aFuncDesc,
 if (dispparams.cNamedArgs  0 
 ! (dispparams.cNamedArgs == 1 
(aFuncDesc-invkind == INVOKE_PROPERTYPUT ||
-aFuncDesc-invkind == INVOKE_PROPERTYPUT)))
+aFuncDesc-invkind == INVOKE_PROPERTYPUTREF)))
 {
 //set up an array containing the member and parameter names
 //which is then used in ITypeInfo::GetIDsOfNames
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: desktop/source

2012-01-03 Thread Michael Stahl
 desktop/source/deployment/gui/dp_gui_dialog2.cxx |   60 +--
 1 file changed, 35 insertions(+), 25 deletions(-)

New commits:
commit fd982205e6fe6eb4333d22c3494931ab7f7b3faf
Author: Olivier Hallot olivier.hal...@alta.org.br
Date:   Thu Dec 29 15:59:29 2011 -0200

Fix for FDO#44280: Wrong position in Extension Mgr

This patch fixes fdo 44280

[GUI] wrong position of 'Adding extension...' at Extension Manager dialog
Added some comments to help in hacking

diff --git a/desktop/source/deployment/gui/dp_gui_dialog2.cxx 
b/desktop/source/deployment/gui/dp_gui_dialog2.cxx
index a8c4455..416e567 100644
--- a/desktop/source/deployment/gui/dp_gui_dialog2.cxx
+++ b/desktop/source/deployment/gui/dp_gui_dialog2.cxx
@@ -1177,6 +1177,8 @@ void ExtMgrDialog::Resize()
 Size aUpdBtnSize( m_aUpdateBtn.GetSizePixel() );
 long offsetX;
 
+// last row of the box, lower 4 buttons
+
 Point aPos( RSC_SP_DLG_INNERBORDER_LEFT,
 aTotalSize.Height() - RSC_SP_DLG_INNERBORDER_BOTTOM - 
aBtnSize.Height() );
 
@@ -1191,42 +1193,25 @@ void ExtMgrDialog::Resize()
 aPos.X() -= ( RSC_SP_CTRL_GROUP_X + aBtnSize.Width() );
 m_aAddBtn.SetPosPixel( aPos );
 
+// horizontal line above lower buttons
+
 Size aDivSize( aTotalSize.Width(), LINE_SIZE );
 aPos = Point( 0, aPos.Y() - LINE_SIZE - RSC_SP_DLG_INNERBORDER_BOTTOM );
 m_aDivider.SetPosSizePixel( aPos, aDivSize );
 
+// text get more extensions
+
 Size aFTSize( m_aGetExtensions.CalcMinimumSize() );
-aPos = Point( RSC_SP_DLG_INNERBORDER_LEFT, aPos.Y() - 
RSC_CD_FIXEDTEXT_HEIGHT - 2*RSC_SP_DLG_INNERBORDER_BOTTOM );
+//aPos = Point( RSC_SP_DLG_INNERBORDER_LEFT, aPos.Y() - 
RSC_CD_FIXEDTEXT_HEIGHT - 2*RSC_SP_DLG_INNERBORDER_BOTTOM );
+aPos = Point( RSC_SP_DLG_INNERBORDER_LEFT, aPos.Y() - 
RSC_CD_PUSHBUTTON_HEIGHT - 2*RSC_SP_DLG_INNERBORDER_BOTTOM );
 
 m_aGetExtensions.SetPosSizePixel( aPos, aFTSize );
 
-Size aCBSize(m_aBundledCbx.GetSizePixel());
-
-offsetX = 0.5*(aTotalSize.Width() - RSC_SP_DLG_INNERBORDER_LEFT - 
RSC_SP_DLG_INNERBORDER_RIGHT - 3*(aCBSize.Width() + RSC_SP_CTRL_GROUP_X) );
-
-aPos = Point(offsetX, aPos.Y() - RSC_CD_CHECKBOX_HEIGHT - 
2*RSC_SP_DLG_INNERBORDER_BOTTOM);
-m_aBundledCbx.SetPosSizePixel(aPos, aCBSize);
-aPos.X() = aPos.X() + aCBSize.Width() + 2 * RSC_SP_CTRL_GROUP_X;
-m_aSharedCbx.SetPosSizePixel(aPos, aCBSize);
-aPos.X() = aPos.X() + aCBSize.Width() + 2 * RSC_SP_CTRL_GROUP_X;
-m_aUserCbx.SetPosSizePixel(aPos, aCBSize);
-
-Size aFTTypeOfExtSize(m_aTypeOfExtTxt.GetSizePixel());
-aPos = Point(RSC_SP_DLG_INNERBORDER_LEFT , aPos.Y() - 
RSC_CD_FIXEDTEXT_HEIGHT - 2*RSC_SP_DLG_INNERBORDER_BOTTOM);
-
-m_aTypeOfExtTxt.SetPosSizePixel(aPos, aFTTypeOfExtSize);
-
-aPos.X() = RSC_SP_DLG_INNERBORDER_LEFT + aFTTypeOfExtSize.Width();
-aPos.Y() = aPos.Y() + RSC_CD_FIXEDTEXT_HEIGHT;
-aDivSize.Width() = aTotalSize.Width() - aFTTypeOfExtSize.Width() - 
RSC_SP_DLG_INNERBORDER_LEFT - RSC_SP_DLG_INNERBORDER_RIGHT;
-m_aDivider2.SetPosSizePixel( aPos , aDivSize );
-
-
+// installation progress bar + cancel button , on the right of the text to get 
extensions
 
 aPos.X() = aTotalSize.Width() - RSC_SP_DLG_INNERBORDER_RIGHT - 
aBtnSize.Width();
 m_aCancelBtn.SetPosPixel( Point( aPos.X(), aPos.Y() - 
((aBtnSize.Height()-aFTSize.Height())/2) ) );
 
-
 // Calc progress height
 long nProgressHeight = aFTSize.Height();
 
@@ -1257,8 +1242,33 @@ void ExtMgrDialog::Resize()
 aPos.X() = aRect1.Right() + RSC_SP_DLG_INNERBORDER_LEFT;
 m_aProgressText.SetPosSizePixel( aPos, aFTSize );
 
+// checkboxes + text type of extensions
+
+Size aCBSize(m_aBundledCbx.GetSizePixel());
+
+offsetX = 0.5*(aTotalSize.Width() - RSC_SP_DLG_INNERBORDER_LEFT - 
RSC_SP_DLG_INNERBORDER_RIGHT - 3*(aCBSize.Width() + RSC_SP_CTRL_GROUP_X) );
+
+aPos = Point(offsetX, aPos.Y() - RSC_CD_CHECKBOX_HEIGHT - 
2*RSC_SP_DLG_INNERBORDER_BOTTOM);
+m_aBundledCbx.SetPosSizePixel(aPos, aCBSize);
+aPos.X() = aPos.X() + aCBSize.Width() + 2 * RSC_SP_CTRL_GROUP_X;
+m_aSharedCbx.SetPosSizePixel(aPos, aCBSize);
+aPos.X() = aPos.X() + aCBSize.Width() + 2 * RSC_SP_CTRL_GROUP_X;
+m_aUserCbx.SetPosSizePixel(aPos, aCBSize);
+
+Size aFTTypeOfExtSize(m_aTypeOfExtTxt.GetSizePixel());
+aPos = Point(RSC_SP_DLG_INNERBORDER_LEFT , aPos.Y() - 
RSC_CD_FIXEDTEXT_HEIGHT - 2*RSC_SP_DLG_INNERBORDER_BOTTOM);
+
+m_aTypeOfExtTxt.SetPosSizePixel(aPos, aFTTypeOfExtSize);
+
+aPos.X() = RSC_SP_DLG_INNERBORDER_LEFT + aFTTypeOfExtSize.Width();
+aPos.Y() = aPos.Y() + RSC_CD_FIXEDTEXT_HEIGHT;
+aDivSize.Width() = aTotalSize.Width() - aFTTypeOfExtSize.Width() - 
RSC_SP_DLG_INNERBORDER_LEFT - RSC_SP_DLG_INNERBORDER_RIGHT;
+m_aDivider2.SetPosSizePixel( aPos , aDivSize );
+
+// extension listbox
+
 Size aSize( aTotalSize.Width() - RSC_SP_DLG_INNERBORDER_LEFT - 
RSC_SP_DLG_INNERBORDER_RIGHT,
-aTotalSize.Height() - 

[Libreoffice-commits] .: Branch 'libreoffice-3-5' - desktop/source

2012-01-03 Thread Michael Stahl
 desktop/source/deployment/gui/dp_gui_dialog2.cxx |   60 +--
 1 file changed, 35 insertions(+), 25 deletions(-)

New commits:
commit 901d6ae378d45c1e3538e351754d85af4f1871c6
Author: Olivier Hallot olivier.hal...@alta.org.br
Date:   Thu Dec 29 15:59:29 2011 -0200

Fix for FDO#44280: Wrong position in Extension Mgr

This patch fixes fdo 44280

[GUI] wrong position of 'Adding extension...' at Extension Manager dialog
Added some comments to help in hacking
(cherry picked from commit fd982205e6fe6eb4333d22c3494931ab7f7b3faf)

diff --git a/desktop/source/deployment/gui/dp_gui_dialog2.cxx 
b/desktop/source/deployment/gui/dp_gui_dialog2.cxx
index 58e719a..7199aaf 100644
--- a/desktop/source/deployment/gui/dp_gui_dialog2.cxx
+++ b/desktop/source/deployment/gui/dp_gui_dialog2.cxx
@@ -1177,6 +1177,8 @@ void ExtMgrDialog::Resize()
 Size aUpdBtnSize( m_aUpdateBtn.GetSizePixel() );
 long offsetX;
 
+// last row of the box, lower 4 buttons
+
 Point aPos( RSC_SP_DLG_INNERBORDER_LEFT,
 aTotalSize.Height() - RSC_SP_DLG_INNERBORDER_BOTTOM - 
aBtnSize.Height() );
 
@@ -1191,42 +1193,25 @@ void ExtMgrDialog::Resize()
 aPos.X() -= ( RSC_SP_CTRL_GROUP_X + aBtnSize.Width() );
 m_aAddBtn.SetPosPixel( aPos );
 
+// horizontal line above lower buttons
+
 Size aDivSize( aTotalSize.Width(), LINE_SIZE );
 aPos = Point( 0, aPos.Y() - LINE_SIZE - RSC_SP_DLG_INNERBORDER_BOTTOM );
 m_aDivider.SetPosSizePixel( aPos, aDivSize );
 
+// text get more extensions
+
 Size aFTSize( m_aGetExtensions.CalcMinimumSize() );
-aPos = Point( RSC_SP_DLG_INNERBORDER_LEFT, aPos.Y() - 
RSC_CD_FIXEDTEXT_HEIGHT - 2*RSC_SP_DLG_INNERBORDER_BOTTOM );
+//aPos = Point( RSC_SP_DLG_INNERBORDER_LEFT, aPos.Y() - 
RSC_CD_FIXEDTEXT_HEIGHT - 2*RSC_SP_DLG_INNERBORDER_BOTTOM );
+aPos = Point( RSC_SP_DLG_INNERBORDER_LEFT, aPos.Y() - 
RSC_CD_PUSHBUTTON_HEIGHT - 2*RSC_SP_DLG_INNERBORDER_BOTTOM );
 
 m_aGetExtensions.SetPosSizePixel( aPos, aFTSize );
 
-Size aCBSize(m_aBundledCbx.GetSizePixel());
-
-offsetX = 0.5*(aTotalSize.Width() - RSC_SP_DLG_INNERBORDER_LEFT - 
RSC_SP_DLG_INNERBORDER_RIGHT - 3*(aCBSize.Width() + RSC_SP_CTRL_GROUP_X) );
-
-aPos = Point(offsetX, aPos.Y() - RSC_CD_CHECKBOX_HEIGHT - 
2*RSC_SP_DLG_INNERBORDER_BOTTOM);
-m_aBundledCbx.SetPosSizePixel(aPos, aCBSize);
-aPos.X() = aPos.X() + aCBSize.Width() + 2 * RSC_SP_CTRL_GROUP_X;
-m_aSharedCbx.SetPosSizePixel(aPos, aCBSize);
-aPos.X() = aPos.X() + aCBSize.Width() + 2 * RSC_SP_CTRL_GROUP_X;
-m_aUserCbx.SetPosSizePixel(aPos, aCBSize);
-
-Size aFTTypeOfExtSize(m_aTypeOfExtTxt.GetSizePixel());
-aPos = Point(RSC_SP_DLG_INNERBORDER_LEFT , aPos.Y() - 
RSC_CD_FIXEDTEXT_HEIGHT - 2*RSC_SP_DLG_INNERBORDER_BOTTOM);
-
-m_aTypeOfExtTxt.SetPosSizePixel(aPos, aFTTypeOfExtSize);
-
-aPos.X() = RSC_SP_DLG_INNERBORDER_LEFT + aFTTypeOfExtSize.Width();
-aPos.Y() = aPos.Y() + RSC_CD_FIXEDTEXT_HEIGHT;
-aDivSize.Width() = aTotalSize.Width() - aFTTypeOfExtSize.Width() - 
RSC_SP_DLG_INNERBORDER_LEFT - RSC_SP_DLG_INNERBORDER_RIGHT;
-m_aDivider2.SetPosSizePixel( aPos , aDivSize );
-
-
+// installation progress bar + cancel button , on the right of the text to get 
extensions
 
 aPos.X() = aTotalSize.Width() - RSC_SP_DLG_INNERBORDER_RIGHT - 
aBtnSize.Width();
 m_aCancelBtn.SetPosPixel( Point( aPos.X(), aPos.Y() - 
((aBtnSize.Height()-aFTSize.Height())/2) ) );
 
-
 // Calc progress height
 long nProgressHeight = aFTSize.Height();
 
@@ -1257,8 +1242,33 @@ void ExtMgrDialog::Resize()
 aPos.X() = aRect1.Right() + RSC_SP_DLG_INNERBORDER_LEFT;
 m_aProgressText.SetPosSizePixel( aPos, aFTSize );
 
+// checkboxes + text type of extensions
+
+Size aCBSize(m_aBundledCbx.GetSizePixel());
+
+offsetX = 0.5*(aTotalSize.Width() - RSC_SP_DLG_INNERBORDER_LEFT - 
RSC_SP_DLG_INNERBORDER_RIGHT - 3*(aCBSize.Width() + RSC_SP_CTRL_GROUP_X) );
+
+aPos = Point(offsetX, aPos.Y() - RSC_CD_CHECKBOX_HEIGHT - 
2*RSC_SP_DLG_INNERBORDER_BOTTOM);
+m_aBundledCbx.SetPosSizePixel(aPos, aCBSize);
+aPos.X() = aPos.X() + aCBSize.Width() + 2 * RSC_SP_CTRL_GROUP_X;
+m_aSharedCbx.SetPosSizePixel(aPos, aCBSize);
+aPos.X() = aPos.X() + aCBSize.Width() + 2 * RSC_SP_CTRL_GROUP_X;
+m_aUserCbx.SetPosSizePixel(aPos, aCBSize);
+
+Size aFTTypeOfExtSize(m_aTypeOfExtTxt.GetSizePixel());
+aPos = Point(RSC_SP_DLG_INNERBORDER_LEFT , aPos.Y() - 
RSC_CD_FIXEDTEXT_HEIGHT - 2*RSC_SP_DLG_INNERBORDER_BOTTOM);
+
+m_aTypeOfExtTxt.SetPosSizePixel(aPos, aFTTypeOfExtSize);
+
+aPos.X() = RSC_SP_DLG_INNERBORDER_LEFT + aFTTypeOfExtSize.Width();
+aPos.Y() = aPos.Y() + RSC_CD_FIXEDTEXT_HEIGHT;
+aDivSize.Width() = aTotalSize.Width() - aFTTypeOfExtSize.Width() - 
RSC_SP_DLG_INNERBORDER_LEFT - RSC_SP_DLG_INNERBORDER_RIGHT;
+m_aDivider2.SetPosSizePixel( aPos , aDivSize );
+
+// extension listbox
+
 Size aSize( aTotalSize.Width() - RSC_SP_DLG_INNERBORDER_LEFT 

[Libreoffice-commits] .: 2 commits - nlpsolver/Extension_nlpsolver.mk solenv/gbuild

2012-01-03 Thread David Tardon
 nlpsolver/Extension_nlpsolver.mk |   10 ++
 solenv/gbuild/Extension.mk   |   14 --
 2 files changed, 14 insertions(+), 10 deletions(-)

New commits:
commit 308b282a8e6a5e6b8bc60b16f7d293051d8ecb7f
Author: David Tardon dtar...@redhat.com
Date:   Wed Jan 4 08:39:47 2012 +0100

do not break when building without langs

diff --git a/solenv/gbuild/Extension.mk b/solenv/gbuild/Extension.mk
index 94fdd2f..6c6cb5e 100644
--- a/solenv/gbuild/Extension.mk
+++ b/solenv/gbuild/Extension.mk
@@ -98,11 +98,11 @@ define gb_Extension_Extension
 $(call gb_Extension_get_target,$(1)) : FILES := META-INF description.xml 
registration
 $(call gb_Extension_get_target,$(1)) : LOCATION := $(SRCDIR)/$(2)
 $(call gb_Extension_get_target,$(1)) : PRJNAME := $(firstword $(subst /, 
,$(2)))
-$(call gb_Extension_get_target,$(1)) : \
-   SDF := $(gb_Extension_SDFLOCATION)$(2)/localize.sdf
-$(call gb_Extension_get_workdir,$(1))/description.xml : \
-   $(SRCDIR)/$(2)/description.xml \
-   $(if $(gb_WITH_LANG),$(gb_Extension_SDFLOCATION)$(2)/localize.sdf)
+$(call gb_Extension_get_workdir,$(1))/description.xml : 
$(SRCDIR)/$(2)/description.xml
+ifneq ($(strip $(gb_WITH_LANG)),)
+$(call gb_Extension_get_target,$(1)) : SDF := 
$(gb_Extension_SDFLOCATION)$(2)/localize.sdf
+$(call gb_Extension_get_workdir,$(1))/description.xml : $$(SDF)
+endif
 $(call 
gb_Extension_add_file,$(1),description-en-US.txt,$(SRCDIR)/$(2)/description-en-US.txt)
 $(eval $(call gb_Module_register_target,$(call 
gb_Extension_get_outdir_target,$(1)),$(call 
gb_Extension_get_clean_target,$(1
 $(call gb_Deliver_add_deliverable,$(call 
gb_Extension_get_outdir_target,$(1)),$(call gb_Extension_get_target,$(1)),$(1))
@@ -124,14 +124,16 @@ endef
 # localize .properties file
 # source file is copied to $(WORKDIR)
 define gb_Extension_localize_properties
+ifneq ($(strip $(gb_WITH_LANG)),)
 $(call gb_Extension_get_target,$(1)) : FILES += $(2) $(foreach lang,$(subst 
-,_,$(gb_Extension_LANGS)),$(subst en_US,$(lang),$(2)))
 $(call gb_Extension_get_target,$(1)) : SDF2 := 
$(gb_Extension_SDFLOCATION)$(subst $(SRCDIR),,$(dir $(3)))localize.sdf
 $(call gb_Extension_get_target,$(1)) : $(call 
gb_Extension_get_workdir,$(1))/$(2)
 $(call gb_Extension_get_workdir,$(1))/$(2) : $(3)
-   $(call gb_Output_announce,$(2),$(true),PRP,3)
+   $$(call gb_Output_announce,$(2),$(true),PRP,3)
mkdir -p $$(dir $$@)
cp -f $$ $$@
$(gb_Extension_PROPMERGECOMMAND) -i $$@ -m $$(SDF2)
+endif
 
 endef
 #  $(call gb_Output_announce,$@,$(true),PRP,3)
commit 7283a51473e6587388a11bcb3f5ccaf7efe5f3f0
Author: David Tardon dtar...@redhat.com
Date:   Wed Jan 4 08:28:04 2012 +0100

just list the files explicitly

diff --git a/nlpsolver/Extension_nlpsolver.mk b/nlpsolver/Extension_nlpsolver.mk
index 542892b..cfe27f6 100644
--- a/nlpsolver/Extension_nlpsolver.mk
+++ b/nlpsolver/Extension_nlpsolver.mk
@@ -33,10 +33,12 @@ $(eval $(call 
gb_Extension_add_file,nlpsolver,components.rdb,$(SRCDIR)/nlpsolver
 $(eval $(call 
gb_Extension_add_file,nlpsolver,nlpsolver.jar,$(OUTDIR)/bin/nlpsolver.jar))
 $(eval $(call 
gb_Extension_add_file,nlpsolver,EvolutionarySolver.jar,$(OUTDIR)/bin/EvolutionarySolver.jar))
 
-$(eval $(foreach trans, $(wildcard 
$(SRCDIR)/nlpsolver/src/locale/*en_US.default), \
-   $(eval $(call gb_Extension_add_file,nlpsolver,locale/$(notdir 
$(trans)),$(trans)
-$(eval $(foreach trans, $(wildcard 
$(SRCDIR)/nlpsolver/src/locale/*en_US.properties), \
-   $(eval $(call 
gb_Extension_localize_properties,nlpsolver,locale/$(notdir 
$(trans)),$(trans)
+$(eval $(call 
gb_Extension_add_file,nlpsolver,locale/NLPSolverCommon_en_US.default,$(SRCDIR)/nlpsolver/src/locale/NLPSolverCommon_en_US.default))
+$(eval $(call 
gb_Extension_add_file,nlpsolver,locale/NLPSolverStatusDialog_en_US.default,$(SRCDIR)/nlpsolver/src/locale/NLPSolverStatusDialog_en_US.default))
+
+$(eval $(call 
gb_Extension_localize_properties,nlpsolver,locale/NLPSolverCommon_en_US.properties,$(SRCDIR)/nlpsolver/src/locale/NLPSolverCommon_en_US.properties))
+$(eval $(call 
gb_Extension_localize_properties,nlpsolver,locale/NLPSolverStatusDialog_en_US.properties,$(SRCDIR)/nlpsolver/src/locale/NLPSolverStatusDialog_en_US.properties))
+
 $(eval $(call 
gb_Extension_add_file,nlpsolver,help/en/com.sun.star.comp.Calc.NLPSolver/Options.xhp,
 \

$(SRCDIR)/nlpsolver/help/en/com.sun.star.comp.Calc.NLPSolver/Options.xhp))
 $(eval $(call 
gb_Extension_add_file,nlpsolver,help/en/com.sun.star.comp.Calc.NLPSolver/Usage.xhp,
 \
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: solenv/gbuild

2012-01-03 Thread David Tardon
 solenv/gbuild/Extension.mk |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 250491832a41eb18eaa58e2ee178afe47b254147
Author: David Tardon dtar...@redhat.com
Date:   Wed Jan 4 08:49:22 2012 +0100

add dep on sdf file

diff --git a/solenv/gbuild/Extension.mk b/solenv/gbuild/Extension.mk
index 6c6cb5e..7e3b6f3 100644
--- a/solenv/gbuild/Extension.mk
+++ b/solenv/gbuild/Extension.mk
@@ -127,6 +127,7 @@ define gb_Extension_localize_properties
 ifneq ($(strip $(gb_WITH_LANG)),)
 $(call gb_Extension_get_target,$(1)) : FILES += $(2) $(foreach lang,$(subst 
-,_,$(gb_Extension_LANGS)),$(subst en_US,$(lang),$(2)))
 $(call gb_Extension_get_target,$(1)) : SDF2 := 
$(gb_Extension_SDFLOCATION)$(subst $(SRCDIR),,$(dir $(3)))localize.sdf
+$(call gb_Extension_get_target,$(1)) : $$(SDF2)
 $(call gb_Extension_get_target,$(1)) : $(call 
gb_Extension_get_workdir,$(1))/$(2)
 $(call gb_Extension_get_workdir,$(1))/$(2) : $(3)
$$(call gb_Output_announce,$(2),$(true),PRP,3)
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [Libreoffice] [REVIEW-3-4-5] bug#36874 to be patched in 3.4.5 as well?

2012-01-03 Thread Tommy
On Tue, 03 Jan 2012 04:38:05 +0100, Korrawit Pruegsanusak  
detective.conan.1...@gmail.com wrote:




Just a reminder. As you are the third reviewer, could you please
cherry-pick it to 3-4-5?

Thanks!
Best Regards,



a last minute 3.4.5 cherry-pick would be a bless!!!

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


[Libreoffice] [PATCH] Correct ARCCOSH's parameter description

2012-01-03 Thread Korrawit Pruegsanusak
Hello all,

I found this while translating.
Could someone please review it?

Also, if this patch could be pushed in -3-5 branch as well?
I've found the wiki page [1] says hard string freeze is next week.
So, it would be good if it could be pushed.

[1] http://wiki.documentfoundation.org/ReleasePlan/3.5

Best Regards,
-- 
Korrawit Pruegsanusak
From 805bdb320838cd42e3802380c8da3ecfb31ff54a Mon Sep 17 00:00:00 2001
From: Korrawit Pruegsanusak detective.conan.1...@gmail.com
Date: Sat, 31 Dec 2011 16:19:23 +0700
Subject: [PATCH] Correct ARCCOSH()'s parameter description

---
 sc/source/ui/src/scfuncs.src |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sc/source/ui/src/scfuncs.src b/sc/source/ui/src/scfuncs.src
index 4458409..1363edb 100644
--- a/sc/source/ui/src/scfuncs.src
+++ b/sc/source/ui/src/scfuncs.src
@@ -3121,7 +3121,7 @@ Resource RID_SC_FUNCTION_DESCRIPTIONS1
 };
 String 3 // Description of Parameter 1
 {
-Text [ en-US ] = A value greater than or equal to 1 for which the hyperbolic cosine is to be returned. ;
+Text [ en-US ] = A value greater than or equal to 1 for which the inverse hyperbolic cosine is to be returned. ;
 };
 };
  // -=*# Resource for function ARCSINHYP #*=-
-- 
1.7.1

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


Re: [Libreoffice] [REVIEW-3-4-5] bug#36874 to be patched in 3.4.5 as well?

2012-01-03 Thread Petr Mladek
Korrawit Pruegsanusak píše v Út 03. 01. 2012 v 10:38 +0700:
  I see the point and agree with your assumption. Your patch makes sense
  and I have pushed it to the 3-4 branch, see
  http://cgit.freedesktop.org/libreoffice/writer/commit/?h=libreoffice-3-4id
 =502ef71db74c3cdb1433c3402a0d93971dc47f1b
 
  We need two more approvals for the 3-4-5 branch.
 
   Looks ok.
 
 Just a reminder. As you are the third reviewer, could you please
 cherry-pick it to 3-4-5?

I have cherry-picked it, see
http://cgit.freedesktop.org/libreoffice/writer/commit/?h=libreoffice-3-4-5id=7f978af6476d73246d7cf6c29b48e88a7465f44e

It will be in 3.4.5-rc2.


Best Regards,
Petr

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


Re: [Libreoffice] [REVIEW-3-4-5][PUSHED:3-4-5] bug#36874 to be patched in 3.4.5 as well?

2012-01-03 Thread Petr Mladek
and correct subject

Petr Mladek píše v Út 03. 01. 2012 v 10:15 +0100:
 Korrawit Pruegsanusak píše v Út 03. 01. 2012 v 10:38 +0700:
   I see the point and agree with your assumption. Your patch makes sense
   and I have pushed it to the 3-4 branch, see
   http://cgit.freedesktop.org/libreoffice/writer/commit/?h=libreoffice-3-4id
  =502ef71db74c3cdb1433c3402a0d93971dc47f1b
  
   We need two more approvals for the 3-4-5 branch.
  
Looks ok.
  
 I have cherry-picked it, see
 http://cgit.freedesktop.org/libreoffice/writer/commit/?h=libreoffice-3-4-5id=7f978af6476d73246d7cf6c29b48e88a7465f44e
 
 It will be in 3.4.5-rc2.

 Best Regards,
 Petr


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


Re: [Libreoffice] [REVIEW 3-4-5][PUSHED:3-4-5] Related: fdo#33463 (writerfilter)

2012-01-03 Thread Petr Mladek
Lubos Lunak píše v Po 02. 01. 2012 v 18:29 +0100:
 On Monday 02 of January 2012, Petr Mladek wrote:
  Miklos Vajna píše v So 31. 12. 2011 v 14:51 +0100:
   I don't have a -3-4 checkout around - could someone check if commit
   52f51f57287fc955fd83b521c80519beb5c923bf in master is what fixes the
   double strike-though problem? If yes, I think it would make sense to
   backport that one to -3-4 as well.
 
  The fix makes perfect sense. The same check is used for other
  attributes, e.g. LN_CFStrike, LN_CFBold, LN_CFCaps = I have pushed it
  to the libreoffice-3-4 branch, see
  http://cgit.freedesktop.org/libreoffice/filters/commit/?h=libreoffice-3-4i
 d=9dcc765e88bf23418ffbf66345e4eaa4c36005e4
 
  Yes, it's correct.
 
  We need two more approvals for the 3-4-5 branch.
 
  One.

Cedric approved it on irc. I have pushed it to the 3-4-5 branch. It will
be in 3.4.5-rc2.

Best Regards,
Petr

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


Re: [Libreoffice] [REVIEW:3-4-5][PUSHED:3-4-5] crash in LO 3.4.5 rc1 : fdo40253

2012-01-03 Thread Petr Mladek
Lubos Lunak píše v Po 02. 01. 2012 v 18:39 +0100:
 On Monday 02 of January 2012, Petr Mladek wrote:
  Petr Mladek píše v Po 02. 01. 2012 v 11:31 +0100:
   Jean-Baptiste Faure píše v Po 26. 12. 2011 v 10:51 +0100:
Hi,
   
Bug fdo40253 seems to be fixed in LO 3.5.0 beta2+ but still crashes LO
3.4.5 rc1. I don't know which commit solved this but is it possible to
backport the fix to 3.4.5 ?
  
   I guess that it has been fixed by
   http://cgit.freedesktop.org/libreoffice/core/commit/?id=cbaadd31d3ff53f18
  a7b8d2b0af947328dc81d91
  
   It looks good and pretty safe to me. Similar thing is done also in
   SdrTableObj::setTableStyle.
 
  It really fixes the crash and works fine. The fix makes sense and looks
  safe = pushed to the 3-4 branch, see
  http://cgit.freedesktop.org/libreoffice/libs-core/commit/?h=libreoffice-3-4
 id=395c05c288116683ffb3bceb658f61694c042b28
 
  We need 2 more approvals for the 3-4-5 branch.
 
  Makes sense.

Radek approved it over irc = 3rd approval = pushed to 3-4-5 branch,
see
http://cgit.freedesktop.org/libreoffice/libs-core/commit/?h=libreoffice-3-4-5id=47fad446a73a27e3335b98745cf77ec9e8065f5f

It will be in 3.4.5-rc2.


Best Regards,
Petr

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


Re: [Libreoffice] [REVIEW:3-4, 3-4-5] crash in LO 3.4.5 rc1 : fdo40253

2012-01-03 Thread Radek Doulik
On Mon, 2012-01-02 at 11:31 +0100, Petr Mladek wrote:
 Jean-Baptiste Faure píše v Po 26. 12. 2011 v 10:51 +0100:
  Hi,
  
  Bug fdo40253 seems to be fixed in LO 3.5.0 beta2+ but still crashes LO
  3.4.5 rc1. I don't know which commit solved this but is it possible to
  backport the fix to 3.4.5 ?

Looks good to me too.

Cheers
Radek

 I guess that it has been fixed by
 http://cgit.freedesktop.org/libreoffice/core/commit/?id=cbaadd31d3ff53f18a7b8d2b0af947328dc81d91
 
 It looks good and pretty safe to me. Similar thing is done also in 
 SdrTableObj::setTableStyle.
 
 Thorsten, is it ok for you to add it into 3.4.5 release?
 
 
 
 Best Regards,
 Petr
 
 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/libreoffice


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


[Libreoffice] make dev-install error, dict-xx.oxt files not found

2012-01-03 Thread Winfried Donkers
I often get a failed make dev_install when building following a git pull 
--rebase.
The error is that dict-xx.oxt (today they were dict-an.oxt, dict-be.oxt, 
dict-el.oxt, dict-gd.oxt, dict-si.oxt and dict-te.oxt) files cannot be found.
This occurred also after a clean git clone on a new machine.

My quick and dirty solution is to copy dict-en.oxt to the missing ones, as I am 
not currently interested in these dictionaries.
But there should be a proper solution/cause to be fixed.

Can anyone help me on this?


Winfried

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


Re: [Libreoffice] [PATCH] fixing some errors when building with clang on linux

2012-01-03 Thread Stephan Bergmann

On 01/02/2012 08:11 PM, August Sodora wrote:

For the past couple of weeks I've been trying to build LO with clang
on linux and have hit a couple of obstacles. I can't get the internal
nss to build and I didn't even try to enable mozilla because it fails
to build on ubuntu anyway. The -Qunused-arguments is really to silence
warnings from clang that -ggdb2 and other options are not recognized.
Ultimately, I can complete make with


Sounds great.  My attempts always failed due to 
http://llvm.org/bugs/show_bug.cgi?id=11250 no code emitted for 
virtual inline function inherited indirectly from class template. 
Interesting that that does not hit you, too -- or do you somehow disable 
hidden visibility?


From my past attempts (unxlngx6) I still have a patch file around that 
is attached.  Maybe it is useful (I always intended to follow up, but 
somehow never found the time).  It does contain a fix for nss (assembler 
comments needing to start with # instead of /).



The first patch attached fixes an error related to implicitly
converting constants to a type that should be too small to hold the
constant. I've added static_casts to make the situation a lot more
explicit which also suppresses the error, I'm just not sure that this
is a real solution.


The literal 0x8000 that is used to initialize sal_Int32 
SvxMSDffHandle.nRangeYMin at 
svx/source/customshapes/EnhancedCustomShapeGeometry.cxx:164 etc. is 
probably better replaced with SAL_MIN_INT32.  Checking all the various 
places, what the best fix would be (change the relevant var. from 
sal_Int32 to sal_uInt32, etc.) would surely be tedious...



The second and third patches simply fix warnings that flood the screen
so often that it makes it difficult to diagnose other problems.


Also see my attached patch.  (I prefer removing names of unused 
parameters, instead of adding (void)x; lines; also, additional patches 
should go to the end of PATCH_FILES, as dmake create_patch creates 
them against all previous patches already applied.)


Stephan
 basebmp/inc/basebmp/bitmapdevice.hxx   |2 +-
 boost/boost_1_44_0-clang.patch |   39 ++
 boost/makefile.mk  |2 +
 cppunit/cppunit-1.12.1-clang.patch |   11 ++
 cppunit/makefile.mk|2 +-
 libcmis/libcmis-0.1.0-clang.patch  |   10 ++
 libcmis/makefile.mk|2 +-
 nss/makefile.mk|3 +-
 nss/nss-3.12.8-with-nspr-4.8.6-clang.patch |  205 
 openssl/makefile.mk|2 +-
 openssl/openssl-0.9.8o-clang.patch |   27 
 python/makefile.mk |4 +-
 12 files changed, 303 insertions(+), 6 deletions(-)

diff --git a/basebmp/inc/basebmp/bitmapdevice.hxx b/basebmp/inc/basebmp/bitmapdevice.hxx
index ca11292..2807b7d 100644
--- a/basebmp/inc/basebmp/bitmapdevice.hxx
+++ b/basebmp/inc/basebmp/bitmapdevice.hxx
@@ -56,7 +56,7 @@ namespace basebmp
 // Temporary. Use like the tools color object
 class Color;
 typedef boost::shared_ptr class BitmapDevice BitmapDeviceSharedPtr;
-typedef boost::shared_ptr class IBitmapDeviceDamageTracker   IBitmapDeviceDamageTrackerSharedPtr;
+typedef boost::shared_ptr struct IBitmapDeviceDamageTracker   IBitmapDeviceDamageTrackerSharedPtr;
 typedef boost::shared_array sal_uInt8RawMemorySharedArray;
 typedef boost::shared_ptr const std::vectorColor   PaletteMemorySharedVector;
 
diff --git a/boost/boost_1_44_0-clang.patch b/boost/boost_1_44_0-clang.patch
new file mode 100644
index 000..222ed86
--- /dev/null
+++ b/boost/boost_1_44_0-clang.patch
@@ -0,0 +1,39 @@
+--- misc/boost_1_44_0/boost/optional/optional.hpp	2011-12-02 21:01:18.833604597 +0100
 misc/build/boost_1_44_0/boost/optional/optional.hpp	2011-12-02 21:01:00.767778299 +0100
+@@ -846,12 +846,12 @@
+ 
+ templateclass T
+ inline
+-bool operator == ( none_t x, optionalT const y )
++bool operator == ( none_t, optionalT const y )
+ { return equal_pointees(optionalT() ,y); }
+ 
+ templateclass T
+ inline
+-bool operator  ( none_t x, optionalT const y )
++bool operator  ( none_t, optionalT const y )
+ { return less_pointees(optionalT() ,y); }
+ 
+ templateclass T
+--- misc/boost_1_44_0/boost/ptr_container/detail/default_deleter.hpp	2008-03-22 22:45:55.0 +0100
 misc/build/boost_1_44_0/boost/ptr_container/detail/default_deleter.hpp	2011-12-02 20:14:04.606949179 +0100
+@@ -61,7 +61,7 @@
+ { 
+ default_deleter() { }
+ templatetypename TT
+-default_deleter(default_deleterTT tt) { }
++default_deleter(default_deleterTT) { }
+ };
+ 
+ } } } // End namespaces ptr_container_detail, move_ptrs, boost.
+--- misc/boost_1_44_0/boost/ptr_container/ptr_sequence_adapter.hpp	2011-12-02 20:15:30.747191950 +0100
 misc/build/boost_1_44_0/boost/ptr_container/ptr_sequence_adapter.hpp	2011-12-02 20:14:35.148680353 +0100
+@@ -664,7 +664,7 @@
+ 
+   

Re: [Libreoffice] [REVIEW:3-4-5][PUSHED:3-4-5] crash in LO 3.4.5 rc1 : fdo40253

2012-01-03 Thread Jean-Baptiste Faure
Le 03/01/2012 11:20, Petr Mladek a écrit :
 Lubos Lunak píše v Po 02. 01. 2012 v 18:39 +0100:
 On Monday 02 of January 2012, Petr Mladek wrote:
 Petr Mladek píše v Po 02. 01. 2012 v 11:31 +0100:
 Jean-Baptiste Faure píše v Po 26. 12. 2011 v 10:51 +0100:
 Hi,

 Bug fdo40253 seems to be fixed in LO 3.5.0 beta2+ but still crashes LO
 3.4.5 rc1. I don't know which commit solved this but is it possible to
 backport the fix to 3.4.5 ?

 I guess that it has been fixed by
 http://cgit.freedesktop.org/libreoffice/core/commit/?id=cbaadd31d3ff53f18
 a7b8d2b0af947328dc81d91

 It looks good and pretty safe to me. Similar thing is done also in
 SdrTableObj::setTableStyle.

 It really fixes the crash and works fine. The fix makes sense and looks
 safe = pushed to the 3-4 branch, see
 http://cgit.freedesktop.org/libreoffice/libs-core/commit/?h=libreoffice-3-4
 id=395c05c288116683ffb3bceb658f61694c042b28

 We need 2 more approvals for the 3-4-5 branch.

  Makes sense.
 
 Radek approved it over irc = 3rd approval = pushed to 3-4-5 branch,
 see
 http://cgit.freedesktop.org/libreoffice/libs-core/commit/?h=libreoffice-3-4-5id=47fad446a73a27e3335b98745cf77ec9e8065f5f
 
 It will be in 3.4.5-rc2.

Many thanks :-)

Best regards
JBF

-- 
Seuls des formats ouverts peuvent assurer la pérennité de vos documents.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] bug 36874 (label printing) further improvement?

2012-01-03 Thread Ivan Timofeev

Hi Rainer, hi Winfried,

03.01.2012 11:41, Rainer Bielefeld пишет:

Winfried Donkers schrieb:

(See bug 36874 (and this list) for history)



I am quite willing to further improve the labelprinting functionality by
adding the page size to the label definitions and label-creation code,
but I need someone who is willing to improve/change the UI


Hello,

Ivan Timofeev was very active eliminating problems and improving GUI.

Ivan, what do you think? Are you interested?


Interested, but extremely busy the whole January through... :-(
I'm sorry. But an UI is an easy piece of programming; Winfried, may be 
you need a few little tips to start, and then there will be no 
questions? If so, please ask on using the mailing list (or the IRC).


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


Re: [Libreoffice] bug 36874 (label printing) further improvement?

2012-01-03 Thread Winfried Donkers
Hi Ivan,

 Ivan, what do you think? Are you interested?

Interested, but extremely busy the whole January through... :-(
I'm sorry. But an UI is an easy piece of programming; Winfried, may be 
you need a few little tips to start, and then there will be no 
questions? If so, please ask on using the mailing list (or the IRC).

I'm not out of work myself too, so it may well take me longer than just 
January...
I will start on the structure (label definitions and coding).
When that is done, I will certainly need tips to start (no recent experience 
with UI programming and then mostly with Borland C++ Builder).

You'll hear from me :)

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


Re: [Libreoffice] make dev-install error, dict-xx.oxt files not found

2012-01-03 Thread Tim Hardeck
Hi Winfried,

I think running git pull -r in core/dictionaries should fix this.

Tim

On 01/03/2012 12:10 PM, Winfried Donkers wrote:

 I often get a failed make dev_install when building following a git
 pull --rebase.

 The error is that dict-xx.oxt (today they were dict-an.oxt,
 dict-be.oxt, dict-el.oxt, dict-gd.oxt, dict-si.oxt and dict-te.oxt)
 files cannot be found.

 This occurred also after a clean git clone on a new machine.

  

 My quick and dirty solution is to copy dict-en.oxt to the missing
 ones, as I am not currently interested in these dictionaries.

 But there should be a proper solution/cause to be fixed.

  

 Can anyone help me on this?

  

  

 Winfried

  



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


-- 
SUSE LINUX Products GmbH, GF: Jeff Hawn, Jennifer Guild, Felix Imendörffer, HRB 
16746 (AG Nürnberg)
Maxfeldstr. 5, 90409 Nürnberg, Germany
T: +49 (0) 911 74053-0  F: +49 (0) 911 74053-483
http://www.suse.de/



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


[Libreoffice] [PATCH] Remove unused tools function.

2012-01-03 Thread Marcel Metz
Hello lo-devs,

this patch removes the unused (according to OpenGrok) GetIsoFallback
function from the tools module.

regards Marcel

---
 rsc/source/parser/rscdb.cxx |1 -
 tools/Library_tl.mk |1 -
 tools/Package_inc.mk|1 -
 tools/inc/tools/isofallback.hxx |   40 --
 tools/source/rc/isofallback.cxx |   70
---
 tools/source/rc/resmgr.cxx  |2 -
 6 files changed, 0 insertions(+), 115 deletions(-)
 delete mode 100644 tools/inc/tools/isofallback.hxx
 delete mode 100644 tools/source/rc/isofallback.cxx


diff --git a/rsc/source/parser/rscdb.cxx b/rsc/source/parser/rscdb.cxx
index 2a36f69..3c8d93d 100644
--- a/rsc/source/parser/rscdb.cxx
+++ b/rsc/source/parser/rscdb.cxx
@@ -35,7 +35,6 @@
 
 #include tools/fsys.hxx
 #include tools/rc.h
-#include tools/isofallback.hxx
 #include rtl/strbuf.hxx
 #include sal/macros.h
 
diff --git a/tools/Library_tl.mk b/tools/Library_tl.mk
index 8dc9215..30bf9fd 100644
--- a/tools/Library_tl.mk
+++ b/tools/Library_tl.mk
@@ -95,7 +95,6 @@ $(eval $(call gb_Library_add_exception_objects,tl,\
 tools/source/misc/extendapplicationenvironment \
 tools/source/misc/getprocessworkingdir \
 tools/source/misc/solarmutex \
-tools/source/rc/isofallback \
 tools/source/rc/rc \
 tools/source/rc/resary \
 tools/source/rc/resmgr \
diff --git a/tools/Package_inc.mk b/tools/Package_inc.mk
index c17aedd..91642c4 100644
--- a/tools/Package_inc.mk
+++ b/tools/Package_inc.mk
@@ -53,7 +53,6 @@ $(eval $(call gb_Package_add_file,tools_inc,inc/tools/inetdef.hxx,tools/inetdef.
 $(eval $(call gb_Package_add_file,tools_inc,inc/tools/inetmime.hxx,tools/inetmime.hxx))
 $(eval $(call gb_Package_add_file,tools_inc,inc/tools/inetmsg.hxx,tools/inetmsg.hxx))
 $(eval $(call gb_Package_add_file,tools_inc,inc/tools/inetstrm.hxx,tools/inetstrm.hxx))
-$(eval $(call gb_Package_add_file,tools_inc,inc/tools/isofallback.hxx,tools/isofallback.hxx))
 $(eval $(call gb_Package_add_file,tools_inc,inc/tools/line.hxx,tools/line.hxx))
 $(eval $(call gb_Package_add_file,tools_inc,inc/tools/link.hxx,tools/link.hxx))
 $(eval $(call gb_Package_add_file,tools_inc,inc/tools/list.hxx,tools/list.hxx))
diff --git a/tools/inc/tools/isofallback.hxx b/tools/inc/tools/isofallback.hxx
deleted file mode 100644
index 4a23462..000
--- a/tools/inc/tools/isofallback.hxx
+++ /dev/null
@@ -1,40 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org.  If not, see
- * http://www.openoffice.org/license.html
- * for a copy of the LGPLv3 License.
- *
- /
-
-#ifndef _ISOFALLBACK_HXX
-#define _ISOFALLBACK_HXX
-
-#include rtl/string.hxx
-#include tools/toolsdllapi.h
-
-// Return true if valid fallback found
-TOOLS_DLLPUBLIC bool GetIsoFallback(rtl::OString rLanguage);
-
-#endif //_ISOFALLBACK_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/tools/source/rc/isofallback.cxx b/tools/source/rc/isofallback.cxx
deleted file mode 100644
index 3c134df..000
--- a/tools/source/rc/isofallback.cxx
+++ /dev/null
@@ -1,70 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU 

Re: [Libreoffice] [PUSHED][PATCH] Correct ARCCOSH's parameter description

2012-01-03 Thread Ivan Timofeev

Hi Korrawit,

31.12.2011 14:46, Korrawit Pruegsanusak пишет:

I found this while translating.
Could someone please review it?


Looks great! Nice catch, thanks! :)


Also, if this patch could be pushed in -3-5 branch as well?
I've found the wiki page [1] says hard string freeze is next week.
So, it would be good if it could be pushed.


Pushed to 3-5:
http://cgit.freedesktop.org/libreoffice/core/commit/?h=libreoffice-3-5id=321d449a07740ab82680e7502817d4035f380744

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


Re: [Libreoffice] [PATCH] Fix for bug fdo#44110, New Math symbols issues in Windows

2012-01-03 Thread Olivier Hallot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Kendy

Em 30-12-2011 06:36, Jan Holesovsky escreveu:
 Hi Olivier,
 
 On 2011-12-24 at 00:13 -0200, Olivier Hallot wrote:
 
 Please find the patch attached in bug 44110, together with the
 description of the issue and fix.

 https://bugs.freedesktop.org/show_bug.cgi?id=44110
 
 Terribly sorry for being late with reviewing :-(
 
 I looked at the patch, and it seems to me as if it changes much more
 than just the affected characters.  I think the biggest change that
 seems to make it huge is changing Encoding: from Custom to UnicodeBmp.
 Was that deliberate?  If yes, I think we should split the commit into 2
 - the huge change, and the fix of the math symbols.  Can you please have
 a look?
 
 Thank you,
 Kendy
 

WRT to this patch, there are two files; the binary file opens.ttf
and the text file OpenSymbol.sfd.

I used fontforge tool under ubuntu to draw the new characters. This tool
apparently needs only the binary ttf file to let you edit and draw
fonts. The sfd file is generated based on the ttf binaries. For what it
worth, LibreOffice needs only the ttf file and the sfd is not even
packed into the distribuables.

So actually I am not sure how to handle the sfd file.It appears to be
superfluous.

Please advise.
- -- 
Olivier Hallot
Founder, Board of Directors Member - The Document Foundation
LibreOffice translation leader for Brazilian Portuguese
+55-21-8822-8812
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJPAwzFAAoJEJp3R7nH3vLxn1QIAIqzjTBlev5PrDxp9Zv5nW+t
IAuizqZRb0yNTFdanI533WrcReVqaiYQF3WAklrNX3wKx3fXm0V171sR9wIRZF6T
Qy+8VmwSUiB1Lq4zTXCjswt/C9VZxZE0Okn5Hpmz+FQvMrNzkRmEnU/1f14pXH+L
GqPPUJhhe5ttBK81RcqjohOSlDDuPrW08KpLe7UNcgYIn9R1ITvZfTkJjKj4qguy
Rd7b3UCL4pkCfaU2RttU3w0p3tfCIJbGzPHNGCw4UmIUhVWLEAtkJyXE3C5vEsBQ
9oq9OD8TT1ojfaeTsGzH+sLaH/DCUvhoZFxwcW2xBUn/hRiIbYONac2sSLDXWI0=
=cRJZ
-END PGP SIGNATURE-
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] [PATCH 1/5] Removed unnecessary tools includes.

2012-01-03 Thread Marcel Metz
Hello lo-devs,

this patch series removes a lot of unnecessary includes for the various
tools header. The patches without suffix should be applied to the core
repository, the .binfilter.patch suffix should be applied to the
binfilter repository. I've tested the build with the configuration
--enable-binfilter --enable-dbgutil --enable-debug, is this sufficient
or did I miss another important configuration, that enables some
conditional compiled code? I've only build this on linux-x86_64, but the
patch also touches some of the mac specific code like
fpicker/source/aqua/SalAquaFilePicker.mm so it would be maybe a good
idea to test this patch.


regards Marcel Metz

---
 basic/source/classes/sb.cxx|1 -
 chart2/source/view/axes/VAxisProperties.cxx|1 -
 chart2/source/view/diagram/VDiagram.cxx|1 -
 chart2/source/view/main/ShapeFactory.cxx   |1 -
 connectivity/source/drivers/calc/CTable.cxx|1 -
 connectivity/source/drivers/flat/ETable.cxx|1 -
 connectivity/workben/testmoz/main.cxx  |1 -
 connectivity/workben/testmoz/mozthread.cxx |1 -
 cui/source/dialogs/hldocntp.cxx|1 -
 cui/source/options/optpath.cxx |1 -
 dbaccess/source/ext/adabas/AdabasNewDb.cxx |1 -
 dbaccess/source/ui/browser/brwctrlr.cxx|1 -
 desktop/source/app/appfirststart.cxx   |1 -
 desktop/source/app/appinit.cxx |1 -
 desktop/source/migration/migration.cxx |1 -
 editeng/source/items/textitem.cxx  |1 -
 editeng/source/rtf/svxrtf.cxx  |1 -
 extensions/source/nsplugin/source/so_instance.cxx  |1 -
 extensions/source/scanner/sanedlg.hxx  |1 -
 filter/source/graphicfilter/eps/eps.cxx|1 -
 forms/source/component/ComboBox.hxx|2 --
 forms/source/component/EditBase.hxx|1 -
 forms/source/richtext/richtextvclcontrol.cxx   |3 ---
 framework/inc/jobs/jobdata.hxx |1 -
 framework/inc/uiconfiguration/imagemanager.hxx |3 ---
 .../inc/uiconfiguration/moduleimagemanager.hxx |3 ---
 framework/source/fwe/classes/addonsoptions.cxx |1 -
 framework/source/fwe/classes/bmkmenu.cxx   |1 -
 framework/source/services/sessionlistener.cxx  |1 -
 .../source/uiconfiguration/imagemanagerimpl.hxx|3 ---
 idl/source/cmptools/lex.cxx|1 -
 l10ntools/source/export2.cxx   |1 -
 padmin/source/adddlg.cxx   |1 +
 padmin/source/cmddlg.cxx   |1 +
 padmin/source/cmddlg.hxx   |1 -
 padmin/source/newppdlg.cxx |1 +
 padmin/source/padialog.hxx |1 -
 reportdesign/source/core/api/FixedText.cxx |1 +
 reportdesign/source/core/api/FormatCondition.cxx   |1 +
 reportdesign/source/core/api/FormattedField.cxx|1 +
 reportdesign/source/core/api/ImageControl.cxx  |1 +
 .../source/core/inc/ReportControlModel.hxx |1 -
 sc/source/core/inc/core_pch.hxx|1 -
 sc/source/filter/inc/biff.hxx  |1 -
 sc/source/filter/inc/excrecds.hxx  |1 -
 sc/source/filter/inc/filt_pch.hxx  |1 -
 sc/source/filter/inc/qpro.hxx  |1 -
 sc/source/filter/inc/qprostyle.hxx |1 -
 sc/source/filter/qpro/qprostyle.cxx|1 -
 .../ui/Accessibility/AccessibleContextBase.cxx |1 -
 sc/source/ui/inc/ui_pch.hxx|1 -
 sd/source/filter/eppt/eppt.cxx |1 -
 sd/source/filter/ppt/propread.cxx  |1 -
 sd/source/filter/ppt/propread.hxx  |1 -
 sd/source/ui/annotations/annotationwindow.hxx  |3 ---
 sd/source/ui/dlg/morphdlg.cxx  |1 -
 sd/source/ui/dlg/vectdlg.cxx   |1 -
 .../controls/RecentMasterPagesSelector.cxx |1 -
 sfx2/source/appl/app.cxx   |1 -
 sfx2/source/appl/appcfg.cxx|1 -
 sfx2/source/appl/appdata.cxx   |1 -
 sfx2/source/appl/appinit.cxx   |1 -
 sfx2/source/appl/appmain.cxx   |1 -
 sfx2/source/appl/appmisc.cxx   |1 -
 sfx2/source/appl/appserv.cxx   |1 -
 sfx2/source/appl/appuno.cxx|1 -
 sfx2/source/appl/newhelp.cxx   |1 -
 sfx2/source/bastyp/fltfnc.cxx  |1 -
 sfx2/source/doc/docfac.cxx |1 -
 sfx2/source/doc/docfile.cxx|1 -
 sfx2/source/doc/objcont.cxx   

[Libreoffice] [PATCH 3/5] Removed unnecessary tools includes.

2012-01-03 Thread Marcel Metz
---
 cui/source/factory/cuiresmgr.cxx   |1 -
 cui/source/factory/dlgfact.cxx |1 -
 cui/source/inc/about.hxx   |1 -
 dbaccess/source/core/api/viewcontainer.cxx |1 -
 dbaccess/source/ui/inc/charsets.hxx|1 -
 dbaccess/source/ui/inc/imageprovider.hxx   |1 +
 desktop/source/app/userinstall.cxx |1 -
 .../deployment/gui/dp_gui_dependencydialog.cxx |1 -
 .../source/deployment/gui/dp_gui_updatedialog.cxx  |1 -
 .../deployment/gui/dp_gui_updateinstalldialog.cxx  |1 -
 desktop/source/deployment/inc/dp_resource.h|1 -
 desktop/source/deployment/misc/dp_resource.cxx |1 +
 editeng/inc/editeng/outliner.hxx   |1 +
 forms/source/richtext/richtextunowrapper.cxx   |1 +
 fpicker/source/aqua/SalAquaFilePicker.mm   |1 -
 fpicker/source/aqua/SalAquaFolderPicker.mm |2 --
 fpicker/source/office/iodlgimp.cxx |1 -
 framework/source/dispatch/menudispatcher.cxx   |1 -
 framework/source/services/backingcomp.cxx  |1 -
 sc/source/core/tool/compiler.cxx   |1 -
 sd/source/ui/dlg/sddlgfact.cxx |1 -
 sfx2/source/appl/appcfg.cxx|1 -
 sfx2/source/appl/appdata.cxx   |1 -
 sfx2/source/appl/appinit.cxx   |1 -
 sfx2/source/appl/appuno.cxx|1 -
 sfx2/source/config/evntconf.cxx|1 -
 sfx2/source/dialog/filtergrouping.cxx  |1 -
 sfx2/source/doc/doctempl.cxx   |1 -
 sfx2/source/doc/objxtor.cxx|1 -
 svtools/source/config/miscopt.cxx  |1 -
 svtools/source/contnr/contentenumeration.hxx   |1 +
 svtools/source/dialogs/insdlg.cxx  |1 -
 svtools/source/graphic/transformer.cxx |1 -
 svx/source/dialog/dialmgr.cxx  |1 -
 svx/source/form/fmobj.cxx  |1 -
 svx/source/inc/AccessibleFrameSelector.hxx |1 +
 sw/inc/ccoll.hxx   |1 -
 sw/source/ui/inc/swrenamexnameddlg.hxx |1 -
 sw/source/ui/inc/swuiccoll.hxx |1 +
 sw/source/ui/inc/swuicnttab.hxx|1 -
 tools/inc/tools/resary.hxx |3 ++-
 tools/source/fsys/wntmsc.cxx   |1 -
 tools/source/rc/resary.cxx |1 +
 unotools/source/config/defaultoptions.cxx  |1 -
 unotools/source/config/extendedsecurityoptions.cxx |1 -
 unotools/source/config/inetoptions.cxx |1 -
 unotools/source/config/pathoptions.cxx |1 -
 vcl/aqua/source/app/salsys.cxx |2 --
 vcl/inc/vcl/bitmap.hxx |2 +-
 vcl/inc/vcl/pdfwriter.hxx  |1 +
 vcl/ios/source/app/salsys.cxx  |2 --
 vcl/source/control/field.cxx   |1 -
 52 files changed, 12 insertions(+), 46 deletions(-)


diff --git a/cui/source/factory/cuiresmgr.cxx b/cui/source/factory/cuiresmgr.cxx
index 8e3bc31..20d41b3 100644
--- a/cui/source/factory/cuiresmgr.cxx
+++ b/cui/source/factory/cuiresmgr.cxx
@@ -29,7 +29,6 @@
 // include ---
 
 #include dialmgr.hxx
-#include tools/rc.hxx
 #include svl/solar.hrc
 #include vcl/svapp.hxx
 
diff --git a/cui/source/factory/dlgfact.cxx b/cui/source/factory/dlgfact.cxx
index dc7c368..55b2b72 100644
--- a/cui/source/factory/dlgfact.cxx
+++ b/cui/source/factory/dlgfact.cxx
@@ -29,7 +29,6 @@
 #include align.hxx //add for SvxAlignmentTabPage
 #include dlgfact.hxx
 
-#include tools/rc.hxx
 #include sfx2/basedlgs.hxx
 #include sfx2/app.hxx
 #include sfx2/request.hxx
diff --git a/cui/source/inc/about.hxx b/cui/source/inc/about.hxx
index 4e09e0e..e7e5227 100644
--- a/cui/source/inc/about.hxx
+++ b/cui/source/inc/about.hxx
@@ -30,7 +30,6 @@
 
 // include ---
 
-#include tools/resary.hxx
 #include vcl/button.hxx
 #include vcl/accel.hxx
 #include svtools/svmedit.hxx
diff --git a/dbaccess/source/core/api/viewcontainer.cxx b/dbaccess/source/core/api/viewcontainer.cxx
index 83badfb..4f004e1 100644
--- a/dbaccess/source/core/api/viewcontainer.cxx
+++ b/dbaccess/source/core/api/viewcontainer.cxx
@@ -34,7 +34,6 @@
 #include View.hxx
 
 #include tools/debug.hxx
-#include tools/wldcrd.hxx
 #include comphelper/enumhelper.hxx
 #include comphelper/types.hxx
 #include connectivity/dbtools.hxx
diff --git a/dbaccess/source/ui/inc/charsets.hxx b/dbaccess/source/ui/inc/charsets.hxx
index f5f5169..89fa3d4 100644
--- a/dbaccess/source/ui/inc/charsets.hxx
+++ b/dbaccess/source/ui/inc/charsets.hxx
@@ -30,7 +30,6 @@
 

[Libreoffice] [PATCH 4/5] Removed unnecessary tools includes.

2012-01-03 Thread Marcel Metz
---
 avmedia/source/gstreamer/gstcommon.hxx |1 -
 avmedia/source/quicktime/quicktimecommon.hxx   |1 -
 avmedia/source/win/wincommon.hxx   |1 -
 basic/source/sbx/sbxres.cxx|2 ++
 basic/source/sbx/sbxres.hxx|2 +-
 dbaccess/source/core/dataaccess/ModelImpl.hxx  |1 -
 dbaccess/source/core/dataaccess/datasource.hxx |1 -
 .../source/inc/OAuthenticationContinuation.hxx |2 +-
 dbaccess/source/ui/browser/formadapter.cxx |1 -
 dbaccess/source/ui/inc/JoinDesignView.hxx  |1 -
 dbaccess/source/ui/inc/RelationDesignView.hxx  |1 -
 dbaccess/source/ui/inc/TableRow.hxx|1 -
 dbaccess/source/ui/inc/charsets.hxx|2 +-
 desktop/source/app/langselect.hxx  |1 -
 .../deployment/gui/dp_gui_dependencydialog.cxx |1 -
 editeng/source/editeng/editdbg.hxx |1 -
 extensions/source/dbpilots/optiongrouplayouter.cxx |1 -
 .../source/plugin/inc/plugin/unx/mediator.hxx  |1 -
 extensions/source/propctrlr/eformshelper.hxx   |2 +-
 extensions/source/propctrlr/pcrcommon.hxx  |1 -
 extensions/source/propctrlr/proplinelistener.hxx   |2 +-
 extensions/source/propctrlr/stringdefine.hxx   |1 -
 extensions/source/xmlextract/xmxcom.hxx|1 -
 extensions/workben/testcomponent.cxx   |1 -
 filter/inc/filter/msfilter/mstoolbar.hxx   |1 -
 forms/source/component/imgprod.hxx |1 -
 formula/inc/formula/ExternalReferenceHelper.hxx|2 +-
 fpicker/source/office/fpsmartcontent.cxx   |1 -
 framework/inc/framework/eventsconfiguration.hxx|1 -
 framework/inc/framework/statusbarconfiguration.hxx |1 -
 framework/inc/framework/toolboxconfiguration.hxx   |1 -
 framework/source/classes/fwlresid.cxx  |1 -
 framework/source/fwe/classes/fwkresid.cxx  |1 -
 .../uiconfiguration/uicategorydescription.cxx  |1 -
 l10ntools/inc/l10ntools/directory.hxx  |1 -
 l10ntools/source/directory.cxx |2 +-
 linguistic/source/convdicxml.hxx   |1 -
 lotuswordpro/source/filter/lwpheader.hxx   |1 -
 reportdesign/source/ui/inc/FunctionHelper.hxx  |1 -
 rsc/inc/rscall.h   |1 -
 rsc/inc/rscdb.hxx  |1 +
 rsc/inc/rsctools.hxx   |3 ++-
 sc/inc/dpsave.hxx  |1 -
 sc/inc/sortparam.hxx   |1 -
 sc/source/core/inc/core_pch.hxx|1 -
 sc/source/filter/inc/biff.hxx  |1 -
 sc/source/filter/inc/decl.h|1 -
 sc/source/filter/inc/filt_pch.hxx  |1 -
 sc/source/filter/inc/formel.hxx|1 -
 sc/source/filter/inc/qproform.hxx  |1 -
 sc/source/filter/xml/sheetdata.cxx |2 +-
 sc/source/ui/inc/formdata.hxx  |1 -
 sc/source/ui/inc/ui_pch.hxx|1 -
 sc/source/ui/unoobj/scdetect.hxx   |1 -
 sc/source/ui/unoobj/unodoc.cxx |2 +-
 sd/source/ui/dlg/sdabstdlg.cxx |2 +-
 sd/source/ui/inc/unokywds.hxx  |1 -
 .../toolpanel/controls/RecentlyUsedMasterPages.hxx |1 -
 sd/source/ui/unoidl/sddetect.hxx   |1 -
 sd/source/ui/unoidl/unodoc.cxx |2 +-
 sfx2/inc/frmload.hxx   |1 -
 sfx2/inc/sfx2/sfxresid.hxx |1 -
 sfx2/source/dialog/sfxdlg.cxx  |1 -
 sfx2/source/doc/SfxDocumentMetaData.cxx|1 -
 starmath/source/smdetect.hxx   |1 -
 starmath/source/unodoc.cxx |1 -
 svl/source/items/cntwall.cxx   |1 -
 svl/source/memtools/svarray.cxx|1 -
 svtools/inc/svtools/accessibilityoptions.hxx   |1 -
 svtools/source/contnr/treelist.cxx |1 -
 svtools/source/misc/wallitem.cxx   |1 -
 svtools/workben/cui/loadlib.cxx|1 -
 svx/inc/svx/fmsrccfg.hxx   |1 -
 svx/inc/svx/msdffdef.hxx   |1 -
 svx/inc/svx/sdrhittesthelper.hxx   |1 -
 svx/inc/svx/svdsob.hxx |4 
 svx/source/accessibility/ShapeTypeHandler.cxx  |1 -
 svx/source/form/fmtools.cxx|1 -
 svx/source/inc/fmvwimp.hxx |1 -
 svx/source/smarttags/SmartTagMgr.cxx   |1 -
 sw/inc/SwNumberTree.hxx|1 -
 sw/inc/index.hxx

[Libreoffice] [PATCH 5/5] Removed unnecessary tools includes.

2012-01-03 Thread Marcel Metz
---
 sd/source/filter/eppt/pptx-epptbase.cxx |1 -
 sfx2/source/doc/docfile.cxx |1 -
 sfx2/source/doc/objstor.cxx |1 -
 vcl/unx/generic/app/salinst.cxx |1 -
 4 files changed, 0 insertions(+), 4 deletions(-)


diff --git a/sd/source/filter/eppt/pptx-epptbase.cxx b/sd/source/filter/eppt/pptx-epptbase.cxx
index 75bab47..f4823aa 100644
--- a/sd/source/filter/eppt/pptx-epptbase.cxx
+++ b/sd/source/filter/eppt/pptx-epptbase.cxx
@@ -35,7 +35,6 @@
 #include tools/datetime.hxx
 #include tools/poly.hxx
 #include tools/stream.hxx
-#include tools/zcodec.hxx
 #include vcl/graph.hxx
 #include vcl/bmpacc.hxx
 #include vcl/gradient.hxx
diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx
index abe827e..d4711c6 100644
--- a/sfx2/source/doc/docfile.cxx
+++ b/sfx2/source/doc/docfile.cxx
@@ -72,7 +72,6 @@
 #include com/sun/star/beans/PropertyValue.hpp
 #include com/sun/star/security/DocumentSignatureInformation.hpp
 #include com/sun/star/security/XDocumentDigitalSignatures.hpp
-#include tools/zcodec.hxx
 #include tools/urlobj.hxx
 #include unotools/tempfile.hxx
 #include comphelper/processfactory.hxx
diff --git a/sfx2/source/doc/objstor.cxx b/sfx2/source/doc/objstor.cxx
index 3fbe37d..8355ebd 100644
--- a/sfx2/source/doc/objstor.cxx
+++ b/sfx2/source/doc/objstor.cxx
@@ -31,7 +31,6 @@
 #include svl/eitem.hxx
 #include svl/stritem.hxx
 #include svl/intitem.hxx
-#include tools/zcodec.hxx
 #include com/sun/star/frame/XStorable.hpp
 #include com/sun/star/frame/XModel.hpp
 #include com/sun/star/frame/XFrame.hpp
diff --git a/vcl/unx/generic/app/salinst.cxx b/vcl/unx/generic/app/salinst.cxx
index 33e4ede..3fac1ec 100644
--- a/vcl/unx/generic/app/salinst.cxx
+++ b/vcl/unx/generic/app/salinst.cxx
@@ -32,7 +32,6 @@
 #include stdlib.h
 
 #include osl/module.hxx
-#include tools/solarmutex.hxx
 
 #include unx/salunx.h
 #include unx/saldata.hxx

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


[Libreoffice] [PATCH 1/2] Added missing includes.

2012-01-03 Thread Marcel Metz
---
 binfilter/inc/bf_starmath/smmod.hxx |2 ++
 binfilter/inc/bf_sw/shellres.hxx|2 +-
 2 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/binfilter/inc/bf_starmath/smmod.hxx
b/binfilter/inc/bf_starmath/smmod.hxx
index f3f4ec4..1ec73db 100644
--- a/binfilter/inc/bf_starmath/smmod.hxx
+++ b/binfilter/inc/bf_starmath/smmod.hxx
@@ -29,6 +29,8 @@
 #ifndef _SMMOD_HXX
 #define _SMMOD_HXX
 +#include i18npool/lang.h
+#include tools/rc.hxx
 #include tools/resary.hxx
 #include bf_svtools/lstner.hxx
 #include bf_svtools/colorcfg.hxx
diff --git a/binfilter/inc/bf_sw/shellres.hxx
b/binfilter/inc/bf_sw/shellres.hxx
index 847d749..9f6c979 100644
--- a/binfilter/inc/bf_sw/shellres.hxx
+++ b/binfilter/inc/bf_sw/shellres.hxx
@@ -31,7 +31,7 @@
 #include bf_svtools/bf_solar.h
  -
+#include tools/rc.hxx
 #include vcl/bitmap.hxx
  #ifndef _SVSTDARR_HXX
-- 
1.7.6.4

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


[Libreoffice] [Bug 35673] LibreOffice 3.4 most annoying bugs

2012-01-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Bug 35673 depends on bug 41089, which changed state.

Bug 41089 Summary: FILESAVE: Impossible with password protection
https://bugs.freedesktop.org/show_bug.cgi?id=41089

   What|Old Value   |New Value

 Resolution||WORKSFORME
 Status|NEW |RESOLVED

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are on the CC list for the bug.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] [libreoffice-l10n] Re: [Libreoffice-qa] Online update service up running

2012-01-03 Thread Jan Holesovsky
Hi Olivier,

[taking this rather to the dev ML :-)]

On 2012-01-03 at 07:06 -0200, Olivier Hallot wrote:

 I guess LibreOffice will send a ping to a given URL and get a response
 that a new version is available.

Yes.

  I affirmative, can this URL be placed
 in a configuration (XML) file (so that special deployments can handle it)

Yes, the check URL can be changed in the configuration - see UpdateURL
in program/version{rc,.ini}

 Also, as far as I remember, OpenOffice had a download interface for the
 new version. Are you going to reactivate it? I would also like to let
 special deployments to handle the download URL in a XML file.

Download interface, like that it downloaded the version when available,
and just offered the user to install it when she wants?  The code that
handles this is still there, but I don't provide this on the server side
as I think this is too intrusive, and potentially dangerous for people
who are still on dial-up.

Or did you mean something different?

Regards,
Kendy

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


Re: [Libreoffice] [PATCH][PUSHED] Remove unused tools function.

2012-01-03 Thread Lubos Lunak
On Tuesday 03 of January 2012, Marcel Metz wrote:
 Hello lo-devs,

 this patch removes the unused (according to OpenGrok) GetIsoFallback
 function from the tools module.

 Looks ok, pushed.

-- 
 Lubos Lunak
 l.lu...@suse.cz
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] [ANNOUNCE] libreoffice-3.4.5.2 tag created (3.4.5-rc2)

2012-01-03 Thread Petr Mladek
Hi,

there have been created the libreoffice-3.4.5.2 tag for 3.4.5-rc2 release.
The corresponding official builds will be available by the end of the week.
It will be used as final if no blocker is found.

See the attached list of changes against 3.4.5-rc2.


Now, you might switch your current 3-4 source tree to it using:

./g fetch --tags
./g checkout -b tag-libreoffice-3.4.5.2 libreoffice-3.4.5.2

See also the schedule at 
http://wiki.documentfoundation.org/ReleasePlan#3.4_release
and release criteria at http://wiki.documentfoundation.org/Release_Criteria


Best Regards,
Petr

+ base
+ missing icons in Index Design dialog (fdo#38435) [Andras Timar]
+ components
+ revert broken fix (bnc#653688) [Thorsten Behrens]
+ libs-core
+ fix hyphenation attributes (fdo#44082) [Michael Stahl]
+ impress210: disconnect and reconnect to table style on change model in SdrTableObjImpl (i#117319) [Christian Lippka ORACLE]
+ ODF export: fix layout grid invalid ODF (fdo#44073) [Michael Stahl]
+ writer
+ label PRINTING misplaced on paper sheet (fdo#36874) [Winfried Donkers]
+ sw: temp selection print doc: (fdo#40482, fdo#39159) [Michael Stahl]
+ common
+ branch libreoffice-3-4-5 [Petr Mladek]
+ version 3.4.5.2, tag libreoffice-3.4.5.2 (3.4.5-rc2) [Petr Mladek]
+ base
+ missing icons in Index Design dialog (fdo#38435) [Andras Timar]
+ bootstrap
+ bump product version to 3.4.5-rc2, release number to 502 [Petr Mladek]
+ fix build with bleeding edge external boost and gcc [Caolán McNamara]
+ components
+ revert broken fix (bnc#653688) [Thorsten Behrens]
+ filters
+ avoid looping on busted escher records [Caolán McNamara]
+ dmapper: fix NS_sprm::LN_CFDStrike with zero nIntValue [Miklos Vajna]
+ libs-core
+ fix hyphenation attributes (fdo#44082) [Michael Stahl]
+ impress210: disconnect and reconnect to table style on change model in SdrTableObjImpl (i#117319) [Christian Lippka ORACLE]
+ ODF export: fix layout grid invalid ODF (fdo#44073) [Michael Stahl]
+ support libebook-1.2.so.12 (evolution 3.2) [Rene Engelhard]
+ we need to include the localized file [David Tardon]
+ translations
+ translation update for LibreOffice 3.4.5 rc2 [Andras Timar]
+ writer
+ label PRINTING misplaced on paper sheet (fdo#36874) [Winfried Donkers]
+ sw: temp selection print doc: (fdo#40482, fdo#39159) [Michael Stahl]
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] libvisio: how can I help?

2012-01-03 Thread Bruno Girin

Hi all,

I discovered the existence of libvisio [1] while building LibO this 
morning. So first I'd like to thank Fridrich and Eilidh for the code and 
then I'd like to know: how can I help? I'm happy to work on code or test 
cases: I use Visio all the time at work so I often have weird and 
wonderful diagrams that I can feed through the parser.


[1] http://www.freedesktop.org/wiki/Software/libvisio

Cheers,

Bruno

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


Re: [Libreoffice] [libreoffice-l10n] Re: [Libreoffice-qa] Online update service up running

2012-01-03 Thread Olivier Hallot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Kendy

Em 03-01-2012 13:15, Jan Holesovsky escreveu:
 Hi Olivier,
 
 [taking this rather to the dev ML :-)]
 
 On 2012-01-03 at 07:06 -0200, Olivier Hallot wrote:
 

(snip)

 Also, as far as I remember, OpenOffice had a download interface for the
 new version. Are you going to reactivate it? I would also like to let
 special deployments to handle the download URL in a XML file.
 
 Download interface, like that it downloaded the version when available,
 and just offered the user to install it when she wants?  The code that
 handles this is still there, but I don't provide this on the server side
 as I think this is too intrusive, and potentially dangerous for people
 who are still on dial-up.

Okay.

 
 Or did you mean something different?

Actually, in a controlled environment, you may want to download the new
version from a internal server, sparing your expensive external
bandwidth. That is why I would like to have the download URL
configureable in a XML file (e.g. main.xcd)

Regards

- -- 
Olivier Hallot
Founder, Board of Directors Member - The Document Foundation
LibreOffice translation leader for Brazilian Portuguese
+55-21-8822-8812
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJPAyZhAAoJEJp3R7nH3vLxur4IAICFhLH8OwdXiM9sJb5ThWkC
Qqtcsf5TBGY05z9U1qw2TkZ72lYUGG1YFD5EXEmxZr311YSXLKCrb8kwKJ9i6uTN
iAFqxSQrNbyedc3i/IB8q1BOApRmxYhJCtMjLbC38+3wHVT8GJD6dpcd0uRYV7s5
fA90IVbWM2HyidqlEm2iSzhb/HUliNbbM5KYqs9VWXkJf/kAe+SkCn8zcsI8vFGf
GKiFlO94LuD7tAAh94LJJkoFPzwph2EmMT8vOAv3ztmkzq8eEXGk877cqZ+Z0uRd
SFudPgshg14iKsgPiQM0uVEbOrHfOr+80PaVLy5fBZTe7dHArL+OZPxnNDUdmpY=
=XktM
-END PGP SIGNATURE-
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] MUHTEŞEM FIRSATLAR YENİ YILDA DA DEVAM EDİYOR

2012-01-03 Thread OYA SÖKMENOĞLU

 




Ana Sayfa
 



 

 

  



Ana Sayfa 




Referanslarımız 




Ev Tipi Modellerimiz 



Ticari Modellerimiz 



İletişim 
  

  
Masaj koltuğu sektöründe 15. yılımızı 
doldurmaktayız. Ürünlerimizi kullanan bireylerin, kurum ve kuruluşların 
memnuniyetlerini dikkate alarak; ürünlerimizin aşağıdaki konularda faydası 
bulunduğunu belirtmek isteriz. 

   Sağlıklı ve mutlu bir yaşam dileriz... 
  

  


  

   
MASAJ;

. VÜCUTTAKİ AĞRILARIN AZALTILMASINA,

. SIRT VE BEL AĞRILARININ AZALTILMASINA,

. FITIKLARIN TEDAVİ EDİLMESİNE,

. KAN AKIŞINI HIZLANDIRIP DOKULARIN BESLENMESİNE,

. STRESİN ATILMASINA,

. KASLARIN GEVŞETİLMESİNE,

. KAN BASINCININ(TANSİYONUN) DÜŞÜRÜLMESİNE,

. EKLEM ESNEKLİĞİNİN ARTIRILMASINA,

. MİGREN VE GERİLİM BAŞAĞRISINA, 



. SİNDİRİM VE BAĞIRSAK FONKSİYONLARININ DÜZELTİLMESİNE,

. ANKSİYENİN (HUZURSUZLUĞUN) AZALMASINA,

. MENTAL UYANIKLIĞIN SAĞLANMASINA

. DÜŞÜNME VE YARATICILIK YETENEĞİNİN ARTIRILMASINA 

. ATLETİK PERFORMANSIN ARTIRILMASINA,

. SONUÇ OLARAK FİZİKSEL SAĞLIK VE YAŞAM KALİTESİNDE TAM BİR DÜZELMEYE.

YARDIMCI OLUR. 
  


 
  

  


  




FUTURE   



LP7000 



ROBO - GYM 
  

  



 


 


 
  

  


ÜRÜNLERİMİZDEN  DİĞER ÖRNEKLER 
  

  


RT8300 

  

  
  

  


 


 


 
  

  


 


 


 
  

  


 


 


 
  

  
 
  

  
  
  

  


CELLINI MASAJ KOLTUKLARI


Showroom

Bağdat Cad. No: 351/6

Şaşkınbakkal / İstanbul

Tel: 0 216 385 70 00 

Fax: 0 216 385 86 33 


www.masajkoltugu.com



masajkolt...@hotmail.com 
 
  

  


  



Ana Sayfa 




Referanslarımız 




Ev Tipi Modellerimiz 



Ticari Modellerimiz 



İletişim 
  


 
  

  

Listeden Çıkmak için 
b...@listedencikar.com adresine quot;Çıkarquot; başlıklı Boş 
bir e-posta gönderiniz 
  

  
 

 


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


[Libreoffice] How to write an import filter?

2012-01-03 Thread mete0r
Hello Libre-office developers,

I'm interested in learning how to write an import filter for some legacy
document formats. I tried to figure out by myself but failed. Could you
point some documents / wiki pages, or even some files in the source code
repository?

Especially I need to know how to register an import filter to the
libreoffice installation and how the core invokes a filter, i.e. the
entry points of the filters, to start some hacking.

Thank you for reading.

Best regards,
mete0r

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


Re: [Libreoffice] [PATCH 1/8][PUSHED] Easyhack fdo#38831 remove SvStrings

2012-01-03 Thread Lubos Lunak
On Thursday 29 of December 2011, Brad Sowden wrote:
 Hi,

 See attached.

 Note 1
 --
 I assume casting from size_t to sal_uInt16 is reasonable in the
 following scenario (I didn't want to update all callers in this patch)?

   sal_uInt16 SwGlossaries::GetGroupCnt()
   {
 -return  GetNameList()-Count();
 +return static_castsal_uInt16(GetNameList()-size());
   }

 The whole class seems to use sal_uInt16 there, so this at least doesn't make 
things worse.

 Note 2
 --
 In 2 functions I made the following change. Is this ok or should I also
 call reserve(16) to be safe?

 -SvStrings aFiles( 16, 16 );
 +std::vectorString* aFiles;

 Calling reserve() is just avoiding reallocations, so unless something in the 
code relies on the fact that there will be no reallocations (i.e. addresses 
remain the same), which does not seem to be the case, this is just an 
optimization. The 16 looks a bit like a magic number anyway.


 You also removed the check for m_pGlosArr being NULL in the code below:
SwGlossaries::~SwGlossaries()
{
- sal_uInt16 nCount = m_pGlosArr? m_pGlosArr-Count() : 0;

 Fixed that, pushed.

-- 
 Lubos Lunak
 l.lu...@suse.cz
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] [PATCH 2/8][PUSHED] Easyhack fdo#38831 remove SvStrings

2012-01-03 Thread Lubos Lunak
On Thursday 29 of December 2011, Brad Sowden wrote:
 Hi,

 See attached.

 Note 1
 --
 I made the following change in one place. Is this ok or should I call
 reserve(10) to be safe?

 -SvStrings aArr( 10, 10 );
 +std::vectorString* aArr;

 The same like before.

 Pushed.

-- 
 Lubos Lunak
 l.lu...@suse.cz
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] Another code finesse I may have missed

2012-01-03 Thread Olivier Hallot
636  
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#636OUnoObject
http://opengrok.libreoffice.org/s?refs=OUnoObjectproject=core::OUnoObject
http://opengrok.libreoffice.org/s?refs=OUnoObjectproject=core(*const*
uno http://opengrok.libreoffice.org/s?defs=unoproject=core::Reference
http://opengrok.libreoffice.org/s?defs=Referenceproject=core
report 
http://opengrok.libreoffice.org/s?defs=reportproject=core::XReportComponent
http://opengrok.libreoffice.org/s?defs=XReportComponentproject=core
_xComponent http://opengrok.libreoffice.org/s?defs=_xComponentproject=core
   637  
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#637
  ,*const* ::rtl
http://opengrok.libreoffice.org/s?defs=rtlproject=core::OUString
http://opengrok.libreoffice.org/s?defs=OUStringproject=core
rModelName http://opengrok.libreoffice.org/s?defs=rModelNameproject=core
   638  
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#638
  ,sal_uInt16
http://opengrok.libreoffice.org/s?defs=sal_uInt16project=core
_nObjectType http://opengrok.libreoffice.org/s?defs=_nObjectTypeproject=core)
   639  
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#639
 :SdrUnoObj
http://opengrok.libreoffice.org/s?defs=SdrUnoObjproject=core(rModelName
http://opengrok.libreoffice.org/s?defs=rModelNameproject=core,
sal_True http://opengrok.libreoffice.org/s?defs=sal_Trueproject=core)
   640  
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#640
 ,OObjectBase
http://opengrok.libreoffice.org/s?defs=OObjectBaseproject=core(_xComponent
http://opengrok.libreoffice.org/s?defs=_xComponentproject=core)
641  
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#641
 ,m_nObjectType
http://opengrok.libreoffice.org/s?defs=m_nObjectTypeproject=core(_nObjectType
http://opengrok.libreoffice.org/s?defs=_nObjectTypeproject=core)
642  
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#642{
   643  
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#643
   DBG_CTOR http://opengrok.libreoffice.org/s?defs=DBG_CTORproject=core(
rpt_OUnoObject 
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#rpt_OUnoObject,
NULL http://opengrok.libreoffice.org/s?defs=NULLproject=core);
644  
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#644
   impl_setUnoShape
http://opengrok.libreoffice.org/s?defs=impl_setUnoShapeproject=core(
uno http://opengrok.libreoffice.org/s?defs=unoproject=core::Reference
http://opengrok.libreoffice.org/s?defs=Referenceproject=core uno
http://opengrok.libreoffice.org/s?defs=unoproject=core::XInterface
http://opengrok.libreoffice.org/s?defs=XInterfaceproject=core (
_xComponent http://opengrok.libreoffice.org/s?defs=_xComponentproject=core,
uno http://opengrok.libreoffice.org/s?defs=unoproject=core::UNO_QUERY
http://opengrok.libreoffice.org/s?defs=UNO_QUERYproject=core ) );
 645  
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#645
   646  
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#646
   *if* ( rModelName
http://opengrok.libreoffice.org/s?defs=rModelNameproject=core.getLength
http://opengrok.libreoffice.org/s?defs=getLengthproject=core() )
647  
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#647
   impl_initializeModel_nothrow
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#impl_initializeModel_nothrow();
   648  
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#648
   649  
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#649
   *if* ( rModelName
http://opengrok.libreoffice.org/s?defs=rModelNameproject=core.getLength
http://opengrok.libreoffice.org/s?defs=getLengthproject=core() )
650  
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#650
   impl_initializeModel_nothrow
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#impl_initializeModel_nothrow();
   651  
http://opengrok.libreoffice.org/xref/core/reportdesign/source/core/sdr/RptObject.cxx#651}



Hi

Can someone tell me the 2nd last IF's is not a repetition of the 1st? If it
is, can I drop the second IF?

Thanks

-- 
Olivier Hallot
Founder and Steering Commitee Member
The Document Foundation
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] [PATCH 3/8][PUSHED] Easyhack fdo#38831 remove SvStrings

2012-01-03 Thread Lubos Lunak
On Saturday 31 of December 2011, Brad Sowden wrote:
 On 12/29/2011 10:26 PM, Brad Sowden wrote:
  Hi,
 
  See attached.

 Actually, this patch causes make dev-install -o build to fail. I have
 no idea why as the patch looks extremely innocent.

 If I drop this patch (and patch 8 which removes the SvStrings
 definition) then everything else applies correctly and make dev-install
 -o build succeeds.

-for(i = 0; i  aFldNames.Count();i++)
+for(std::vectorString*::const_iterator it(aFldNames.begin()); it != 
aFldNames.end(); ++it)
 {
-pArray[i] = *aFldNames.GetObject(i);
+pArray[i] = **it;

   ^^^

+delete *it;
 }

 Fixed, pushed.

-- 
 Lubos Lunak
 l.lu...@suse.cz
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] product-name in title bar of the office ?

2012-01-03 Thread Terrence Enger
On Mon, 2012-01-02 at 22:23 +0100, Cor Nouws wrote:
 Hi Eike,
 
 Eike Rathke wrote (02-01-12 22:18)
  On Wednesday, 2011-12-28 17:18:02 +0100, Cor Nouws wrote:
 
  But that does not change the title bar of the window?
 
  It does, but apparently only in an --enable-dbgutil build. Sorry for
  confusion ;-)
 
 Another learning moment, thanks for that ;-)
 
 

Harrumph.

On linux, commit id 5436f57 (pulled yesterday) built with
--enable-dbgutil seems not to honour a change to
ProductSource in versionrc.  A change to node Product 
ooName  value in file
solver/350/unxlngi6/installation/opt/share/registry/brand.xcd
(which used to work, and then stopped working) once again
changes the text in the title bar.  Meanwhile, my old notes
say that the same node in
solver/unxlngi6/installation/opt/share/registry/brand.xcd
worked in October, 2011 but not in November; I have not
tried it lately.

This question seems to come up every few months, so it seems
I am not alone in often running the version of LibreOffice
that comes with my distribution at the same time I work on a
newer version.  It just happens that How To Build LibreOffice
http://wiki.documentfoundation.org/Development/How_to_build
already has a section Multiple Work Dirs, and that would
seem to be a good place to say how to change the title bar.
But ...

(*) Consistent behaviour in this respect then would become a
feature to be maintained.  Does a reduction in questions
to this list justify the maintenance burden?

(*) I only know my own observations (and I worry that even
there I might be confused), so updating the wiki will
take some attention (a little? a lot?) from somebody who
knows more than I do.  Is it worth it?

Thoughts?

Thanks,
Terry.


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


Re: [Libreoffice] Another code finesse I may have missed

2012-01-03 Thread Norbert Thiebaud
On Tue, Jan 3, 2012 at 10:59 AM, Olivier Hallot
olivier.hal...@documentfoundation.org wrote:
 636 OUnoObject::OUnoObject(const uno::Reference
 report::XReportComponent _xComponent
 637    ,const ::rtl::OUString rModelName
 638    ,sal_uInt16   _nObjectType)
 639   :SdrUnoObj(rModelName, sal_True)
 640   ,OObjectBase(_xComponent)
 641   ,m_nObjectType(_nObjectType)
 642 {
 643 DBG_CTOR( rpt_OUnoObject, NULL);
 644 impl_setUnoShape( uno::Reference uno::XInterface (
 _xComponent, uno::UNO_QUERY ) );
 645
 646 if ( rModelName.getLength() )
 647 impl_initializeModel_nothrow();
 648
 649 if ( rModelName.getLength() )
 650 impl_initializeModel_nothrow();
 651 }




That looks like a merge snafu. and git blame seems to concurs

so yep the 2nd copy can go :-)

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


Re: [Libreoffice] Another code finesse I may have missed

2012-01-03 Thread Olivier Hallot
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello Norbert

So it went.

Kind regards

Olivier

Em 03-01-2012 15:31, Norbert Thiebaud escreveu:
 On Tue, Jan 3, 2012 at 10:59 AM, Olivier Hallot
 olivier.hal...@documentfoundation.org wrote:
 636 OUnoObject::OUnoObject(const uno::Reference
 report::XReportComponent _xComponent
 637,const ::rtl::OUString rModelName
 638,sal_uInt16   _nObjectType)
 639   :SdrUnoObj(rModelName, sal_True)
 640   ,OObjectBase(_xComponent)
 641   ,m_nObjectType(_nObjectType)
 642 {
 643 DBG_CTOR( rpt_OUnoObject, NULL);
 644 impl_setUnoShape( uno::Reference uno::XInterface (
 _xComponent, uno::UNO_QUERY ) );
 645
 646 if ( rModelName.getLength() )
 647 impl_initializeModel_nothrow();
 648
 649 if ( rModelName.getLength() )
 650 impl_initializeModel_nothrow();
 651 }



 
 That looks like a merge snafu. and git blame seems to concurs
 
 so yep the 2nd copy can go :-)
 
 Norbert

- -- 
Olivier Hallot
Founder, Board of Directors Member - The Document Foundation
LibreOffice translation leader for Brazilian Portuguese
+55-21-8822-8812
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iQEcBAEBAgAGBQJPA0xaAAoJEJp3R7nH3vLx6W4H/RXgqRxpPepA5WMlxBCc9JFC
wPUL4lmQ8n9fbvW3bBPfHOGiDVjTf146saUwZV7DG1xQeFhQtPvVdwceGD9Oplu+
CleSDoprnd6qkToqXBmv+wYH4id7lhhxDGcDJhlari2K/OLlAd5dOGQGggtUPncR
ABBhtpS5kW6f4I2gHIUYJmurinWaodF+0u1Fd4C7NQTC2cPVo2pbC07r1bKJ2L9l
ROnYef8WlkoWs5xtkuMxTHX78SCK5dGMdVFbB4aQBPekvxDn/r7vXg2j+RSj0+W0
rFBLm/HjObJ7WtorHphjSZEpRZxvSGuaD+hSCV8ffDONWTl6RdPqie5cB23nfPs=
=dcGh
-END PGP SIGNATURE-
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] [REVIEW] quick patch for extensions ole part

2012-01-03 Thread Eike Rathke
Hi julien2412,

On Thursday, 2011-12-29 08:38:31 -0800, julien2412 wrote:

 Another Same expression on both sides of '||'
  detected by cppcheck.
 
 I supposed this patch but I made a research of INVOKE_PROPERTYPUT on the
 file, either it's not the only location where INVOKE_PROPERTYPUTREF should
 be used or INVOKE_PROPERTYPUTREF shouldn't be used at all in this case.
 
 @@ -1814,7 +1814,7 @@ Any 
 IUnknownWrapper_Impl::invokeWithDispIdComTlb(FuncDesc aFuncDesc,
  if (dispparams.cNamedArgs  0 
  ! (dispparams.cNamedArgs == 1 
 (aFuncDesc-invkind == INVOKE_PROPERTYPUT ||
 -aFuncDesc-invkind == INVOKE_PROPERTYPUT)))
 +aFuncDesc-invkind == INVOKE_PROPERTYPUTREF)))
  {
  //set up an array containing the member and parameter names
  //which is then used in ITypeInfo::GetIDsOfNames
 
 Any idea ?

IMHO it makes sense to change that to INVOKE_PROPERTYPUTREF. There are
other places that test for both, INVOKE_PROPERTYPUT and
INVOKE_PROPERTYPUTREF, i.e. line 1765

if (aFuncDesc-invkind == INVOKE_PROPERTYPUT
|| aFuncDesc-invkind == INVOKE_PROPERTYPUTREF)
dispparams.rgdispidNamedArgs =  idPropertyPut;

and line 1825

if (aFuncDesc-invkind == INVOKE_PROPERTYPUT
|| aFuncDesc-invkind == INVOKE_PROPERTYPUTREF)
{  
nSizeAr = dispparams.cNamedArgs; //counts the DISID_PROPERTYPUT
}

and line 2394

else if (pFuncDesc-invkind == INVOKE_PROPERTYPUT ||
 pFuncDesc-invkind == INVOKE_PROPERTYPUTREF)


  Eike

-- 
LibreOffice Calc developer. Number formatter stricken i18n transpositionizer.
GnuPG key 0x293C05FD : 997A 4C60 CE41 0149 0DB3  9E96 2F1A D073 293C 05FD


pgpir5SDUKQ0O.pgp
Description: PGP signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] libvisio: how can I help?

2012-01-03 Thread Norbert Thiebaud
On Tue, Jan 3, 2012 at 9:50 AM, Bruno Girin brunogi...@gmail.com wrote:
 Hi all,

 I discovered the existence of libvisio [1] while building LibO this morning.
 So first I'd like to thank Fridrich and Eilidh for the code and then I'd
 like to know: how can I help? I'm happy to work on code or test cases: I use
 Visio all the time at work so I often have weird and wonderful diagrams that
 I can feed through the parser.

Hi Bruno,

Fridrich is in vacation this week, so I'll step in :-)
I think you can build Lo and test the heck out of libvisio, fill bug
report when you find some (
http://wiki.documentfoundation.org/BugReport ) and even better post
patches to fix them on this list :-)

see : http://wiki.documentfoundation.org/Development as a starting point :-)

Happy new year,

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


Re: [Libreoffice] [REVIEW] Patch for Same expression on both sides of '' in basegfx module

2012-01-03 Thread Eike Rathke
Hi julien2412,

On Wednesday, 2011-12-28 13:13:43 -0800, julien2412 wrote:

 On cppcheck report, there were 2 Same expression on both sides of '' on 
 b2dpolypolygoncutter.cxx
 
 I don't know how this part works so I recognize it's just guessing.
 
 diff --git a/basegfx/source/polygon/b2dpolypolygoncutter.cxx
 b/basegfx/source/polygon/b2dpolypolygoncutter.cxx
 index d32ee87..8745241 100644
 --- a/basegfx/source/polygon/b2dpolypolygoncutter.cxx
 +++ b/basegfx/source/polygon/b2dpolypolygoncutter.cxx
 @@ -282,7 +282,7 @@ namespace basegfx
  bOnEdge = false;
  }
  }
 -while(bOnEdge  pPNa2 != rPNa  pPNa2 != rPNa);
 +while(bOnEdge  pPNa2 != rPNa  pPNb2 != rPNb);
  
  if(bOnEdge)
  {
 @@ -408,7 +408,7 @@ namespace basegfx
  bOnEdge = false;
  }
  }
 -while(bOnEdge  pPNa2 != rPNa  pPNa2 != rPNa);
 +while(bOnEdge  pPNa2 != rPNa  pPNb2 != rPNb);
  
  if(bOnEdge)
  {
 
 Does it seem ok ? (If yes, I can commit and push it on master branch)

I think so, but I'm not sure either. Anyone with a second opinion?

  Eike

-- 
LibreOffice Calc developer. Number formatter stricken i18n transpositionizer.
GnuPG key 0x293C05FD : 997A 4C60 CE41 0149 0DB3  9E96 2F1A D073 293C 05FD


pgp5NmKRPdM0B.pgp
Description: PGP signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] Build Failure: Error in module icu

2012-01-03 Thread Eike Rathke
Hi Ashwini,

On Monday, 2012-01-02 22:37:04 +0530, Ashwini Oruganti wrote:

 My LibreOffice build is  failing repeatedly and the error seems to be in
 the module icu.

Strange..

 log for /media/Ash/zcodes/zzlibre-office/git/libo/icu

/media/... makes me wonder what medium Ash is and the file system used
thereon. It's not by chance some kind of USB stick with a FAT file
system? Such a constellation when building on Linux already caused
trouble in the past.

 mkdir uconvmsg
 make[5]: Entering directory 
 `/media/Ash/zcodes/zzlibre-office/git/libo/icu/unxlngx6.pro/misc/build/icu/source/extra/uconv'
 rm -rf pkgdata.inc
 LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH 
  ../../bin/genrb -e UTF-8 -s resources -d uconvmsg fr.txt
 LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH 
  ../../bin/genrb -e UTF-8 -s resources -d uconvmsg root.txt
 make[5]: Leaving directory 
 `/media/Ash/zcodes/zzlibre-office/git/libo/icu/unxlngx6.pro/misc/build/icu/source/extra/uconv'
 LD_LIBRARY_PATH=../../lib:../../stubdata:../../tools/ctestfw:$LD_LIBRARY_PATH 
  MAKEFLAGS= ../../bin/pkgdata -p uconvmsg -O pkgdata.inc -m static -s 
 uconvmsg -d uconvmsg -T uconvmsg uconvmsg/uconvmsg.lst
 cd ../.. \
 CONFIG_FILES=extra/uconv/uconv.1 CONFIG_HEADERS= /bin/bash 
 ./config.status
 icupkg: unable to open input file uconvmsg/root.res

There should be a file
/media/Ash/zcodes/zzlibre-office/git/libo/icu/unxlngx6.pro/misc/build/icu/source/extra/uconv/uconvmsg/root.res
after uconvmsg root.txt ran, similar a file
/media/Ash/zcodes/zzlibre-office/git/libo/icu/unxlngx6.pro/misc/build/icu/source/extra/uconv/uconvmsg/fr.res
as an output of uconvmsg fr.txt

If not, maybe shortening the paths helps, e.g. build tree in
/media/Ash/libo/
instead of
/media/Ash/zcodes/zzlibre-office/git/libo/

Though if it's a FAT system I'd ditch that attempt rather sooner than
later anyway..

  Eike

-- 
LibreOffice Calc developer. Number formatter stricken i18n transpositionizer.
GnuPG key 0x293C05FD : 997A 4C60 CE41 0149 0DB3  9E96 2F1A D073 293C 05FD


pgpL4IoPC747V.pgp
Description: PGP signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] [PUSHED] Re: [REVIEW] quick patch for extensions ole part

2012-01-03 Thread julien2412
Thanks Eike !

I commited and pushed on master.

--
View this message in context: 
http://nabble.documentfoundation.org/REVIEW-quick-patch-for-extensions-ole-part-tp3619208p3630063.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] [Libreoffice-qa] [ANNOUNCE] libreoffice-3.4.5.2 tag created (3.4.5-rc2)

2012-01-03 Thread Pedro Lino
 do you mean 3.4.5-rc1 ?

No. That was almost a month ago :)

http://nabble.documentfoundation.org/ANNOUNCE-libreoffice-3-4-5-1-tag-created-3-4-5-rc1-tt3585973.html
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] libvisio: how can I help?

2012-01-03 Thread Jan Holesovsky
Hi Bruno,

On 2012-01-03 at 19:23 +, Bruno Girin wrote:

  Fridrich is in vacation this week, so I'll step in :-)
  I think you can build Lo and test the heck out of libvisio, fill bug
  report when you find some (
  http://wiki.documentfoundation.org/BugReport ) and even better post
  patches to fix them on this list :-)
 
  see : http://wiki.documentfoundation.org/Development as a starting point :-)
 
 Hi Norbert,
 
 I'll do that. If I find bugs, I'll fill bug reports and provide patches 
 when I can.

A small missing piece, libvisio's git repo is here:

http://cgit.freedesktop.org/libreoffice/contrib/libvisio/

Looking forward to the patches! :-)

Regards,
Kendy

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


Re: [Libreoffice] bug 36874 (label printing) further improvement?

2012-01-03 Thread Pierre-André Jacquod

Hello,

Just to mix in the middle: from this and a previous mail from you:


  It would be much better if the label-definitions contain all
dimensions, i.e.


yes

 My calculation is based on the assumption (presumption?) that the
 page containing the labels is symmetrical, i.e. rotating the page
 180 degrees is not a problem, left margine equals right margin and
 top margin equals bottom margin.

some labels paper that I bought last year (I guess of too bad quality) 
were not symmetric


But anyway, the change is already very good.
Thanks
regards
Pierre-André
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] [REVIEW] Easy patch on l10ntools

2012-01-03 Thread Eike Rathke
Hi Andras,

On Tuesday, 2012-01-03 20:09:42 +0100, Andras Timar wrote:

  diff --git a/l10ntools/source/export.cxx b/l10ntools/source/export.cxx
  @@ -1475,7 +1475,7 @@ void Export::InsertListEntry( const ByteString 
  rText,
  const ByteString rLine )
               (*pCurEntry)[ SOURCE_LANGUAGE ] = rLine;
           }
           else
  -            (*pCurEntry)[ SOURCE_LANGUAGE ] = rLine;
  +            (*pCurEntry)[ SOURCE_LANGUAGE ] = rText;
 
           pList-NewSourceLanguageListEntry();
       }
 
  Your opinion ?
 
  Makes sense, especially when seen with context of the block immediately
  above:
 
     // For paired list use the line to set proper lid
     if( nList == LIST_PAIRED ){
         (*pCurEntry)[ m_sListLang ] = rLine;
     }else
         (*pCurEntry)[ m_sListLang ] = rText;
 
 
 On the other hand, if it changes the behaviour that we got used to, it
 may break localizations. I'd prefer to have a full code analysis.

Fair enough. Let's see.. we are in
void Export::InsertListEntry( const ByteString rText, const ByteString rLine )
that's called from Export::Execute() where rLine contains the entire
resource line and rText the translatable text extracted.

For paired lists the entire line is added as an entry to
(*pCurEntry)[m_sListLang] that contains brackets, pair.first (the
translatable text), pair.second (usually a defined named numeric
constant) and separators, e.g.

 Text ; NAME ;  ;

For Export::isSourceLanguage(m_sListLang) (read: m_sListLang equals
en-US) then (*pCurEntry)[SOURCE_LANGUAGE] is set to the entire line
where SOURCE_LANGUAGE==en-US, effectively overwriting the previous
(*pCurEntry)[m_sListLang], no matter if it's a paired list or something
else.

If it's not a paired list's entry the line may look like

Text ;


Maybe you can squeeze some sense out of that ;-)


If the current behavior is to remain, then

if ( Export::isSourceLanguage( m_sListLang ) ) {
-   if( nList == LIST_PAIRED ){
-   (*pCurEntry)[ SOURCE_LANGUAGE ] = rLine;
-   }
-   else
-   (*pCurEntry)[ SOURCE_LANGUAGE ] = rLine;
+   (*pCurEntry)[ SOURCE_LANGUAGE ] = rLine;

pList-NewSourceLanguageListEntry();
}

would do.

  Eike

-- 
LibreOffice Calc developer. Number formatter stricken i18n transpositionizer.
GnuPG key 0x293C05FD : 997A 4C60 CE41 0149 0DB3  9E96 2F1A D073 293C 05FD


pgpiixyjZDiSb.pgp
Description: PGP signature
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] Python Bridge on MacOS x64 with python default

2012-01-03 Thread Ovnicraft
Hello i am start using the python bridge in mac, i am work in OSS ERP[1] it
has a report tool based in python bridge

I want to know if there is any plan to get LO for x64, python comes in LO
was built in x32.

In another hand is posible get python bridge standalone installation ?
Or get the sources from a repo to compile it.

I get the SDK for Libre office but has no python bridge.


Waiting for your help.

Regards,

[1] www.openerp.com

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


Re: [Libreoffice] Build Failure: Error in module icu

2012-01-03 Thread Ashwini Oruganti
Hi Eike,



 /media/... makes me wonder what medium Ash is and the file system used
 thereon. It's not by chance some kind of USB stick with a FAT file
 system? Such a constellation when building on Linux already caused
 trouble in the past.


Ash is, indeed, a USB stick, but it is formatted with ext3 file system. In
fact, I've tried building it directly (on an HDD) too, but icu still fails
on me(with similar behavior),


  If not, maybe shortening the paths helps, e.g. build tree in

/media/Ash/libo/
 instead of
 /media/Ash/zcodes/zzlibre-office/git/libo/


 Doesn't help. Tried it.


 Though if it's a FAT system I'd ditch that attempt rather sooner than
 later anyway..

 It is not, I repeat, a FAT system. It's an ext3 file system, :-(

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


Re: [Libreoffice] libvisio: how can I help?

2012-01-03 Thread Fridrich Strba

Hello, Bruno,

If you are looking at something cool to do inside libvisio, I might have 
an idea or two :)


For the while, libvisio is converting binary MS Visio files in versions 
6 (Visio 2000 and 2002) and 11 (Visio 2003 - 2010). There is another 
format that Visio can export to, and it is the XML version called also 
VDX. This file-format is specified (contrary to the binary one). If you 
could come with an abstract SAX interface and implement a parser of this 
file-format, it would fill some gap we have. But any bugfix is welcome.


Although in vacation, when I see that someone is interested to work on 
libvisio, I wake up to the e-mail writing mode :)


Cheers

F.

On 03/01/12 21:20, Jan Holesovsky wrote:

Hi Bruno,

On 2012-01-03 at 19:23 +, Bruno Girin wrote:


Fridrich is in vacation this week, so I'll step in :-)
I think you can build Lo and test the heck out of libvisio, fill bug
report when you find some (
http://wiki.documentfoundation.org/BugReport ) and even better post
patches to fix them on this list :-)

see : http://wiki.documentfoundation.org/Development as a starting point :-)


Hi Norbert,

I'll do that. If I find bugs, I'll fill bug reports and provide patches
when I can.


A small missing piece, libvisio's git repo is here:

http://cgit.freedesktop.org/libreoffice/contrib/libvisio/

Looking forward to the patches! :-)

Regards,
Kendy

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



--
Please avoid sending me Word, Excel or PowerPoint attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] Updating Italian dictionaries

2012-01-03 Thread Andrea Pescetti

(I follow this list, but please do CC me explicitly on replies)

The Italian dictionary in LibreOffice master is not the latest version, 
that includes some bugfixes and a detailed history of contributions that 
was missing from the version shipped in OpenOffice.org 3.3.0 and 
imported into LibreOffice. This should be fixed.


Files are available on both the OpenOffice.org and the LibreOffice 
extensions repositories, but the most straightforward way to update 
dictionaries is to reuse the packaging work I already did and import 
them from OpenOffice (it's an external contribution under the GPL3 as it 
has always been: no license/copyright changes involved).


$ svn export 
https://svn.apache.org/repos/asf/incubator/ooo/trunk/main/dictionaries/it_IT@1208139 
latest
$ git clone git://anongit.freedesktop.org/libreoffice/dictionaries 
libreoffice
$ cp -r latest/{CHANGELOG.txt,legacy,README.txt,it_IT.aff,it_IT.dic} 
libreoffice/dictionaries/it_IT

$ rm libreoffice/dictionaries/it_IT/README_it_IT.txt

Then just apply the attached patch to
libreoffice/dictionaries/it_IT/makefile.mk
and you are done (the patch is trivial, but if a license statement is 
needed the patch is under LGPLv3+/MPL). This performs the update while 
respecting all choices LibreOffice did: removing flags, handling 
description files differently, autogenerating the thesaurus index file.


If you prefer a git patch in place of the above I can surely provide it, 
but it would be binary and largish, while the above is rather 
straightforward.


Of course for the next update (not before LibreOffice 3.5) we will have 
a dedicated public repository for the Italian dictionary and possibly 
standard non-binary patches. I apologize for the slightly larger work 
committers will need this time.


Regards,
  Andrea.
diff --git a/dictionaries/it_IT/makefile.mk b/dictionaries/it_IT/makefile.mk
index ae2e981..24b5562 100644
--- a/dictionaries/it_IT/makefile.mk
+++ b/dictionaries/it_IT/makefile.mk
@@ -53,6 +53,27 @@ DESCRIPTION_SRC:=$(MISC)/$(EXTENSIONNAME)_in/description.xml
 
 # just copy:
 COMPONENT_FILES= \
+$(EXTENSIONDIR)$/legacy/it_IT_AUTHORS \
+$(EXTENSIONDIR)$/legacy/it_IT_ChangeLog \
+$(EXTENSIONDIR)$/legacy/it_IT_COPYING \
+$(EXTENSIONDIR)$/legacy/it_IT_license.txt \
+$(EXTENSIONDIR)$/legacy/it_IT_notes.txt \
+$(EXTENSIONDIR)$/legacy/it_IT_README.1st \
+$(EXTENSIONDIR)$/legacy/it_IT_README.txt \
+$(EXTENSIONDIR)$/legacy/it_IT_statistiche.ods \
+$(EXTENSIONDIR)$/legacy/it_IT_todo.txt \
+$(EXTENSIONDIR)$/legacy/thes_gpl.txt \
+$(EXTENSIONDIR)$/legacy/th_it_IT_AUTHORS \
+$(EXTENSIONDIR)$/legacy/th_it_IT_ChangeLog \
+$(EXTENSIONDIR)$/legacy/th_it_IT_COPYING \
+$(EXTENSIONDIR)$/legacy/th_it_IT_copyright_licenza.txt \
+$(EXTENSIONDIR)$/legacy/th_it_IT_INSTALL \
+$(EXTENSIONDIR)$/legacy/th_it_IT_lettera_in_inglese.txt \
+$(EXTENSIONDIR)$/legacy/th_it_IT_Lingua.png \
+$(EXTENSIONDIR)$/legacy/th_it_IT_Linguistica-Modifica.png \
+$(EXTENSIONDIR)$/legacy/th_it_IT_README \
+$(EXTENSIONDIR)$/legacy/th_it_IT_sinonimi.jpg \
+$(EXTENSIONDIR)$/CHANGELOG.txt \
 $(EXTENSIONDIR)$/hyph_it_IT.dic \
 $(EXTENSIONDIR)$/it_IT.aff \
 $(EXTENSIONDIR)$/it_IT.dic \
@@ -65,7 +86,7 @@ COMPONENT_XCU= \
 $(EXTENSIONDIR)$/dictionaries.xcu
 
 # disable fetching default OOo license text
-CUSTOM_LICENSE=README_it_IT.txt
+CUSTOM_LICENSE=README.txt
 # override default license destination
 PACKLICS= $(EXTENSIONDIR)$/$(CUSTOM_LICENSE)
 
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice] [PUSHED] Re: [PATCH] (3.5 Beta2) Fix for fdo#44280 [GUI] wrong position of 'Adding extension...' at Extension Manager dialog

2012-01-03 Thread Michael Stahl
On 29/12/11 19:10, Olivier Hallot wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Hi
 
 Please find enclosed a patch to fix fdo#44280
 
 The patch was done in master and should be cerry picked in 3.5 ASAP

thanks, looks much better with the patch!
pushed to master and libreoffice-3-5.

regards,
 michael

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


Re: [Libreoffice] libvisio: how can I help?

2012-01-03 Thread Bruno Girin

On 03/01/12 21:34, Fridrich Strba wrote:

Hello, Bruno,

If you are looking at something cool to do inside libvisio, I might 
have an idea or two :)


For the while, libvisio is converting binary MS Visio files in 
versions 6 (Visio 2000 and 2002) and 11 (Visio 2003 - 2010). There is 
another format that Visio can export to, and it is the XML version 
called also VDX. This file-format is specified (contrary to the binary 
one). If you could come with an abstract SAX interface and implement a 
parser of this file-format, it would fill some gap we have. But any 
bugfix is welcome.


Hi Fridrich,

Yes, I had a look at the VDX spec last year and it is indeed well 
documented and reasonably straight-forward, although there are 
difference between the 2003, 2007 and 2010 versions as far as I 
remember. I assume that all classes prefixed VSDX were designed to 
support both VSD and VDX and therefore should be shared between both 
types of parser?


I'd be very interested in working on that but in order not to 
over-commit myself and to get familiar with the code, I'll probably 
start with some tests and simple bug reports / patches.





Although in vacation, when I see that someone is interested to work on 
libvisio, I wake up to the e-mail writing mode :)


I know the feeling :-)


A small missing piece, libvisio's git repo is here:

http://cgit.freedesktop.org/libreoffice/contrib/libvisio/

Looking forward to the patches! :-)

Regards,
Kendy


Thanks Kendy!

Cheers,

Bruno

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


Re: [Libreoffice] [PATCH 3/8][PUSHED] Easyhack fdo#38831 remove SvStrings

2012-01-03 Thread Brad Sowden

On 01/04/2012 06:01 AM, Lubos Lunak wrote:

On Saturday 31 of December 2011, Brad Sowden wrote:

On 12/29/2011 10:26 PM, Brad Sowden wrote:

Hi,

See attached.


Actually, this patch causes make dev-install -o build to fail. I have
no idea why as the patch looks extremely innocent.

If I drop this patch (and patch 8 which removes the SvStrings
definition) then everything else applies correctly and make dev-install
-o build succeeds.


-for(i = 0; i  aFldNames.Count();i++)
+for(std::vectorString*::const_iterator it(aFldNames.begin()); it !=
aFldNames.end(); ++it)
  {
-pArray[i] = *aFldNames.GetObject(i);
+pArray[i] = **it;

^^^

+delete *it;
  }

  Fixed, pushed.


Doh! Sorry and thanks for the push.

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


Re: [Libreoffice] make dev-install error, dict-xx.oxt files not found

2012-01-03 Thread Winfried Donkers
The error is that dict-xx.oxt (today they were dict-an.oxt, dict-be.oxt, 
dict-el.oxt, dict-gd.oxt, dict-si.oxt and dict-te.oxt) files cannot be found. 
I think running git pull -r in core/dictionaries should fix this.

Thanks, it helped.
Still strange that git pull -r from core doesn't/didn't help. That's what I do 
to update my sources.

Winfried 

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


Re: [Libreoffice] bug 36874 (label printing) further improvement?

2012-01-03 Thread Winfried Donkers
 My calculation is based on the assumption (presumption?) that the
 page containing the labels is symmetrical, i.e. rotating the page
 180 degrees is not a problem, left margine equals right margin and
 top margin equals bottom margin.

some labels paper that I bought last year (I guess of too bad quality) 
were not symmetric

I found that too when I started to extend the label defintions (1700+ ...)
in labels.xcu with paper height and paper width. 
And also that by rounding off the calculated paper size can
differ +/- 2mm from the actual size, especially when the labels are small.

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


[Libreoffice] feature/gbuild_extensions

2012-01-03 Thread Norbert Thiebaud
So,
I've run test on MacOSX... I ran  in a couple of issues.. I pushed
patches for them on the branch

The last commit ( 381bed81e43d7fdd541115e0ab4213b0609e7ac0 )  is a
hack and is probably wrong... but it get me to the end of the build +
package

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


Re: [Libreoffice-qa] [libreoffice-l10n] Re: Online update service up running

2012-01-03 Thread Jan Holesovsky
Hi,
On 2012-01-03 at 09:51 +0100, Martin Srebotnjak wrote:

  L10n people - please, is it OK for you to bring back the Online update
  help this late even for 3.5?  Hopefully the text might still be ~easily
  restorable from the older translations?
 
 AFAIAC, if it is only a restore with minor updates, then it should not be a
 problem. It would be much worse to see only English text there, even if
 applicable translations already exist somewhere ...

So - good news :-)  The text was never removed, only its building, so it
should not affect the translations in any way.  Now it is building
again, so the update-related dialogs should have help again.

Regards,
Kendy

___
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] Online update service up running

2012-01-03 Thread Pedro Lino
Hi Kendy, all

 JFYI - the service that warns you that there is a newer LibreOffice
 version out is up  running, and when you have Beta1, it should inform
 you about the availability of Beta2, and offer you to redirect to its
 download page.

 Should there be troubles with this, please report among the most
 annoying bugs; the update service can get very annoying if not done
 right :-)

Absolutely fantastic!

I uninstalled Beta2 and reinstalled Beta1 just to check what happened
when an update is available.
It works perfectly under Windows XP Pro x86 SP3.

This was probably a small step for developers but it is a huge leap for users!

Well done! Kudos to all involved ;)

Regards,
Pedro
___
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] [ANNOUNCE] libreoffice-3.4.5.2 tag created (3.4.5-rc2)

2012-01-03 Thread Tommy

On Tue, 03 Jan 2012 16:46:49 +0100, Petr Mladek pmla...@suse.cz wrote:



See the attached list of changes against 3.4.5-rc2.



do you mean 3.4.5-rc1 ?

___
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 43960] VIEWING: mutilation of text LO - OO

2012-01-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43960

Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:

   What|Removed |Added

 Status|NEEDINFO|RESOLVED
 Resolution||WORKSFORME

--- Comment #6 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-01-03 00:23:08 PST ---
@reporter:
Please feel free to reopen this bug if you find out that the problem reappears

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 36874] Label PRINTING misplaced on paper sheet

2012-01-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36874

Korrawit Pruegsanusak detective.conan.1...@gmail.com changed:

   What|Removed |Added

  Status Whiteboard|target:3.5  |target:3.5 target:3.4.5
 CC||detective.conan.1412@gmail.
   ||com

--- Comment #22 from Korrawit Pruegsanusak detective.conan.1...@gmail.com 
2012-01-03 01:37:16 PST ---
And now pushed in -3-4(-5) branch: will be in 3.4.5 rc2 and 3.4.next, if any.

http://cgit.freedesktop.org/libreoffice/writer/commit/?h=libreoffice-3-4id=502ef71db74c3cdb1433c3402a0d93971dc47f1b

http://cgit.freedesktop.org/libreoffice/writer/commit/?h=libreoffice-3-4-5id=7f978af6476d73246d7cf6c29b48e88a7465f44e

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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 44414] VIEWING: Line chart has no contents

2012-01-03 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=44414

--- Comment #1 from winlin0...@gmail.com 2012-01-03 01:57:04 PST ---
Created attachment 55068
  -- https://bugs.freedesktop.org/attachment.cgi?id=55068
The screenshot

-- 
Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email
--- 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   3   >