[Libreoffice-commits] .: configure.in

2011-12-20 Thread Norbert Thiebaud
 configure.in |   16 ++--
 1 file changed, 14 insertions(+), 2 deletions(-)

New commits:
commit cf33de27eb5e981d8a1fa76f6a9d72ce7174f10d
Author: James C james.from.welling...@gmail.com
Date:   Tue Dec 20 02:15:08 2011 -0600

Fix gmake detection for MacOSX

diff --git a/configure.in b/configure.in
index 84d7b50..120ed1f 100644
--- a/configure.in
+++ b/configure.in
@@ -2705,7 +2705,19 @@ if test $_make_longver -ge 038200 ; then
 elif test $_make_longver -ge 038100 ; then
 AC_MSG_RESULT([$GNUMAKE $_make_version])
 AC_MSG_CHECKING([for GNU make bug 20033])
-TESTGMAKEBUG20033=`mktemp -d`
+dnl
+dnl FIXME: mktemp takes different arguments on different platforms:
+dnl http://stackoverflow.com/questions/2792675/how-portable-is-mktemp1
+dnl
+dnl -t means either 'use $TMPDIR' (OK) or 'the following is a template'.
+dnl and without 'the following is a template', a following template
+dnl is allowed, so this *may* work on *most* platforms
+dnl
+TESTGMAKEBUG20033=`mktemp -d -t MakefileXX`
+SHA1SUM=sha1sum
+if test $_os = Darwin; then
+SHA1SUM=shasum
+fi
 cat  $TESTGMAKEBUG20033/Makefile  EOF
 A := \$(wildcard *.a)
 
@@ -2728,7 +2740,7 @@ define d2
 endef
 
 %.b : %.a
-   \$(eval CHECKSUM := \$(word 1,\$(shell cat \$^ | sha1sum))) \$(if 
\$(wildcard \$(CACHEDIR)/\$(CHECKSUM)),\
+   \$(eval CHECKSUM := \$(word 1,\$(shell cat \$^ | $SHA1SUM))) \$(if 
\$(wildcard \$(CACHEDIR)/\$(CHECKSUM)),\
\$(call d1,\$(CHECKSUM)),\
\$(call d2,\$(CHECKSUM)))
 EOF
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: cairo/cairo-1.10.2.patch

2011-12-20 Thread Fridrich Strba
 cairo/cairo-1.10.2.patch |   11 +++
 1 file changed, 11 insertions(+)

New commits:
commit 275e6c62917bffe65dd6c26f42e42ae6324619fe
Author: Fridrich Å trba fridrich.st...@bluewin.ch
Date:   Tue Dec 20 09:58:07 2011 +0100

Disable cairo svg surface on windows to avoid problems with missing header

diff --git a/cairo/cairo-1.10.2.patch b/cairo/cairo-1.10.2.patch
index eb0885e..d13c1e4 100644
--- a/cairo/cairo-1.10.2.patch
+++ b/cairo/cairo-1.10.2.patch
@@ -1,3 +1,14 @@
+--- misc/cairo-1.10.2/build/Makefile.win32.features2010-08-18 
09:47:30.0 +0200
 misc/build/cairo-1.10.2/build/Makefile.win32.features  2011-12-20 
09:57:06.428170146 +0100
+@@ -30,7 +30,7 @@
+ CAIRO_HAS_FC_FONT=0
+ CAIRO_HAS_PS_SURFACE=1
+ CAIRO_HAS_PDF_SURFACE=1
+-CAIRO_HAS_SVG_SURFACE=1
++CAIRO_HAS_SVG_SURFACE=0
+ CAIRO_HAS_TEST_SURFACES=0
+ CAIRO_HAS_TEE_SURFACE=0
+ CAIRO_HAS_XML_SURFACE=0
 --- misc/cairo-1.10.2/build/Makefile.win32.common  2009-06-14 
23:53:24.0 +0200
 +++ misc/build/cairo-1.10.2/build/Makefile.win32.common2009-06-14 
23:53:24.0 +0200
 @@ -22,24 +22,26 @@
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: 2 commits - l10ntools/source sc/source unusedcode.easy

2011-12-20 Thread Caolán McNamara
 l10ntools/source/helpex.cxx |   80 +---
 sc/source/ui/docshell/docsh.cxx |4 --
 sc/source/ui/inc/docsh.hxx  |2 -
 sc/source/ui/view/printfun.cxx  |   21 --
 unusedcode.easy |1 
 5 files changed, 35 insertions(+), 73 deletions(-)

New commits:
commit b0604113bc35c17f84f952ec882c24d61eef30e3
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Dec 19 22:39:38 2011 +

ByteString-rtl::OString

diff --git a/l10ntools/source/helpex.cxx b/l10ntools/source/helpex.cxx
index b9c6874..1925285 100644
--- a/l10ntools/source/helpex.cxx
+++ b/l10ntools/source/helpex.cxx
@@ -48,17 +48,17 @@
 #define STATE_OUTPUTY   0xff
 
 // set of global variables
-ByteString sInputFile;
+rtl::OString sInputFile;
 sal_Bool bEnableExport;
 sal_Bool bMergeMode;
 sal_Bool bErrorLog;
 sal_Bool bUTF8;
-ByteString sPrj;
-ByteString sPrjRoot;
-ByteString sOutputFile;
-ByteString sOutputFileX;
-ByteString sOutputFileY;
-ByteString sSDFFile;
+rtl::OString sPrj;
+rtl::OString sPrjRoot;
+rtl::OString sOutputFile;
+rtl::OString sOutputFileX;
+rtl::OString sOutputFileY;
+rtl::OString sSDFFile;
 
 /*/
 sal_Bool ParseCommandLine( int argc, char* argv[])
@@ -77,41 +77,36 @@ sal_Bool ParseCommandLine( int argc, char* argv[])
 sal_Bool bInput = sal_False;
 
 // parse command line
-for( int i = 1; i  argc; i++ ) {
-if ( ByteString( argv[ i ]).ToUpperAscii() == -I ) {
+for( int i = 1; i  argc; i++ )
+{
+rtl::OString aArg(rtl::OString(argv[i]).toAsciiUpperCase());
+if (aArg.equalsL(RTL_CONSTASCII_STRINGPARAM(-I)))
 nState = STATE_INPUT; // next tokens specifies source files
-}
-else if ( ByteString( argv[ i ]).ToUpperAscii()  == -O ) {
+else if (aArg.equalsL(RTL_CONSTASCII_STRINGPARAM(-O)))
 nState = STATE_OUTPUT; // next token specifies the dest file
-}
-else if ( ByteString( argv[ i ]).ToUpperAscii()  == -X ) {
+else if (aArg.equalsL(RTL_CONSTASCII_STRINGPARAM(-X)))
 nState = STATE_OUTPUTX; // next token specifies the dest file
-}
-else if ( ByteString( argv[ i ]).ToUpperAscii()  == -Y ) {
+else if (aArg.equalsL(RTL_CONSTASCII_STRINGPARAM(-Y )))
 nState = STATE_OUTPUTY; // next token specifies the dest file
-}
-else if ( ByteString( argv[ i ]).ToUpperAscii() == -P ) {
+else if (aArg.equalsL(RTL_CONSTASCII_STRINGPARAM(-P )))
 nState = STATE_PRJ; // next token specifies the cur. project
-}
- else if ( ByteString( argv[ i ]).ToUpperAscii() == -LF ) {
+else if (aArg.equalsL(RTL_CONSTASCII_STRINGPARAM(-LF)))
 nState = STATE_FORCE_LANGUAGES;
-}
-
-else if ( ByteString( argv[ i ]).ToUpperAscii() == -R ) {
+else if (aArg.equalsL(RTL_CONSTASCII_STRINGPARAM(-R )))
 nState = STATE_ROOT; // next token specifies path to project root
-}
-else if ( ByteString( argv[ i ]).ToUpperAscii() == -M ) {
+else if (aArg.equalsL(RTL_CONSTASCII_STRINGPARAM(-M )))
 nState = STATE_SDFFILE; // next token specifies the merge database
-}
-else if ( ByteString( argv[ i ]).ToUpperAscii() == -E ) {
+else if (aArg.equalsL(RTL_CONSTASCII_STRINGPARAM(-E )))
+{
 nState = STATE_ERRORLOG;
 bErrorLog = sal_False;
 }
-else if ( ByteString( argv[ i ]).ToUpperAscii() == -L ) {
+else if (aArg.equalsL(RTL_CONSTASCII_STRINGPARAM(-L )))
 nState = STATE_LANGUAGES;
-}
-else {
-switch ( nState ) {
+else
+{
+switch ( nState )
+{
 case STATE_NON: {
 return sal_False;   // no valid command line
 }
@@ -200,57 +195,53 @@ int _cdecl main( int argc, char *argv[] )
 }
 //sal_uInt32 startfull = Export::startMessure();
 
-bool hasInputList = sInputFile.GetBuffer()[0]=='@';
-//printf(x = %s , y = %s , o = %s\n, sOutputFileX.GetBuffer(),  
sOutputFileY.GetBuffer() , sOutputFile.GetBuffer() );
+bool hasInputList = sInputFile[0]=='@';
 bool hasNoError = true;
 
-if ( sOutputFile.Len() ){   // 
Merge single file ?
-//printf(DBG: Inputfile = %s\n,sInputFile.GetBuffer());
+if ( sOutputFile.getLength() ){
   // Merge single file ?
 HelpParser aParser( sInputFile, bUTF8 , false );
 
 if ( bMergeMode )
 {
 //sal_uInt64 startreadloc = Export::startMessure();
 MergeDataFile aMergeDataFile(sSDFFile, sInputFile, sal_False);
-//Export::stopMessure( ByteString(read localize.sdf) , 
startreadloc );
 
 hasNoError = aParser.Merge( sSDFFile, sOutputFile , 

[Libreoffice-commits] .: 4 commits - oox/inc oox/source starmath/source

2011-12-20 Thread Lubos Lunak
 oox/inc/oox/mathml/importutils.hxx |   19 +++
 oox/source/mathml/importutils.cxx  |   12 ++--
 starmath/source/ooxmlexport.cxx|   32 +++-
 starmath/source/ooxmlexport.hxx|2 +-
 starmath/source/ooxmlimport.cxx|   29 ++---
 starmath/source/ooxmlimport.hxx|2 +-
 6 files changed, 60 insertions(+), 36 deletions(-)

New commits:
commit 577bb0dc298cc376d94ecdd35672081628bb8a93
Author: Luboš Luňák l.lu...@suse.cz
Date:   Tue Dec 20 10:46:43 2011 +0100

if a bracket pair has no left/right bracket, it needs to explicit 
(fdo#32636)

diff --git a/starmath/source/ooxmlimport.cxx b/starmath/source/ooxmlimport.cxx
index 60fb230..1cdee7f 100644
--- a/starmath/source/ooxmlimport.cxx
+++ b/starmath/source/ooxmlimport.cxx
@@ -346,6 +346,10 @@ OUString SmOoxmlImport::handleD()
 closing = STR(  right  ) + closing;
 if( separator == STR( | )) // plain | would be actually V (logical 
or)
 separator = STR(  mline  );
+if( opening.isEmpty())
+opening = STR( left none  );
+if( closing.isEmpty())
+closing = STR(  right none );
 OUStringBuffer ret;
 ret.append( opening );
 bool first = true;
commit d607e5cda6d2d18464ecdf6740a90870039a78f7
Author: Luboš Luňák l.lu...@suse.cz
Date:   Tue Dec 20 10:44:01 2011 +0100

import m:eqArr (part of fdo#32636)

diff --git a/starmath/source/ooxmlimport.cxx b/starmath/source/ooxmlimport.cxx
index 8a763a2..60fb230 100644
--- a/starmath/source/ooxmlimport.cxx
+++ b/starmath/source/ooxmlimport.cxx
@@ -116,6 +116,9 @@ OUString SmOoxmlImport::readOMathArg()
 case OPENING( M_TOKEN( d )):
 ret += handleD();
 break;
+case OPENING( M_TOKEN( eqArr )):
+ret += handleEqArr();
+break;
 case OPENING( M_TOKEN( f )):
 ret += handleF();
 break;
@@ -358,6 +361,22 @@ OUString SmOoxmlImport::handleD()
 return ret.makeStringAndClear();
 }
 
+OUString SmOoxmlImport::handleEqArr()
+{
+stream.ensureOpeningTag( M_TOKEN( eqArr ));
+OUString ret;
+do
+{ // there must be at least one m:e
+if( !ret.isEmpty())
+ret += STR( # );
+ret += STR(   );
+ret += readOMathArgInElement( M_TOKEN( e ));
+ret += STR(   );
+} while( !stream.atEnd()  stream.findTag( OPENING( M_TOKEN( e ;
+stream.ensureClosingTag( M_TOKEN( eqArr ));
+return STR( stack { ) + ret + STR( } );
+}
+
 OUString SmOoxmlImport::handleF()
 {
 stream.ensureOpeningTag( M_TOKEN( f ));
diff --git a/starmath/source/ooxmlimport.hxx b/starmath/source/ooxmlimport.hxx
index 5bea975..dc6816f 100644
--- a/starmath/source/ooxmlimport.hxx
+++ b/starmath/source/ooxmlimport.hxx
@@ -49,7 +49,7 @@ private:
 rtl::OUString handleBox();
 rtl::OUString handleBorderBox();
 rtl::OUString handleD();
-rtl::OUString handleE();
+rtl::OUString handleEqArr();
 rtl::OUString handleF();
 rtl::OUString handleFunc();
 enum LimLowUpp_t { LimLow, LimUpp };
commit a69d808021e25303c62b84df459515d1ca52dc12
Author: Luboš Luňák l.lu...@suse.cz
Date:   Tue Dec 20 10:43:17 2011 +0100

export vertical stack as m:eqArr, seems to fit much better

diff --git a/starmath/source/ooxmlexport.cxx b/starmath/source/ooxmlexport.cxx
index 3604894..a7740da 100644
--- a/starmath/source/ooxmlexport.cxx
+++ b/starmath/source/ooxmlexport.cxx
@@ -152,7 +152,7 @@ void SmOoxmlExport::HandleTable( const SmNode* pNode, int 
nLevel )
 //OOXML output stack which would grow
 //without bound in a multi step conversion
 if( nLevel || pNode-GetNumSubNodes()  1 )
-HandleVerticalStack( pNode, nLevel, 0 );
+HandleVerticalStack( pNode, nLevel );
 else
 HandleAllSubNodes( pNode, nLevel );
 }
@@ -174,29 +174,19 @@ void SmOoxmlExport::HandleAllSubNodes( const SmNode* 
pNode, int nLevel )
 }
 }
 
-// output vertical stack, firstItem says which child to use as first (if there
-// are more than two children, OOXML can have only a vertical stack of two 
items,
-// so create a bigger vertical stack recursively)
-void SmOoxmlExport::HandleVerticalStack( const SmNode* pNode, int nLevel, int 
firstItem )
+void SmOoxmlExport::HandleVerticalStack( const SmNode* pNode, int nLevel )
 {
-if( firstItem == pNode-GetNumSubNodes() - 1 ) // only one item, just 
output the item
+m_pSerializer-startElementNS( XML_m, XML_eqArr, FSEND );
+int size = pNode-GetNumSubNodes();
+for( int i = 0;
+ i  size;
+ ++i )
 {
-HandleNode( pNode-GetSubNode( firstItem ), nLevel + 1 );
-return;
+m_pSerializer-startElementNS( XML_m, XML_e, FSEND );
+HandleNode( pNode-GetSubNode( i ), nLevel + 1 );
+m_pSerializer-endElementNS( XML_m, XML_e );
 }
-m_pSerializer-startElementNS( XML_m, XML_f, FSEND );
-m_pSerializer-startElementNS( XML_m, 

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

2011-12-20 Thread Lubos Lunak
 oox/inc/oox/mathml/importutils.hxx |   19 +++
 oox/source/mathml/importutils.cxx  |   12 ++--
 starmath/source/ooxmlexport.cxx|   32 +++-
 starmath/source/ooxmlexport.hxx|2 +-
 starmath/source/ooxmlimport.cxx|   29 ++---
 starmath/source/ooxmlimport.hxx|2 +-
 6 files changed, 60 insertions(+), 36 deletions(-)

New commits:
commit 40f129a99e691babaf7320cb32dff7ec5c77275c
Author: Luboš Luňák l.lu...@suse.cz
Date:   Tue Dec 20 10:46:43 2011 +0100

if a bracket pair has no left/right bracket, it needs to explicit 
(fdo#32636)

diff --git a/starmath/source/ooxmlimport.cxx b/starmath/source/ooxmlimport.cxx
index 60fb230..1cdee7f 100644
--- a/starmath/source/ooxmlimport.cxx
+++ b/starmath/source/ooxmlimport.cxx
@@ -346,6 +346,10 @@ OUString SmOoxmlImport::handleD()
 closing = STR(  right  ) + closing;
 if( separator == STR( | )) // plain | would be actually V (logical 
or)
 separator = STR(  mline  );
+if( opening.isEmpty())
+opening = STR( left none  );
+if( closing.isEmpty())
+closing = STR(  right none );
 OUStringBuffer ret;
 ret.append( opening );
 bool first = true;
commit 0e0988cc08269eb125bf6e362b8ddba0c0771296
Author: Luboš Luňák l.lu...@suse.cz
Date:   Tue Dec 20 10:44:01 2011 +0100

import m:eqArr (part of fdo#32636)

diff --git a/starmath/source/ooxmlimport.cxx b/starmath/source/ooxmlimport.cxx
index 8a763a2..60fb230 100644
--- a/starmath/source/ooxmlimport.cxx
+++ b/starmath/source/ooxmlimport.cxx
@@ -116,6 +116,9 @@ OUString SmOoxmlImport::readOMathArg()
 case OPENING( M_TOKEN( d )):
 ret += handleD();
 break;
+case OPENING( M_TOKEN( eqArr )):
+ret += handleEqArr();
+break;
 case OPENING( M_TOKEN( f )):
 ret += handleF();
 break;
@@ -358,6 +361,22 @@ OUString SmOoxmlImport::handleD()
 return ret.makeStringAndClear();
 }
 
+OUString SmOoxmlImport::handleEqArr()
+{
+stream.ensureOpeningTag( M_TOKEN( eqArr ));
+OUString ret;
+do
+{ // there must be at least one m:e
+if( !ret.isEmpty())
+ret += STR( # );
+ret += STR(   );
+ret += readOMathArgInElement( M_TOKEN( e ));
+ret += STR(   );
+} while( !stream.atEnd()  stream.findTag( OPENING( M_TOKEN( e ;
+stream.ensureClosingTag( M_TOKEN( eqArr ));
+return STR( stack { ) + ret + STR( } );
+}
+
 OUString SmOoxmlImport::handleF()
 {
 stream.ensureOpeningTag( M_TOKEN( f ));
diff --git a/starmath/source/ooxmlimport.hxx b/starmath/source/ooxmlimport.hxx
index 5bea975..dc6816f 100644
--- a/starmath/source/ooxmlimport.hxx
+++ b/starmath/source/ooxmlimport.hxx
@@ -49,7 +49,7 @@ private:
 rtl::OUString handleBox();
 rtl::OUString handleBorderBox();
 rtl::OUString handleD();
-rtl::OUString handleE();
+rtl::OUString handleEqArr();
 rtl::OUString handleF();
 rtl::OUString handleFunc();
 enum LimLowUpp_t { LimLow, LimUpp };
commit a77bbdb6f4203be700bacacd186757b058941346
Author: Luboš Luňák l.lu...@suse.cz
Date:   Tue Dec 20 10:43:17 2011 +0100

export vertical stack as m:eqArr, seems to fit much better

diff --git a/starmath/source/ooxmlexport.cxx b/starmath/source/ooxmlexport.cxx
index 3604894..a7740da 100644
--- a/starmath/source/ooxmlexport.cxx
+++ b/starmath/source/ooxmlexport.cxx
@@ -152,7 +152,7 @@ void SmOoxmlExport::HandleTable( const SmNode* pNode, int 
nLevel )
 //OOXML output stack which would grow
 //without bound in a multi step conversion
 if( nLevel || pNode-GetNumSubNodes()  1 )
-HandleVerticalStack( pNode, nLevel, 0 );
+HandleVerticalStack( pNode, nLevel );
 else
 HandleAllSubNodes( pNode, nLevel );
 }
@@ -174,29 +174,19 @@ void SmOoxmlExport::HandleAllSubNodes( const SmNode* 
pNode, int nLevel )
 }
 }
 
-// output vertical stack, firstItem says which child to use as first (if there
-// are more than two children, OOXML can have only a vertical stack of two 
items,
-// so create a bigger vertical stack recursively)
-void SmOoxmlExport::HandleVerticalStack( const SmNode* pNode, int nLevel, int 
firstItem )
+void SmOoxmlExport::HandleVerticalStack( const SmNode* pNode, int nLevel )
 {
-if( firstItem == pNode-GetNumSubNodes() - 1 ) // only one item, just 
output the item
+m_pSerializer-startElementNS( XML_m, XML_eqArr, FSEND );
+int size = pNode-GetNumSubNodes();
+for( int i = 0;
+ i  size;
+ ++i )
 {
-HandleNode( pNode-GetSubNode( firstItem ), nLevel + 1 );
-return;
+m_pSerializer-startElementNS( XML_m, XML_e, FSEND );
+HandleNode( pNode-GetSubNode( i ), nLevel + 1 );
+m_pSerializer-endElementNS( XML_m, XML_e );
 }
-m_pSerializer-startElementNS( XML_m, XML_f, FSEND );
-m_pSerializer-startElementNS( XML_m, 

[Libreoffice-commits] .: framework/source

2011-12-20 Thread Caolán McNamara
 framework/source/loadenv/loadenv.cxx |   36 +--
 1 file changed, 22 insertions(+), 14 deletions(-)

New commits:
commit 80cc772841dc3b03f0a629215858d0a44f5419a1
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Dec 20 10:00:36 2011 +

pretty up exception message for display in StarBasic dialogs

diff --git a/framework/source/loadenv/loadenv.cxx 
b/framework/source/loadenv/loadenv.cxx
index ef65152..090b6aa 100644
--- a/framework/source/loadenv/loadenv.cxx
+++ b/framework/source/loadenv/loadenv.cxx
@@ -193,24 +193,32 @@ css::uno::Reference css::lang::XComponent  
LoadEnv::loadComponentFromURL(const
 switch(ex.m_nID)
 {
 case LoadEnvException::ID_INVALID_MEDIADESCRIPTOR:
-throw css::lang::IllegalArgumentException(
-
::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(Optional list of arguments seem to 
be corrupted.)),
-xLoader,
-4);
+throw css::lang::IllegalArgumentException(
+::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(Optional list 
of arguments seem to be corrupted.)),
+xLoader,
+4);
 
 case LoadEnvException::ID_UNSUPPORTED_CONTENT:
-throw css::lang::IllegalArgumentException(
-(rtl::OUString(
-RTL_CONSTASCII_USTRINGPARAM(Unsupported URL )) +
- sURL +
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(: \)) +
- rtl::OStringToOUString(
- ex.m_sMessage, RTL_TEXTENCODING_UTF8) +
- rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(\))),
+{
+rtl::OUStringBuffer aMsg;
+aMsg.appendAscii(RTL_CONSTASCII_STRINGPARAM(Unsupported URL 
)).
+append(sURL).append('');
+
+if (!ex.m_sMessage.isEmpty())
+{
+aMsg.appendAscii(RTL_CONSTASCII_STRINGPARAM(: \)).
+append(rtl::OStringToOUString(
+ ex.m_sMessage, RTL_TEXTENCODING_UTF8)).
+appendAscii(RTL_CONSTASCII_STRINGPARAM(\));
+}
+
+throw 
css::lang::IllegalArgumentException(aMsg.makeStringAndClear(),
 xLoader, 1);
+}
 
-default: xComponent.clear();
-break;
+default:
+xComponent.clear();
+break;
 }
 }
 
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: 2 commits - cui/source unotools/source unusedcode.easy

2011-12-20 Thread Caolán McNamara
 cui/source/inc/treeopt.hxx |2 
 cui/source/options/treeopt.cxx |   18 ++--
 unotools/source/config/securityoptions.cxx |6 -
 unusedcode.easy|  127 +++--
 4 files changed, 42 insertions(+), 111 deletions(-)

New commits:
commit 217cde3790a05c786b7809d6326a15542aadd4ac
Author: Caolán McNamara caol...@redhat.com
Date:   Tue Dec 20 13:15:45 2011 +

callcatcher: update list

diff --git a/unotools/source/config/securityoptions.cxx 
b/unotools/source/config/securityoptions.cxx
index 89b63cb..cb925a2 100644
--- a/unotools/source/config/securityoptions.cxx
+++ b/unotools/source/config/securityoptions.cxx
@@ -198,7 +198,6 @@ class SvtSecurityOptions_Impl : public ConfigItem
 
 Sequence SvtSecurityOptions::Certificate  GetTrustedAuthors   (  

 ) const ;
 voidSetTrustedAuthors   ( 
const Sequence SvtSecurityOptions::Certificate  rAuthors 
  )   ;
-sal_BoolIsTrustedAuthorsEnabled (  

 )   ;
 
 sal_BoolIsOptionSet ( SvtSecurityOptions::EOption 
eOption   ) const ;
 sal_BoolSetOption   ( SvtSecurityOptions::EOption 
eOption, sal_Bool bValue  )   ;
@@ -968,11 +967,6 @@ void SvtSecurityOptions_Impl::SetTrustedAuthors( const 
Sequence SvtSecurityOpti
 }
 }
 
-sal_Bool SvtSecurityOptions_Impl::IsTrustedAuthorsEnabled()
-{
-return m_bROTrustedAuthors;
-}
-
 sal_Bool SvtSecurityOptions_Impl::IsOptionSet( SvtSecurityOptions::EOption 
eOption ) const
 {
 sal_Bool*   pValue;
diff --git a/unusedcode.easy b/unusedcode.easy
index 5c73cc0..bf0dd0f 100644
--- a/unusedcode.easy
+++ b/unusedcode.easy
@@ -1,4 +1,6 @@
+(anonymous namespace)::Test::testCopyPaste()
 (anonymous 
namespace)::getState(std::__debug::vectorcppcanvas::internal::OutDevState, 
std::allocatorcppcanvas::internal::OutDevState  const)
+Animation::IsEmpty() const
 AtomDocument::AtomDocument(AtomPubSession*, std::basic_stringchar, 
std::char_traitschar, std::allocatorchar )
 AtomFolder::AtomFolder(AtomPubSession*, std::basic_stringchar, 
std::char_traitschar, std::allocatorchar )
 AtomPubSession::getCollectionUrl(Collection::Type)
@@ -7,7 +9,6 @@ BitmapWriteAccess::DrawPolygon(Polygon const)
 BufferNode::childAt(int) const
 ByteString::Assign(char const*, unsigned short)
 ByteString::Assign(char)
-ByteString::ByteString(String const, unsigned short, unsigned int)
 CIccCLUT::Interp3dTetra(float*, float const*)
 CIccCLUT::Iterate(IIccCLUTExec*)
 CIccFormulaCurveSegment::SetFunction(unsigned short, unsigned char, float*)
@@ -66,13 +67,6 @@ CurrencyBox::GetValuePos(long) const
 CurrencyField::CurrencyField(Window*, ResId const)
 CurrencyFormatter::SetCurrencySymbol(String const)
 CustomToolBarImportHelper::showToolbar(rtl::OUString const)
-DateBox::DateBox(Window*, ResId const)
-DateBox::GetDate(unsigned short) const
-DateBox::GetDatePos(Date const) const
-DateBox::InsertDate(Date const, unsigned short)
-DateBox::RemoveDate(Date const)
-DateFormatter::GetRealDate() const
-DateFormatter::IsDateModified() const
 DateTime::MakeDateTimeFromSec(Date const, unsigned long)
 DdeGetPutItem::DdeGetPutItem(DdeItem const)
 DdeService::AddFormat(unsigned long)
@@ -306,6 +300,9 @@ ScCellObj::SetFormulaResultDouble(double)
 ScCellObj::SetFormulaResultString(rtl::OUString const)
 ScCellObj::SetFormulaWithGrammar(rtl::OUString const, rtl::OUString const, 
formula::FormulaGrammar::Grammar)
 ScChangeActionContent::SetNewValue(String const, ScDocument*)
+ScClipRangeNameData::ScClipRangeNameData()
+ScClipRangeNameData::insert(unsigned short, unsigned short)
+ScClipRangeNameData::~ScClipRangeNameData()
 ScCompressedArrayint, unsigned char::GetEntryCount() const
 ScCompressedArrayint, unsigned short::CopyFrom(ScCompressedArrayint, 
unsigned short const, int, int, long)
 ScCompressedArrayint, unsigned short::GetValue(int) const
@@ -376,13 +373,7 @@ 
ScSimpleRangeList::Range::contains(ScSimpleRangeList::Range const) const
 ScStringCell::ScStringCell()
 ScSubTotalDescriptorBase::GetData(ScSubTotalParam) const
 ScSubTotalDescriptorBase::PutData(ScSubTotalParam const)
-ScTabPageSortFields::GetRanges()
-ScTabPageSortOptions::GetRanges()
 ScTabViewShell::LinkStubHtmlOptionsHdl(void*, void*)
-ScTpCalcOptions::GetRanges()
-ScTpPrintOptions::GetRanges()
-ScTpSubTotalGroup::GetRanges()
-ScTpUserLists::GetRanges()
 ScUserList::end()
 ScUserList::end() const
 ScValidationEntries_Impl::Insert(ScValidationData* const, unsigned short)
@@ -598,20 +589,16 @@ SvpSalInstance::CancelEvent(SalFrame const*, void*, 
unsigned short)
 SvtAcceleratorConfiguration::GetCommand(com::sun::star::awt::KeyEvent const)
 

[Libreoffice-commits] .: Branch 'libreoffice-3-5' - sc/inc

2011-12-20 Thread Eike Rathke
 sc/inc/token.hxx |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

New commits:
commit 5077756d82878e6eb3ea5662e37b8470ae14f35c
Author: Eike Rathke er...@redhat.com
Date:   Tue Dec 20 15:59:34 2011 +0100

another ScToken::GetDoubleRef: virtual dummy called

When checking for svSingleRef or svDoubleRef, also check for
svExternalSingleRef or svExternalDoubleRef. Otherwise the dummy reference is
treated.

diff --git a/sc/inc/token.hxx b/sc/inc/token.hxx
index 90c9dfb..fc65823 100644
--- a/sc/inc/token.hxx
+++ b/sc/inc/token.hxx
@@ -455,7 +455,8 @@ class SingleDoubleRefModifier
 public:
 SingleDoubleRefModifier( ScToken rT )
 {
-if ( rT.GetType() == formula::svSingleRef )
+formula::StackVar eType = rT.GetType();
+if ( eType == formula::svSingleRef || eType == 
formula::svExternalSingleRef )
 {
 pS = rT.GetSingleRef();
 aDub.Ref1 = aDub.Ref2 = *pS;
@@ -490,8 +491,9 @@ public:
 
 SingleDoubleRefProvider( const ScToken r )
 : Ref1( r.GetSingleRef() ),
-Ref2( r.GetType() == formula::svDoubleRef ?
-r.GetDoubleRef().Ref2 : Ref1 )
+Ref2( (r.GetType() == formula::svDoubleRef ||
+r.GetType() == 
formula::svExternalDoubleRef) ?
+r.GetDoubleRef().Ref2 : Ref1 )
 {}
 SingleDoubleRefProvider( const ScSingleRefData r )
 : Ref1( r ), Ref2( r )
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: starmath/source

2011-12-20 Thread Lubos Lunak
 starmath/source/ooxmlimport.cxx |3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

New commits:
commit 170d75c3f58e500bda864bf7b7aeefd06716a0a6
Author: Luboš Luňák l.lu...@suse.cz
Date:   Tue Dec 20 15:33:40 2011 +0100

remove obsolete comment

diff --git a/starmath/source/ooxmlimport.cxx b/starmath/source/ooxmlimport.cxx
index 1cdee7f..2fa59e1 100644
--- a/starmath/source/ooxmlimport.cxx
+++ b/starmath/source/ooxmlimport.cxx
@@ -408,8 +408,7 @@ OUString SmOoxmlImport::handleF()
 else if( operation == lin )
 return STR( { ) + num + STR( } / { ) + den + STR( } );
 else // noBar
-{ // TODO we write out stack of 3 items as recursive m:f, so merge here 
back
-  // to 'stack { x # y # z }'
+{
 return STR( binom { ) + num + STR( } { ) + den + STR( } );
 }
 }
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: cui/source

2011-12-20 Thread Ivan Timofeev
 cui/source/customize/acccfg.cxx   |8 
 cui/source/customize/cfg.cxx  |   26 +-
 cui/source/customize/cfgutil.cxx  |   10 +-
 cui/source/customize/macropg.cxx  |6 +++---
 cui/source/customize/selector.cxx |   10 +-
 cui/source/dialogs/SpellDialog.cxx|   14 +++---
 cui/source/dialogs/about.cxx  |4 ++--
 cui/source/dialogs/colorpicker.cxx|2 +-
 cui/source/dialogs/hangulhanjadlg.cxx |2 +-
 cui/source/dialogs/hldocntp.cxx   |4 ++--
 cui/source/dialogs/hlinettp.cxx   |2 +-
 cui/source/dialogs/hlmarkwn.cxx   |6 +++---
 cui/source/dialogs/insdlg.cxx |2 +-
 cui/source/dialogs/scriptdlg.cxx  |   28 ++--
 cui/source/dialogs/thesdlg.cxx|8 
 cui/source/inc/acccfg.hxx |2 +-
 cui/source/options/dbregister.cxx |2 +-
 cui/source/options/optcolor.cxx   |2 +-
 cui/source/options/optgdlg.cxx|   10 +-
 cui/source/options/optlingu.cxx   |   24 
 cui/source/options/optsave.cxx|   18 +-
 cui/source/options/treeopt.cxx|   22 +++---
 cui/source/tabpages/autocdlg.cxx  |2 +-
 cui/source/tabpages/numpages.cxx  |8 
 cui/source/tabpages/tpbitmap.cxx  |2 +-
 cui/source/tabpages/tpcolor.cxx   |2 +-
 cui/source/tabpages/tpgradnt.cxx  |2 +-
 cui/source/tabpages/tphatch.cxx   |2 +-
 cui/source/tabpages/tplnedef.cxx  |2 +-
 cui/source/tabpages/tplneend.cxx  |2 +-
 30 files changed, 117 insertions(+), 117 deletions(-)

New commits:
commit 1375183d465fb17db513dfe16ac522e48573a4c0
Author: Olivier Hallot olivier.hal...@alta.org.br
Date:   Fri Dec 16 17:29:07 2011 -0200

Fix for fdo43460 Part XI getLength() to isEmpty()

Part XI
Module
cui

diff --git a/cui/source/customize/acccfg.cxx b/cui/source/customize/acccfg.cxx
index 159272f..9a2a918 100644
--- a/cui/source/customize/acccfg.cxx
+++ b/cui/source/customize/acccfg.cxx
@@ -1015,7 +1015,7 @@ void SfxAcceleratorConfigPage::Apply(const 
css::uno::Reference css::ui::XAccele
 
 try
 {
-if (sCommand.getLength())
+if (!sCommand.isEmpty())
 xAccMgr-setKeyEvent(aAWTKey, sCommand);
 else
 xAccMgr-removeKeyEvent(aAWTKey);
@@ -1233,7 +1233,7 @@ IMPL_LINK( SfxAcceleratorConfigPage, LoadHdl, 
sfx2::FileDialogHelper*, EMPTYARG
 if ( ERRCODE_NONE == m_pFileDlg-GetError() )
 sCfgName = m_pFileDlg-GetPath();
 
-if ( !sCfgName.getLength() )
+if ( sCfgName.isEmpty() )
 return 0;
 
 GetTabDialog()-EnterWait();
@@ -1317,7 +1317,7 @@ IMPL_LINK( SfxAcceleratorConfigPage, SaveHdl, 
sfx2::FileDialogHelper*, EMPTYARG
 if ( ERRCODE_NONE == m_pFileDlg-GetError() )
 sCfgName = m_pFileDlg-GetPath();
 
-if ( !sCfgName.getLength() )
+if ( sCfgName.isEmpty() )
 return 0;
 
 GetTabDialog()-EnterWait();
@@ -1358,7 +1358,7 @@ IMPL_LINK( SfxAcceleratorConfigPage, SaveHdl, 
sfx2::FileDialogHelper*, EMPTYARG
 // set the correct media type if the storage was new created
 ::rtl::OUString sMediaType;
 xUIConfigProps-getPropertyValue(MEDIATYPE_PROPNAME) = 
sMediaType;
-if (!sMediaType.getLength())
+if (sMediaType.isEmpty())
 xUIConfigProps-setPropertyValue(MEDIATYPE_PROPNAME, 
css::uno::makeAny(MEDIATYPE_UICONFIG));
 
 xCfgMgr = css::uno::Reference css::ui::XUIConfigurationManager 
(m_xSMGR-createInstance(SERVICE_UICONFIGMGR), css::uno::UNO_QUERY_THROW);
diff --git a/cui/source/customize/cfg.cxx b/cui/source/customize/cfg.cxx
index de19df3..35de842 100644
--- a/cui/source/customize/cfg.cxx
+++ b/cui/source/customize/cfg.cxx
@@ -481,7 +481,7 @@ OUString GetUIModuleName( const OUString aModuleId, const 
uno::Reference css::
 }
 }
 
-if ( aModuleUIName.getLength() == 0 )
+if ( aModuleUIName.isEmpty() )
 aModuleUIName = GetModuleName( aModuleId );
 
 return aModuleUIName;
@@ -613,7 +613,7 @@ ConvertSvxConfigEntry(
 // as an empty string.
 // It will be initialised again later using the command to label map.
 aPropSeq[2].Name = aDescriptorLabel;
-if ( pEntry-HasChangedName() == sal_False  
pEntry-GetCommand().getLength() )
+if ( pEntry-HasChangedName() == sal_False  
!pEntry-GetCommand().isEmpty() )
 {
 sal_Bool isDefaultName = sal_False;
 try
@@ -694,7 +694,7 @@ ConvertToolbarEntry(
 // as an empty string.
 // It will be initialised again later using the command to label map.
 aPropSeq[2].Name = aDescriptorLabel;
-if ( pEntry-HasChangedName() == sal_False  
pEntry-GetCommand().getLength() )
+if ( pEntry-HasChangedName() == sal_False  
!pEntry-GetCommand().isEmpty() )
 {
 sal_Bool isDefaultName = 

[Libreoffice-commits] .: solenv/gbuild

2011-12-20 Thread Lubos Lunak
 solenv/gbuild/platform/WNT_INTEL_MSC.mk |2 +-
 solenv/gbuild/platform/com_GCC_class.mk |2 +-
 solenv/gbuild/platform/solaris.mk   |2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 0e44efd3744d6355e31f623a21c22057f5b2628c
Author: Luboš Luňák l.lu...@suse.cz
Date:   Tue Dec 20 16:35:18 2011 +0100

missed this in b55dbc1e - show extension for .c files as well

diff --git a/solenv/gbuild/platform/WNT_INTEL_MSC.mk 
b/solenv/gbuild/platform/WNT_INTEL_MSC.mk
index 3aaf695..3809f3b 100644
--- a/solenv/gbuild/platform/WNT_INTEL_MSC.mk
+++ b/solenv/gbuild/platform/WNT_INTEL_MSC.mk
@@ -281,7 +281,7 @@ endef
 # CObject class
 
 define gb_CObject__command
-$(call gb_Output_announce,$(2),$(true),C  ,3)
+$(call gb_Output_announce,$(2).c,$(true),C  ,3)
 $(call gb_Helper_abbreviate_dirs_native,\
mkdir -p $(dir $(1)) $(dir $(4))  \
$(gb_CC) \
diff --git a/solenv/gbuild/platform/com_GCC_class.mk 
b/solenv/gbuild/platform/com_GCC_class.mk
index 5bf7740..da90948 100644
--- a/solenv/gbuild/platform/com_GCC_class.mk
+++ b/solenv/gbuild/platform/com_GCC_class.mk
@@ -25,7 +25,7 @@
 
 # $(call gb_CObject__command,object,relative-source,source,dep-file)
 define gb_CObject__command
-$(call gb_Output_announce,$(2),$(true),C  ,3)
+$(call gb_Output_announce,$(2).c,$(true),C  ,3)
 $(call gb_Helper_abbreviate_dirs,\
mkdir -p $(dir $(1)) $(dir $(4))  \
$(gb_CC) \
diff --git a/solenv/gbuild/platform/solaris.mk 
b/solenv/gbuild/platform/solaris.mk
index a3d055b..afb9629 100644
--- a/solenv/gbuild/platform/solaris.mk
+++ b/solenv/gbuild/platform/solaris.mk
@@ -160,7 +160,7 @@ gb_Helper_OUTDIRLIBDIR := $(OUTDIR)/lib
 # CObject class
 
 define gb_CObject__command
-$(call gb_Output_announce,$(2),$(true),C  ,3)
+$(call gb_Output_announce,$(2).c,$(true),C  ,3)
 $(call gb_Helper_abbreviate_dirs,\
rm -f $(4)  \
mkdir -p $(dir $(1)) $(dir $(4))  \
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: cairo/pixman-0.24.0.patch configure.in icu/createmak.pl python/Python-2.6.1.patch RepositoryFixes.mk solenv/gbuild solenv/inc soltools/mkdepend

2011-12-20 Thread Tor Lillqvist
 RepositoryFixes.mk  |4 
 cairo/pixman-0.24.0.patch   |2 +-
 configure.in|9 -
 icu/createmak.pl|   12 
 python/Python-2.6.1.patch   |2 +-
 solenv/gbuild/gbuild.mk |4 
 solenv/gbuild/gbuild_simple.mk  |2 --
 solenv/gbuild/platform/WNT_INTEL_MSC.mk |3 +--
 solenv/inc/settings.mk  |1 -
 soltools/mkdepend/makefile.mk   |5 -
 10 files changed, 7 insertions(+), 37 deletions(-)

New commits:
commit 7d3c674a0444e7688178b00ae4675bb65c685798
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Tue Dec 20 18:06:46 2011 +0200

Abandon attempt to use the debug CRT in a dbgutil build

diff --git a/RepositoryFixes.mk b/RepositoryFixes.mk
index 901f7b8..ff1eb34 100644
--- a/RepositoryFixes.mk
+++ b/RepositoryFixes.mk
@@ -125,10 +125,6 @@ gb_Library_NOILIBFILENAMES += \
 gb_Library_FILENAMES := $(filter-out $(foreach 
lib,$(gb_Library_NOILIBFILENAMES),$(lib):%),$(gb_Library_FILENAMES))
 gb_Library_FILENAMES += $(foreach 
lib,$(gb_Library_NOILIBFILENAMES),$(lib):$(lib)$(gb_Library_PLAINEXT))
 
-ifneq ($(gb_PRODUCT),$(true))
-gb_Library_FILENAMES := $(patsubst 
msvcrt:msvcrt%,msvcrt:msvcrtd%,$(gb_Library_FILENAMES))
-endif
-
 endif # ifeq ($(COM),GCC)
 
 endif # ifeq ($(OS),WNT)
diff --git a/cairo/pixman-0.24.0.patch b/cairo/pixman-0.24.0.patch
index a6141ac..39122cd 100644
--- a/cairo/pixman-0.24.0.patch
+++ b/cairo/pixman-0.24.0.patch
@@ -19,7 +19,7 @@
 +endif
 +
 +ifeq ($(CFG_VAR),debug)
-+CFG_CFLAGS  = -MDd -Od -Zi
++CFG_CFLAGS  = -MD -Od -Zi
 +CFG_LDFLAGS = -DEBUG
 +else
 +CFG_CFLAGS  = -MD -O2
diff --git a/configure.in b/configure.in
index 120ed1f..c60a4ec 100644
--- a/configure.in
+++ b/configure.in
@@ -2434,15 +2434,6 @@ if test -n $enable_dbgutil  test $enable_dbgutil 
!= no; then
 PROEXT=
 PRODUCT=
 
-# Compiling with MSVC using --enable-dbgutil (i.e. using the
-# debugging runtime, and defining _DEBUG when compiling) just
-# causes too many compilation errors. After having spent some
-# months slowly fixing them one by one, having reached sw, I give
-# up. Feel free to try again.
-if test $_os = WINNT -a $WITH_MINGW != yes; then
-AC_MSG_ERROR([Sorry, --enable-dbgutil won't work with MSVC])
-fi
-
 AC_MSG_RESULT([yes])
 # cppunit and graphite expose STL in public headers
 if test $with_system_cppunit = yes; then
diff --git a/icu/createmak.pl b/icu/createmak.pl
index 891c5e3..3786ec1 100644
--- a/icu/createmak.pl
+++ b/icu/createmak.pl
@@ -364,12 +364,6 @@ sub createMakDepSection #01.04.2008 13:36
 {
 $line =~ s/CPP_PROJ=/CPPX_PROJ=/;
 $line =~ s/-Za/-Ze/;
-if ( $nonpro )
-{
-# if non product link against debug libraries
-$line =~ s/-MD/-MDd/;
-$line =~ s/-MT/-MTd/;
-}
 push @{$ref_make_file}, $line;
 }
 }
@@ -703,12 +697,6 @@ sub print_flags #18.04.2008 14:19
 @template = @{$template_hash{$switch}};
 foreach $line(@template)
 {
-if ( $nonpro )
-{
-# if non product link against debug libraries
-$line =~ s/-MD/-MDd/;
-$line =~ s/-MT/-MTd/;
-}
 print MAKFILE $line;
 }
 }
diff --git a/python/Python-2.6.1.patch b/python/Python-2.6.1.patch
index ac70bab..fe04ae3 100644
--- a/python/Python-2.6.1.patch
+++ b/python/Python-2.6.1.patch
@@ -434,7 +434,7 @@
}
else if (strcmp(argv[1], Debug) == 0) {
 -  strcat_s(command, CMD_SIZE, -D_DEBUG -MDd );
-+  strcat_s(command, CMD_SIZE, -D_DEBUG -MD );
++  strcat_s(command, CMD_SIZE, -MD );
}
else if (strcmp(argv[1], ReleaseItanium) == 0) {
strcat_s(command, CMD_SIZE, -MD /USECL:MS_ITANIUM );
diff --git a/solenv/gbuild/gbuild.mk b/solenv/gbuild/gbuild.mk
index 521a9c9..a75fda2 100644
--- a/solenv/gbuild/gbuild.mk
+++ b/solenv/gbuild/gbuild.mk
@@ -194,9 +194,13 @@ gb_GLOBALDEFS += \
 else
 gb_GLOBALDEFS += \
-DDBG_UTIL \
+
+ifneq ($(COM),MSC)
+gb_GLOBALDEFS += \
-D_DEBUG \
 
 endif
+endif
 
 ifneq ($(strip $(SOLAR_JAVA)),)
 gb_GLOBALDEFS += -DSOLAR_JAVA
diff --git a/solenv/gbuild/gbuild_simple.mk b/solenv/gbuild/gbuild_simple.mk
index aeac005..a4cdb0d 100644
--- a/solenv/gbuild/gbuild_simple.mk
+++ b/solenv/gbuild/gbuild_simple.mk
@@ -46,8 +46,6 @@ include $(GBUILDDIR)/BuildDirs.mk
 # I think any use of gbuild_simple.mk is in a sub-make under one that
 # uses gbuild.mk anyway.
 
-# gb_PRODUCT is used by windows.mk to decide which C/C++ runtime to
-# link with.
 ifneq ($(strip $(PRODUCT)$(product)),)
 gb_PRODUCT := $(true)
 else
diff --git a/solenv/gbuild/platform/WNT_INTEL_MSC.mk 

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

2011-12-20 Thread Petr Mladek
Tag 'libreoffice-3.4.99.2' created by Petr Mladek pmla...@suse.cz at 
2011-12-20 16:06 +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)

iQIcBAABAgAGBQJO8LKCAAoJEPQ0oe+v7q6j8cgP/3izwBYVuhAWmFoeXTJT5hmx
SL9Rb7r7Kn8ek/iVzIgKRuaG5ax2Aks1LrjTJ5ycef9+nIJ7G4Pb1j6S/MGEdbIU
RJcVe2q87dAVuaF6iVhIQtrwipZvCBKnTrCs+ZD3NI/4jboBjpZNuIcas9czuJXA
OGr3Y3zQOSM51G8yzoarxa/OCcyj4gwFv0AsGsNF9lcEOF9aMqfwYe04h2FwqHmV
u3yri602xU0S7uUBgR38gfPrUuSp7QM6egFCRKYaneZCW5+5GIqNpg4sk5i3p8KJ
Km3Nyijh08frIKXOsdCjMmzmR891SMDh8+mkG5/iQnYH3w3T+MO30r/e7i5mffhE
p4PkmRiIilJeR2kq9PxBvk61fEJRJK7e3gCm0D5jpUBH+pO5jXWbHhOqG/OJO18E
VYJ3HIpRzdFKanNXWfb8lyqCLJe5srG/BeCn63/XMislCBwmGm+5X1g5/9XkXJM0
AWdcAOIpjklTFypGDTd/a+Go+TRCgh/0zfYL43VztTiISwcVKdNTBpQzzXzMBYr3
DxTtYM3N/SDYnIZtF/X8KYYEJ5DnUodLu43J4wW+yxRZMiTPCDeGXfRaVDBOgORs
PXga/ibvi9kq8mPtffoEjcg8N71pOWbEyIFpnLdJY3Xq8eeQSpdc+B+gJcwMfLal
4AGBVW/jleTCf10E2OUy
=QNxe
-END PGP SIGNATURE-

Changes since libreoffice-3-5-branch-point-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.99.2'

2011-12-20 Thread Petr Mladek
Tag 'libreoffice-3.4.99.2' created by Petr Mladek pmla...@suse.cz at 
2011-12-20 16:06 +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)

iQIcBAABAgAGBQJO8LKDAAoJEPQ0oe+v7q6ju7oQAM5cwIPkRW6wUhfqIa8XEfbG
5OtIl+67QCE0Qkn6tmAqw0DR/42MhbyE2OMYCV9lGbfy6oXlWjoHo8wL0OD+1oiB
QGpLgGahWSt/9GBZpOYwIHT+s7QB7GLSRsztB/Dt5T9fMzFi/vAyx0DttK0Px99w
+biHzAJF5Sfs2qdeEBRU/gD95+zP3tQASIGZfwIwhRhqCYr0G4UhnLLJdJoOQuyZ
k7eTUVu/YHg1JPzLWLNpjmjYOyO5Nzx0VJQYdKfx+szjq+LBaRkHcYkRmvXRfK9/
7ZqfdJu8rXm1bSDgVgKW8aw/KIumMpqSNvAGEv/hS+wHSpPh6qvTgdMroAk+BTzU
Ix9y9tfqTqhes3m5hNtdUXxgYBZ4oNaBn3A//smrAf1cIjpuKY1qXUORuqS+3YMz
M+FOZR8l30IWlATEMSRi/VTGw1ACXNxGCXFl5CRA1qxYCo94yk2gg3scYbaWbtrf
w9qIyfGXXu1ftDxoNWBzomjdLvzGLvFYw4e7mStytcA0tbTFujvfKMQSXD4AEk97
3RDM0r6sGwb62bL4Db/ShSN/RC/igJ0JDq4wt/WKkN9aXCsFqRphTCice1qveo9w
A1j/kF8PUWXPoBu8d/NSYUpVlz7+tFO0wd9Cr2pLBLbk/VnMo0r7/5rMmjcXp1Dj
gS6Xhoo9VglPK43bcQs8
=uldc
-END PGP SIGNATURE-

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


[Libreoffice-commits] .: .gitignore

2011-12-20 Thread Peter Foley
 .gitignore |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 4862b48b4d4eda39e24b18368f405e18ffaf1298
Author: Peter Foley pefol...@verizon.net
Date:   Tue Dec 20 12:15:32 2011 -0500

ignore concat-deps on cygwin

diff --git a/.gitignore b/.gitignore
index e9864e2..705ddbd 100644
--- a/.gitignore
+++ b/.gitignore
@@ -114,6 +114,7 @@ TAGS
 
 # botstrap generated tool
 /solenv/bin/concat-deps
+/solenv/bin/concat-deps.exe
 
 # test output files
 test/user-template/user/psprint/pspfontcache
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: unoxml/qa

2011-12-20 Thread Michael Stahl
 unoxml/qa/complex/unoxml/RDFRepositoryTest.java |   44 ++--
 1 file changed, 33 insertions(+), 11 deletions(-)

New commits:
commit cb1ad8c8df48161917fdb2044ac55d144049d2f4
Author: Michael Stahl mst...@redhat.com
Date:   Tue Dec 20 18:28:58 2011 +0100

unordf: tweak SPARQL unit test:

rasqal 0.9.27 returns no variables for a SPARQL SELECT query with no
results; it is unclear whether that is allowed but it is a corner case
and probably we should not be testing for that.

diff --git a/unoxml/qa/complex/unoxml/RDFRepositoryTest.java 
b/unoxml/qa/complex/unoxml/RDFRepositoryTest.java
index 7944a0e..d1006c2 100644
--- a/unoxml/qa/complex/unoxml/RDFRepositoryTest.java
+++ b/unoxml/qa/complex/unoxml/RDFRepositoryTest.java
@@ -785,15 +785,30 @@ public class RDFRepositoryTest
 String[] vars = (String[]) i_Result.getBindingNames();
 XEnumeration iter = (XEnumeration) i_Result;
 XNode[][] bindings = toSeqs(iter);
-if (vars.length != i_Vars.length) {
-System.out.println(var lengths differ);
-return false;
-}
 if (bindings.length != i_Bindings.length) {
 System.out.println(binding lengths differ:  + i_Bindings.length +
  vs  + bindings.length );
 return false;
 }
+if (vars.length != i_Vars.length) {
+// ignore for empty result: it is unclear to me whether SPARQL
+// spec requires returning the variables in this case,
+// and evidently newer rasqal versions don't
+if (0 != i_Bindings.length || 0 != vars.length)
+{
+System.out.println(var lengths differ: expected 
++ i_Vars.length +  but got  + vars.length);
+return false;
+}
+} else {
+for (int i = 0; i  i_Vars.length; ++i) {
+if (!vars[i].equals(i_Vars[i])) {
+System.out.println(variable names differ:  +
+vars[i] +  !=  + i_Vars[i]);
+return false;
+}
+}
+}
 java.util.Arrays.sort(bindings, new BindingComp());
 java.util.Arrays.sort(i_Bindings, new BindingComp());
 for (int i = 0; i  i_Bindings.length; ++i) {
@@ -813,13 +828,6 @@ public class RDFRepositoryTest
 }
 }
 }
-for (int i = 0; i  i_Vars.length; ++i) {
-if (!vars[i].equals(i_Vars[i])) {
-System.out.println(variable names differ:  +
-vars[i] +  !=  + i_Vars[i]);
-return false;
-}
-}
 return true;
 }
 
@@ -839,6 +847,20 @@ public class RDFRepositoryTest
 return namespaces;
 }
 
+// useful when debugging
+static void dumpRepo(XDocumentRepository xRep) throws Exception
+{
+XEnumeration xEnum = xRep.getStatements(null, null, null);
+while (xEnum.hasMoreElements())
+{
+Statement s = (Statement) xEnum.nextElement();
+System.out.println(STATEMENT IN:  + toS(s.Graph)
++ \n S:  + toS(s.Subject)
++ \n P:  + toS(s.Predicate)
++ \n O:  + toS(s.Object));
+}
+}
+
 class TestRange implements XTextRange, XMetadatable, XServiceInfo
 {
 String m_Stream;
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: offapi/com udkapi/com

2011-12-20 Thread Michael Meeks
 offapi/com/sun/star/drawing/DrawingDocumentFactory.idl |2 +-
 offapi/com/sun/star/i18n/XExtendedTransliteration.idl  |2 +-
 offapi/com/sun/star/i18n/XNativeNumberSupplier.idl |2 +-
 offapi/com/sun/star/linguistic2/LanguageGuessing.idl   |2 +-
 udkapi/com/sun/star/util/logging/Logger.idl|4 ++--
 5 files changed, 6 insertions(+), 6 deletions(-)

New commits:
commit 9ae50a6d41c535273ebfab77b9140952d302a177
Author: Michael Meeks michael.me...@suse.com
Date:   Tue Dec 20 17:46:59 2011 +

Revert minor idl fixes - no explicit license statement yet.

This reverts commit 5260bf5ea7271cca4767f596592091dcdfd895fe.

diff --git a/offapi/com/sun/star/drawing/DrawingDocumentFactory.idl 
b/offapi/com/sun/star/drawing/DrawingDocumentFactory.idl
index 71d3231..41bbd29 100644
--- a/offapi/com/sun/star/drawing/DrawingDocumentFactory.idl
+++ b/offapi/com/sun/star/drawing/DrawingDocumentFactory.idl
@@ -26,7 +26,7 @@
  **
 **/
 #ifndef __com_sun_star_drawing_DrawingDocumentFactory_idl__
-#define __com_sun_star_drawing_DrawingDocumentFactory_idl__
+#define __com::sun::star::drawing_DrawingDocumentFactory_idl__
 
 #include com/sun/star/lang/XMultiServiceFactory.idl
 
diff --git a/offapi/com/sun/star/i18n/XExtendedTransliteration.idl 
b/offapi/com/sun/star/i18n/XExtendedTransliteration.idl
index 3afe7c8..ca2348d 100644
--- a/offapi/com/sun/star/i18n/XExtendedTransliteration.idl
+++ b/offapi/com/sun/star/i18n/XExtendedTransliteration.idl
@@ -29,7 +29,7 @@
 #define __com_sun_star_i18n_XExtendedTransliteration_idl__
 
 #include com/sun/star/i18n/XTransliteration.idl
-#include com/sun/star/i18n/MultipleCharsOutputException.idl
+#include MultipleCharsOutputException.idl
 
 //=
 
diff --git a/offapi/com/sun/star/i18n/XNativeNumberSupplier.idl 
b/offapi/com/sun/star/i18n/XNativeNumberSupplier.idl
index 2e96883..a11ad7a 100644
--- a/offapi/com/sun/star/i18n/XNativeNumberSupplier.idl
+++ b/offapi/com/sun/star/i18n/XNativeNumberSupplier.idl
@@ -29,7 +29,7 @@
 #define __com_sun_star_i18n_XNativeNumberSupplier_idl__
 
 #include com/sun/star/lang/Locale.idl
-#include com/sun/star/i18n/NativeNumberXmlAttributes.idl
+#include NativeNumberXmlAttributes.idl
 
 //=
 
diff --git a/offapi/com/sun/star/linguistic2/LanguageGuessing.idl 
b/offapi/com/sun/star/linguistic2/LanguageGuessing.idl
index 5ba3c04..1e99fbc 100644
--- a/offapi/com/sun/star/linguistic2/LanguageGuessing.idl
+++ b/offapi/com/sun/star/linguistic2/LanguageGuessing.idl
@@ -28,7 +28,7 @@
 #ifndef __com_sun_star_linguistic2_LanguageGuessing_idl__
 #define __com_sun_star_linguistic2_LanguageGuessing_idl__
 
-#include com/sun/star/linguistic2/XLanguageGuessing.idl
+#include XLanguageGuessing.idl
 
 module com { module sun { module star { module linguistic2 {
 
diff --git a/udkapi/com/sun/star/util/logging/Logger.idl 
b/udkapi/com/sun/star/util/logging/Logger.idl
index 72e377a..5f02627 100644
--- a/udkapi/com/sun/star/util/logging/Logger.idl
+++ b/udkapi/com/sun/star/util/logging/Logger.idl
@@ -29,8 +29,8 @@
 #define __com_sun_star_webtop_Logger_idl__
 
 #include com/sun/star/uno/XInterface.idl
-#include com/sun/star/util/logging/XLogger.idl
-#include com/sun/star/util/logging/XLoggerRemote.idl
+#include XLogger.idl
+#include XLoggerRemote.idl
 
 //=
 
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: svx/inc

2011-12-20 Thread Michael Stahl
 svx/inc/svx/obj3d.hxx |2 -
 svx/inc/svx/sdrpagewindow.hxx |2 -
 svx/inc/svx/sdtakitm.hxx  |   76 --
 svx/inc/svx/sdynitm.hxx   |6 +--
 svx/inc/svx/sphere3d.hxx  |   12 +++---
 svx/inc/svx/svdcrtv.hxx   |   52 ++--
 svx/inc/svx/svddef.hxx|4 +-
 svx/inc/svx/svddrag.hxx   |   42 +++
 svx/inc/svx/svddrgv.hxx   |   12 +++---
 9 files changed, 103 insertions(+), 105 deletions(-)

New commits:
commit c5ed0b8f95600c3ceacbcd4511dc3a7b4cabcbae
Author: Noel Grandin n...@peralex.com
Date:   Tue Dec 20 19:01:27 2011 +0100

svx: translation by Mike Whiteley and Noel Grandin

(with very few tweaks by the committer)

diff --git a/svx/inc/svx/obj3d.hxx b/svx/inc/svx/obj3d.hxx
index 5cf5d03..e2d7e2d 100644
--- a/svx/inc/svx/obj3d.hxx
+++ b/svx/inc/svx/obj3d.hxx
@@ -118,7 +118,7 @@ private:
  protected:
 virtual sdr::properties::BaseProperties* CreateObjectSpecificProperties();
 
-E3dObjList  maSubList;  // child objekts
+E3dObjList  maSubList;  // child objects
 
 basegfx::B3DRange   maLocalBoundVol;// surrounding volume of 
the object (from the geometry generation)
 basegfx::B3DHomMatrix   maTransformation;   // local transformation
diff --git a/svx/inc/svx/sdrpagewindow.hxx b/svx/inc/svx/sdrpagewindow.hxx
index 7498c32..d1a2633 100644
--- a/svx/inc/svx/sdrpagewindow.hxx
+++ b/svx/inc/svx/sdrpagewindow.hxx
@@ -35,7 +35,7 @@
 #include com/sun/star/awt/XControlContainer.hpp
 #include com/sun/star/util/XModeChangeListener.hpp
 #include cppuhelper/implbase4.hxx
-#include svx/svdtypes.hxx // fuer SdrLayerID
+#include svx/svdtypes.hxx // for SdrLayerID
 #include svl/svarray.hxx
 #include tools/contnr.hxx
 #include svx/sdrpagewindow.hxx
diff --git a/svx/inc/svx/sdtakitm.hxx b/svx/inc/svx/sdtakitm.hxx
index a869003..a2b42df 100644
--- a/svx/inc/svx/sdtakitm.hxx
+++ b/svx/inc/svx/sdtakitm.hxx
@@ -43,48 +43,46 @@ enum SdrTextAniKind {SDRTEXTANI_NONE,
  SDRTEXTANI_SLIDE};
 
 // - SDRTEXTANI_BLINK:
-//   Einfach nur Blinken. Direction und Amount ohne Wirkung.
-//   Frequenz siehe Delay, 0=0.5Hz (Delay=250).
-//   Count=Anzahl der blinker. 0=Endlos.
-//   StartInside: sal_False=beginnend mit Pause, sal_True=Beginnend mit Puls
-//   StopInside:  sal_False=Nach Count blinkern nicht sichtbar, 
sal_True=sichtbar
-//(nur wenn Count!=0)
+//   Just blink.  Direction and Amount don't effect things.
+//   Frequency delay: 0 = 0.5Hz (Delay = 250).
+//   Count = number of blinks. (0 = forever)
+//   start inside: sal_False = begin with the blinker off, sal_True  = begin 
with the blinker on
+//   stop inside: sal_False = end with the blinker off, sal_True = end with 
the blinker on
+//(Only if count! = 0)
 // - SDRTEXTANI_SCROLL:
-//   Schrift laeuft rein, laeuft vollstaendig durch. Wenn ganz verschwunden
-//   geht's wieder von vorne los.
-//   Delay in ms, Sonderfall Delay=0 wird auf 50ms defaulted (20Hz)
-//   Count=Durchlaufanzahl (0=Endlos)
-//   Direction: ist eben die Richtung in die gescrollt wird.
-//   StartInside: sal_False=Schrift wird auch beim ersten Durchlauf 
reingescrollt
-//sal_True=Der linke Teil der Schrift steht beim ersten 
Durchlauf
-// bereits da (im sichtbaren Scrollbereich)
-//   StopInside:  sal_False=Schrift wird auch beim letzten Durchlauf 
vollstaendig
-//  rausgescrollt
-//sal_True=Schrift wird beim letzten Durchlauf nicht 
rausgescrollt
-//(nur wenn Count!=0)
-//   Amount: Schrittweite in logischen Einheiten. Negative Werte bedeuten
-//   Pixel statt log. Einheiten. Wenn Amount=0, dann wird auf
-//   1 Pixel defaulted.
+//   Text just scrolls all the way through, and starts over when it is done.
+//
+//   Delay in ms: (except delay = 0 means 50ms (20Hz) default)
+//   Count = number of passes (0 = go forever)
+//   Direction: the direction to scroll
+//   StartInside: sal_False = on the first pass, scroll the text in (not 
initially visible)
+//sal_True = on the first pass, the left part of the text is 
already visible
+//   in the scroll area before starting.
+//   StopInside: sal_False = on the last pass, scroll the text all the way out.
+//sal_True = on the last pass, keep the right part of the text 
visible.
+//(Only if count! = 0)
+//   Amount: Step size in logical units. Negative values = use Pixels instead
+//   of logical units. If Amount = 0, then default to 1 Pixel.
 // - SDRTEXTANI_ALTERNATE:
-//   Wie SDRTEXTANI_SCROLL, nur wird nicht gescrollt bis Schrift ganz
-//   verschwunden, sondern bis der letzte Teil vollstaendig sichtbar ist. Dann
-//   wird die Richtung umgekehrt und zuruekgescrollt.
-//   Count=Anzahl der Durchlaeufe=Anzahl der 

[Libreoffice-commits] .: Branch 'libreoffice-3-5' - 3 commits - solenv/bin sysui/desktop

2011-12-20 Thread Petr Mladek
 solenv/bin/ooinstall|9 +
 sysui/desktop/debian/makefile.mk|   20 ++--
 sysui/desktop/productversion.mk |6 +++---
 sysui/desktop/share/makefile.mk |2 +-
 sysui/desktop/slackware/makefile.mk |   20 ++--
 5 files changed, 33 insertions(+), 24 deletions(-)

New commits:
commit 8fe9441510014a468e9b8d8e901df5f4535ff4ae
Author: Petr Mladek pmla...@suse.cz
Date:   Tue Dec 20 19:43:21 2011 +0100

avoid the hardcoded 3.4 version

diff --git a/sysui/desktop/debian/makefile.mk b/sysui/desktop/debian/makefile.mk
index 45e0f33..f6ae363 100755
--- a/sysui/desktop/debian/makefile.mk
+++ b/sysui/desktop/debian/makefile.mk
@@ -45,7 +45,7 @@ TARGET=debian
 
 .IF $(PKGFORMAT)!=$(PKGFORMAT:s/deb//)
 
-DEBFILES=$(foreach,i,{$(PRODUCTLIST)} 
$(PKGDIR)$/$i3.4-$(TARGET)-menus_$(PKGVERSION.$i)-$(PKGREV)_all.deb)
+DEBFILES=$(foreach,i,{$(PRODUCTLIST)} 
$(PKGDIR)$/$i$(PRODUCTVERSION)-$(TARGET)-menus_$(PKGVERSION.$i)-$(PKGREV)_all.deb)
 
 .ENDIF
 
@@ -60,22 +60,22 @@ ALLTAR : $(DEBFILES)
 
 %/DEBIAN/control : $$(@:f)
 @$(MKDIRHIER) $(@:d) $*$/etc $*$/usr/share/applnk/Office $*$/usr/lib/menu
-ln -sf /opt/$(UNIXFILENAME.$(*:f:s/-/ /:1:s/3.4//)) $*$/etc$/
-/bin/sh -c -x cd $(COMMONMISC)$/$(*:f:s/-/ /:1:s/3.4//)  
DESTDIR=$(shell @cd $*; pwd) ICON_PREFIX=$(ICONPREFIX) KDEMAINDIR=/usr 
GNOMEDIR=/usr create_tree.sh
-@cat openoffice.org-debian-menus | sed -e 
's/%PRODUCTNAME/$(PRODUCTNAME.$(*:f:s/-/ /:1:s/3.4//)) 
$(PRODUCTVERSION.$(*:f:s/-/ /:1:s/3.4//))/' -e 
's/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ /:1:s/3.4//))/' -e 
's/%ICONPREFIX/$(ICONPREFIX.$(*:f:s/-/ /:1:s/3.4//))/'  
$*$/usr/lib/menu/$(*:f:s/_/ /:1:s/3.4//)
-echo Package: $(*:f:s/_/ /:1:s/3.4//)  $@
-cat $(@:f) | tr -d \015 | sed s/%productname/$(PRODUCTNAME.$(*:f:s/-/ 
/:1:s/3.4//))/  $@
-echo Version: $(PKGVERSION.$(*:f:s/-/ /:1:s/3.4//))-$(PKGREV)  $@
+ln -sf /opt/$(UNIXFILENAME.$(*:f:s/-/ /:1:s/$(PRODUCTVERSION)//)) $*$/etc$/
+/bin/sh -c -x cd $(COMMONMISC)$/$(*:f:s/-/ /:1:s/$(PRODUCTVERSION)//)  
DESTDIR=$(shell @cd $*; pwd) ICON_PREFIX=$(ICONPREFIX) KDEMAINDIR=/usr 
GNOMEDIR=/usr create_tree.sh
+@cat openoffice.org-debian-menus | sed -e 
's/%PRODUCTNAME/$(PRODUCTNAME.$(*:f:s/-/ /:1:s/$(PRODUCTVERSION)//)) 
$(PRODUCTVERSION.$(*:f:s/-/ /:1:s/$(PRODUCTVERSION)//))/' -e 
's/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ /:1:s/$(PRODUCTVERSION)//))/' -e 
's/%ICONPREFIX/$(ICONPREFIX.$(*:f:s/-/ /:1:s/$(PRODUCTVERSION)//))/'  
$*$/usr/lib/menu/$(*:f:s/_/ /:1:s/$(PRODUCTVERSION)//)
+echo Package: $(*:f:s/_/ /:1:s/$(PRODUCTVERSION)//)  $@
+cat $(@:f) | tr -d \015 | sed s/%productname/$(PRODUCTNAME.$(*:f:s/-/ 
/:1:s/$(PRODUCTVERSION)//))/  $@
+echo Version: $(PKGVERSION.$(*:f:s/-/ 
/:1:s/$(PRODUCTVERSION)//))-$(PKGREV)  $@
 @du -k -s $* | awk -F ' ' '{ printf Installed-Size: %s\n, $$1 ; }'  $@
 
 %/DEBIAN/postinst : $$(@:f)
- @cat $ | tr -d \015 | sed -e s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ 
/:1:s/3.4//))/g  $@
+ @cat $ | tr -d \015 | sed -e s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ 
/:1:s/$(PRODUCTVERSION)//))/g  $@
 
 %/DEBIAN/postrm : $$(@:f)
- @cat $ | tr -d \015 | sed -e s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ 
/:1:s/3.4//))/g  $@
+ @cat $ | tr -d \015 | sed -e s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ 
/:1:s/$(PRODUCTVERSION)//))/g  $@
 
 %/DEBIAN/prerm : $$(@:f)
- @cat $ | tr -d \015 | sed -e s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ 
/:1:s/3.4//))/g  $@
+ @cat $ | tr -d \015 | sed -e s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ 
/:1:s/$(PRODUCTVERSION)//))/g  $@
 
 # --- packaging ---
 
diff --git a/sysui/desktop/slackware/makefile.mk 
b/sysui/desktop/slackware/makefile.mk
index 4da439e..f75fdf3 100755
--- a/sysui/desktop/slackware/makefile.mk
+++ b/sysui/desktop/slackware/makefile.mk
@@ -40,7 +40,7 @@ TARGET=slackware
 
 # --- Files 
 
-MENUFILES=$(PKGDIR)$/{$(PRODUCTLIST)}3.4-$(TARGET)-menus-$(PKGVERSION)-noarch-$(PKGREV).tgz
+MENUFILES=$(PKGDIR)$/{$(PRODUCTLIST)}$(PRODUCTVERSION)-$(TARGET)-menus-$(PKGVERSION)-noarch-$(PKGREV).tgz
 
 # --- Targets ---
 
@@ -59,26 +59,26 @@ $(MISC)/$(TARGET)/usr/share/applications/ :
 # FIXME: removal of *-extension.* only to create identical packages to OOF680
 %/usr/share/applications : 
 @$(MKDIRHIER) $@
-/bin/sh -c cd $(COMMONMISC)$/$(*:b:s/-/ /:1:s/3.4//); DESTDIR=$(shell @cd 
$*; pwd) GNOMEDIR= ICON_PREFIX=$(ICONPREFIX.$(*:b:s/-/ /:1:s/3.4//)) 
KDEMAINDIR=/opt/kde .$/create_tree.sh
+/bin/sh -c cd $(COMMONMISC)$/$(*:b:s/-/ /:1:s/$(PRODUCTVERSION)//); 
DESTDIR=$(shell @cd $*; pwd) GNOMEDIR= ICON_PREFIX=$(ICONPREFIX.$(*:b:s/-/ 
/:1:s/$(PRODUCTVERSION)//)) KDEMAINDIR=/opt/kde .$/create_tree.sh
 $(RM) $*$/opt$/kde$/share$/icons$/*$/*$/*$/*-extension.png 
 $(RM) $*$/opt$/kde$/share$/mimelnk$/application$/*-extension.desktop 
 $(RM) 

[Libreoffice-commits] .: 3 commits - solenv/bin sysui/desktop

2011-12-20 Thread Petr Mladek
 solenv/bin/ooinstall|9 +
 sysui/desktop/debian/makefile.mk|   20 ++--
 sysui/desktop/productversion.mk |6 +++---
 sysui/desktop/share/makefile.mk |2 +-
 sysui/desktop/slackware/makefile.mk |   20 ++--
 5 files changed, 33 insertions(+), 24 deletions(-)

New commits:
commit 6703e91a745c78c2acf1beedfc55f7916d026ef9
Author: Petr Mladek pmla...@suse.cz
Date:   Tue Dec 20 19:43:21 2011 +0100

avoid the hardcoded 3.4 version

diff --git a/sysui/desktop/debian/makefile.mk b/sysui/desktop/debian/makefile.mk
index 45e0f33..f6ae363 100755
--- a/sysui/desktop/debian/makefile.mk
+++ b/sysui/desktop/debian/makefile.mk
@@ -45,7 +45,7 @@ TARGET=debian
 
 .IF $(PKGFORMAT)!=$(PKGFORMAT:s/deb//)
 
-DEBFILES=$(foreach,i,{$(PRODUCTLIST)} 
$(PKGDIR)$/$i3.4-$(TARGET)-menus_$(PKGVERSION.$i)-$(PKGREV)_all.deb)
+DEBFILES=$(foreach,i,{$(PRODUCTLIST)} 
$(PKGDIR)$/$i$(PRODUCTVERSION)-$(TARGET)-menus_$(PKGVERSION.$i)-$(PKGREV)_all.deb)
 
 .ENDIF
 
@@ -60,22 +60,22 @@ ALLTAR : $(DEBFILES)
 
 %/DEBIAN/control : $$(@:f)
 @$(MKDIRHIER) $(@:d) $*$/etc $*$/usr/share/applnk/Office $*$/usr/lib/menu
-ln -sf /opt/$(UNIXFILENAME.$(*:f:s/-/ /:1:s/3.4//)) $*$/etc$/
-/bin/sh -c -x cd $(COMMONMISC)$/$(*:f:s/-/ /:1:s/3.4//)  
DESTDIR=$(shell @cd $*; pwd) ICON_PREFIX=$(ICONPREFIX) KDEMAINDIR=/usr 
GNOMEDIR=/usr create_tree.sh
-@cat openoffice.org-debian-menus | sed -e 
's/%PRODUCTNAME/$(PRODUCTNAME.$(*:f:s/-/ /:1:s/3.4//)) 
$(PRODUCTVERSION.$(*:f:s/-/ /:1:s/3.4//))/' -e 
's/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ /:1:s/3.4//))/' -e 
's/%ICONPREFIX/$(ICONPREFIX.$(*:f:s/-/ /:1:s/3.4//))/'  
$*$/usr/lib/menu/$(*:f:s/_/ /:1:s/3.4//)
-echo Package: $(*:f:s/_/ /:1:s/3.4//)  $@
-cat $(@:f) | tr -d \015 | sed s/%productname/$(PRODUCTNAME.$(*:f:s/-/ 
/:1:s/3.4//))/  $@
-echo Version: $(PKGVERSION.$(*:f:s/-/ /:1:s/3.4//))-$(PKGREV)  $@
+ln -sf /opt/$(UNIXFILENAME.$(*:f:s/-/ /:1:s/$(PRODUCTVERSION)//)) $*$/etc$/
+/bin/sh -c -x cd $(COMMONMISC)$/$(*:f:s/-/ /:1:s/$(PRODUCTVERSION)//)  
DESTDIR=$(shell @cd $*; pwd) ICON_PREFIX=$(ICONPREFIX) KDEMAINDIR=/usr 
GNOMEDIR=/usr create_tree.sh
+@cat openoffice.org-debian-menus | sed -e 
's/%PRODUCTNAME/$(PRODUCTNAME.$(*:f:s/-/ /:1:s/$(PRODUCTVERSION)//)) 
$(PRODUCTVERSION.$(*:f:s/-/ /:1:s/$(PRODUCTVERSION)//))/' -e 
's/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ /:1:s/$(PRODUCTVERSION)//))/' -e 
's/%ICONPREFIX/$(ICONPREFIX.$(*:f:s/-/ /:1:s/$(PRODUCTVERSION)//))/'  
$*$/usr/lib/menu/$(*:f:s/_/ /:1:s/$(PRODUCTVERSION)//)
+echo Package: $(*:f:s/_/ /:1:s/$(PRODUCTVERSION)//)  $@
+cat $(@:f) | tr -d \015 | sed s/%productname/$(PRODUCTNAME.$(*:f:s/-/ 
/:1:s/$(PRODUCTVERSION)//))/  $@
+echo Version: $(PKGVERSION.$(*:f:s/-/ 
/:1:s/$(PRODUCTVERSION)//))-$(PKGREV)  $@
 @du -k -s $* | awk -F ' ' '{ printf Installed-Size: %s\n, $$1 ; }'  $@
 
 %/DEBIAN/postinst : $$(@:f)
- @cat $ | tr -d \015 | sed -e s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ 
/:1:s/3.4//))/g  $@
+ @cat $ | tr -d \015 | sed -e s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ 
/:1:s/$(PRODUCTVERSION)//))/g  $@
 
 %/DEBIAN/postrm : $$(@:f)
- @cat $ | tr -d \015 | sed -e s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ 
/:1:s/3.4//))/g  $@
+ @cat $ | tr -d \015 | sed -e s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ 
/:1:s/$(PRODUCTVERSION)//))/g  $@
 
 %/DEBIAN/prerm : $$(@:f)
- @cat $ | tr -d \015 | sed -e s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ 
/:1:s/3.4//))/g  $@
+ @cat $ | tr -d \015 | sed -e s/%PREFIX/$(UNIXFILENAME.$(*:f:s/-/ 
/:1:s/$(PRODUCTVERSION)//))/g  $@
 
 # --- packaging ---
 
diff --git a/sysui/desktop/slackware/makefile.mk 
b/sysui/desktop/slackware/makefile.mk
index 4da439e..f75fdf3 100755
--- a/sysui/desktop/slackware/makefile.mk
+++ b/sysui/desktop/slackware/makefile.mk
@@ -40,7 +40,7 @@ TARGET=slackware
 
 # --- Files 
 
-MENUFILES=$(PKGDIR)$/{$(PRODUCTLIST)}3.4-$(TARGET)-menus-$(PKGVERSION)-noarch-$(PKGREV).tgz
+MENUFILES=$(PKGDIR)$/{$(PRODUCTLIST)}$(PRODUCTVERSION)-$(TARGET)-menus-$(PKGVERSION)-noarch-$(PKGREV).tgz
 
 # --- Targets ---
 
@@ -59,26 +59,26 @@ $(MISC)/$(TARGET)/usr/share/applications/ :
 # FIXME: removal of *-extension.* only to create identical packages to OOF680
 %/usr/share/applications : 
 @$(MKDIRHIER) $@
-/bin/sh -c cd $(COMMONMISC)$/$(*:b:s/-/ /:1:s/3.4//); DESTDIR=$(shell @cd 
$*; pwd) GNOMEDIR= ICON_PREFIX=$(ICONPREFIX.$(*:b:s/-/ /:1:s/3.4//)) 
KDEMAINDIR=/opt/kde .$/create_tree.sh
+/bin/sh -c cd $(COMMONMISC)$/$(*:b:s/-/ /:1:s/$(PRODUCTVERSION)//); 
DESTDIR=$(shell @cd $*; pwd) GNOMEDIR= ICON_PREFIX=$(ICONPREFIX.$(*:b:s/-/ 
/:1:s/$(PRODUCTVERSION)//)) KDEMAINDIR=/opt/kde .$/create_tree.sh
 $(RM) $*$/opt$/kde$/share$/icons$/*$/*$/*$/*-extension.png 
 $(RM) $*$/opt$/kde$/share$/mimelnk$/application$/*-extension.desktop 
 $(RM) 

[Libreoffice-commits] .: basctl/source

2011-12-20 Thread August Sodora
 basctl/source/basicide/moduldlg.cxx |   41 
 basctl/source/basicide/moduldlg.hxx |6 ++---
 2 files changed, 22 insertions(+), 25 deletions(-)

New commits:
commit b0aac3f446f95080cbcac8e2f011dd56be1bacdd
Author: August Sodora aug...@gmail.com
Date:   Tue Dec 20 00:59:11 2011 -0500

String-OUString

diff --git a/basctl/source/basicide/moduldlg.cxx 
b/basctl/source/basicide/moduldlg.cxx
index 954f016..657c3c8 100644
--- a/basctl/source/basicide/moduldlg.cxx
+++ b/basctl/source/basicide/moduldlg.cxx
@@ -732,7 +732,7 @@ IMPL_LINK( ObjectPage, ButtonHdl, Button *, pButton )
 return 0;
 }
 
-bool ObjectPage::GetSelection( ScriptDocument rDocument, String rLibName )
+bool ObjectPage::GetSelection( ScriptDocument rDocument, ::rtl::OUString 
rLibName )
 {
 bool bRet = false;
 
@@ -740,8 +740,8 @@ bool ObjectPage::GetSelection( ScriptDocument rDocument, 
String rLibName )
 BasicEntryDescriptor aDesc( aBasicBox.GetEntryDescriptor( pCurEntry ) );
 rDocument = aDesc.GetDocument();
 rLibName = aDesc.GetLibName();
-if ( !rLibName.Len() )
-rLibName = String::CreateFromAscii( Standard );
+if ( rLibName.isEmpty() )
+rLibName = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(Standard));
 
 DBG_ASSERT( rDocument.isAlive(), ObjectPage::GetSelection: no or dead 
ScriptDocument in the selection! );
 if ( !rDocument.isAlive() )
@@ -784,11 +784,11 @@ bool ObjectPage::GetSelection( ScriptDocument rDocument, 
String rLibName )
 void ObjectPage::NewModule()
 {
 ScriptDocument aDocument( ScriptDocument::getApplicationScriptDocument() );
-String aLibName;
+::rtl::OUString aLibName;
 
 if ( GetSelection( aDocument, aLibName ) )
 {
-String aModName;
+::rtl::OUString aModName;
 createModImpl( static_castWindow*( this ), aDocument,
 aBasicBox, aLibName, aModName, true );
 }
@@ -797,7 +797,7 @@ void ObjectPage::NewModule()
 void ObjectPage::NewDialog()
 {
 ScriptDocument aDocument( ScriptDocument::getApplicationScriptDocument() );
-String aLibName;
+::rtl::OUString aLibName;
 
 if ( GetSelection( aDocument, aLibName ) )
 {
@@ -809,14 +809,14 @@ void ObjectPage::NewDialog()
 
 if (xNewDlg-Execute() != 0)
 {
-String aDlgName( xNewDlg-GetObjectName() );
-if (aDlgName.Len() == 0)
+::rtl::OUString aDlgName( xNewDlg-GetObjectName() );
+if (aDlgName.isEmpty())
 aDlgName = aDocument.createObjectName( E_DIALOGS, aLibName);
 
 if ( aDocument.hasDialog( aLibName, aDlgName ) )
 {
 ErrorBox( this, WB_OK | WB_DEF_OK,
-String( IDEResId( RID_STR_SBXNAMEALLREADYUSED2 ) ) 
).Execute();
+  ResId::toString( IDEResId( 
RID_STR_SBXNAMEALLREADYUSED2 ) ) ).Execute();
 }
 else
 {
@@ -933,7 +933,7 @@ LibDialog::LibDialog( Window* pParent )
 aReferenceBox(  this, IDEResId( RID_CB_REF ) ),
 aReplaceBox(this, IDEResId( RID_CB_REPL ) )
 {
-SetText( String( IDEResId( RID_STR_APPENDLIBS ) ) );
+SetText( ResId::toString( IDEResId( RID_STR_APPENDLIBS ) ) );
 FreeResource();
 }
 
@@ -942,16 +942,16 @@ LibDialog::~LibDialog()
 {
 }
 
-void LibDialog::SetStorageName( const String rName )
+void LibDialog::SetStorageName( const ::rtl::OUString rName )
 {
-String aName( IDEResId( RID_STR_FILENAME ) );
+::rtl::OUString aName( ResId::toString( IDEResId( RID_STR_FILENAME ) ) );
 aName += rName;
 aStorageName.SetText( aName );
 }
 
 // Helper function
 SbModule* createModImpl( Window* pWin, const ScriptDocument rDocument,
-BasicTreeListBox rBasicBox, const String rLibName, String aModName, bool 
bMain )
+BasicTreeListBox rBasicBox, const ::rtl::OUString rLibName, 
::rtl::OUString aModName, bool bMain )
 {
 OSL_ENSURE( rDocument.isAlive(), createModImpl: invalid document! );
 if ( !rDocument.isAlive() )
@@ -959,11 +959,11 @@ SbModule* createModImpl( Window* pWin, const 
ScriptDocument rDocument,
 
 SbModule* pModule = NULL;
 
-String aLibName( rLibName );
-if ( !aLibName.Len() )
-aLibName = String::CreateFromAscii( Standard );
+::rtl::OUString aLibName( rLibName );
+if ( aLibName.isEmpty() )
+aLibName = ::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(Standard));
 rDocument.getOrCreateLibrary( E_SCRIPTS, aLibName );
-if ( !aModName.Len() )
+if ( aModName.isEmpty() )
 aModName = rDocument.createObjectName( E_SCRIPTS, aLibName );
 
 boost::scoped_ptr NewObjectDialog  xNewDlg(
@@ -1011,7 +1011,7 @@ SbModule* createModImpl( Window* pWin, const 
ScriptDocument rDocument,
 if( pBasic  rDocument.isInVBAMode() )
 {
 // add the new module in the Modules entry
-SvLBoxEntry* pLibSubEntry = rBasicBox.FindEntry( 

[Libreoffice-commits] .: Branch 'feature/gbuild_extensions' - 15 commits - basctl/AllLangResTarget_basctl.mk Module_tail_build.mk postprocess/prj reportdesign/AllLangResTarget_rpt.mk reportdesign/AllL

2011-12-20 Thread Matus Kukan
 Module_tail_build.mk |   12 
 basctl/AllLangResTarget_basctl.mk|2 ++
 postprocess/prj/build.lst|2 +-
 reportdesign/AllLangResTarget_rpt.mk |2 ++
 reportdesign/AllLangResTarget_rptui.mk   |2 ++
 reportdesign/source/ui/dlg/CondFormat.cxx|3 ---
 reportdesign/source/ui/dlg/DateTime.cxx  |2 --
 reportdesign/source/ui/dlg/GroupsSorting.cxx |6 +-
 reportdesign/source/ui/dlg/Navigator.cxx |2 --
 reportdesign/source/ui/dlg/PageNumber.cxx|2 --
 sc/AllLangResTarget_sc.mk|2 ++
 sd/AllLangResTarget_sd.mk|2 ++
 starmath/AllLangResTarget_sm.mk  |2 ++
 svx/AllLangResTarget_svx.mk  |   20 
 sw/AllLangResTarget_sw.mk|2 ++
 tail_build/prj/build.lst |2 +-
 16 files changed, 41 insertions(+), 24 deletions(-)

New commits:
commit a029a486868d936d5d4609f6c5b9875406f83536
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Tue Dec 20 20:01:23 2011 +0100

add basic to tail_build

diff --git a/Module_tail_build.mk b/Module_tail_build.mk
index ef026fd..764b9fc 100644
--- a/Module_tail_build.mk
+++ b/Module_tail_build.mk
@@ -28,6 +28,7 @@ $(eval $(call gb_Module_add_moduledirs,tail_end,\
 animations \
 avmedia \
 basctl \
+basic \
 bean \
 canvas \
 chart2 \
diff --git a/tail_build/prj/build.lst b/tail_build/prj/build.lst
index 5c4e3b8..87ca96d 100644
--- a/tail_build/prj/build.lst
+++ b/tail_build/prj/build.lst
@@ -1,2 +1,2 @@
-tb  tail_build : APACHE_COMMONS:apache-commons BSH:beanshell 
BERKELEYDB:berkeleydb BOOST:boost CAIRO:cairo CURL:curl HUNSPELL:hunspell 
HYPHEN:hyphen ICU:icu DESKTOP:l10ntools LIBCDR:libcdr 
LIBEXTTEXTCAT:libexttextcat LIBXML2:libxml2 LIBXMLSEC:libxmlsec LIBXSLT:libxslt 
LIBWPG:libwpg LIBWPS:libwps LIBWPD:libwpd LIBVISIO:libvisio LPSOLVE:lpsolve 
MDDS:mdds MYTHES:mythes NEON:neon NSS:nss OPENSSL:openssl PYTHON:python 
REDLAND:redland SANE:sane SAXON:saxon TRANSLATIONS:translations TWAIN:twain 
XPDF:xpdf ZLIB:zlib basegfx basic bridges comphelper connectivity cppu 
cppuhelper DESKTOP:fpicker framework javaunohelper jurt jvmaccess jvmfwk np_sdk 
offapi officecfg oovbaapi qadevOOo DESKTOP:rdbmaker readlicense_oo rhino 
ridljar sal sax shell solenv soltools sot stoc svl svtools sysui test toolkit 
tools ucbhelper udkapi unoil unotools ure vcl xmlhelp xmlscript xsltml NULL
+tb  tail_build : APACHE_COMMONS:apache-commons BSH:beanshell 
BERKELEYDB:berkeleydb BOOST:boost CAIRO:cairo CURL:curl HUNSPELL:hunspell 
HYPHEN:hyphen ICU:icu DESKTOP:l10ntools LIBCDR:libcdr 
LIBEXTTEXTCAT:libexttextcat LIBXML2:libxml2 LIBXMLSEC:libxmlsec LIBXSLT:libxslt 
LIBWPG:libwpg LIBWPS:libwps LIBWPD:libwpd LIBVISIO:libvisio LPSOLVE:lpsolve 
MDDS:mdds MYTHES:mythes NEON:neon NSS:nss OPENSSL:openssl PYTHON:python 
REDLAND:redland SANE:sane SAXON:saxon TRANSLATIONS:translations TWAIN:twain 
XPDF:xpdf ZLIB:zlib basegfx bridges comphelper connectivity cppu cppuhelper 
DESKTOP:fpicker framework javaunohelper jurt jvmaccess jvmfwk np_sdk offapi 
officecfg oovbaapi qadevOOo DESKTOP:rdbmaker readlicense_oo rhino ridljar sal 
salhelper sax shell solenv soltools sot stoc svl svtools sysui test toolkit 
tools ucbhelper udkapi unoil unotools ure vcl xmlhelp xmlscript xsltml NULL
 tb tail_build\prj nmake - all tb_prj   NULL
commit 032df7e9bfafeb93925959626b793cec17a4
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Tue Dec 20 19:38:30 2011 +0100

gbuild: these targets depend on svx/globlmn.hrc

diff --git a/basctl/AllLangResTarget_basctl.mk 
b/basctl/AllLangResTarget_basctl.mk
index 1611f9a..7e588d1 100644
--- a/basctl/AllLangResTarget_basctl.mk
+++ b/basctl/AllLangResTarget_basctl.mk
@@ -54,4 +54,6 @@ $(eval $(call gb_SrsTarget_add_files,basctl/res,\
basctl/source/dlged/managelang.src \
 ))
 
+$(call gb_SrsTarget_get_target,basctl/res) :| $(OUTDIR)/inc/svx/globlmn.hrc
+
 # vim: set noet sw=4 ts=4:
diff --git a/reportdesign/AllLangResTarget_rpt.mk 
b/reportdesign/AllLangResTarget_rpt.mk
index 55aeeb0..76baa19 100644
--- a/reportdesign/AllLangResTarget_rpt.mk
+++ b/reportdesign/AllLangResTarget_rpt.mk
@@ -45,4 +45,6 @@ $(eval $(call gb_SrsTarget_add_files,reportdesign/res,\
 reportdesign/source/core/resource/strings.src \
 ))
 
+$(call gb_SrsTarget_get_target,reportdesign/res) :| 
$(OUTDIR)/inc/svx/globlmn.hrc
+
 # vim: set noet sw=4 ts=4:
diff --git a/reportdesign/AllLangResTarget_rptui.mk 
b/reportdesign/AllLangResTarget_rptui.mk
index c41b5b8..23edf34 100644
--- a/reportdesign/AllLangResTarget_rptui.mk
+++ b/reportdesign/AllLangResTarget_rptui.mk
@@ -54,4 +54,6 @@ $(eval $(call gb_SrsTarget_add_files,reportdesign/rptui,\
reportdesign/source/ui/report/report.src \
 ))
 
+$(call gb_SrsTarget_get_target,reportdesign/rptui) :| 
$(OUTDIR)/inc/svx/globlmn.hrc
+
 # vim: set noet sw=4 ts=4:
diff --git 

[Libreoffice-commits] .: i18npool/source

2011-12-20 Thread Eike Rathke
 i18npool/source/localedata/data/pl_PL.xml |   62 ++
 1 file changed, 62 insertions(+)

New commits:
commit 28b1abe11c1bfc644701f62096fce7fcfafaaa93
Author: Mateusz Zasuwik mzasu...@gmail.com
Date:   Tue Dec 20 20:43:33 2011 +0100

genitive case month names for [pl-PL]

diff --git a/i18npool/source/localedata/data/pl_PL.xml 
b/i18npool/source/localedata/data/pl_PL.xml
index 1956896..2ed2ea6 100644
--- a/i18npool/source/localedata/data/pl_PL.xml
+++ b/i18npool/source/localedata/data/pl_PL.xml
@@ -290,6 +290,68 @@
   DefaultFullNamegrudzień/DefaultFullName
 /Month
   /MonthsOfYear
+  GenitiveMonths
+Month
+  MonthIDjan/MonthID
+  DefaultAbbrvNameI/DefaultAbbrvName
+  DefaultFullNamestycznia/DefaultFullName
+/Month
+Month
+  MonthIDfeb/MonthID
+  DefaultAbbrvNameII/DefaultAbbrvName
+  DefaultFullNamelutego/DefaultFullName
+/Month
+Month
+  MonthIDmar/MonthID
+  DefaultAbbrvNameIII/DefaultAbbrvName
+  DefaultFullNamemarca/DefaultFullName
+/Month
+Month
+  MonthIDapr/MonthID
+  DefaultAbbrvNameIV/DefaultAbbrvName
+  DefaultFullNamekwietnia/DefaultFullName
+/Month
+Month
+  MonthIDmay/MonthID
+  DefaultAbbrvNameV/DefaultAbbrvName
+  DefaultFullNamemaja/DefaultFullName
+/Month
+Month
+  MonthIDjun/MonthID
+  DefaultAbbrvNameVI/DefaultAbbrvName
+  DefaultFullNameczerwca/DefaultFullName
+/Month
+Month
+  MonthIDjul/MonthID
+  DefaultAbbrvNameVII/DefaultAbbrvName
+  DefaultFullNamelipca/DefaultFullName
+/Month
+Month
+  MonthIDaug/MonthID
+  DefaultAbbrvNameVIII/DefaultAbbrvName
+  DefaultFullNamesierpnia/DefaultFullName
+/Month
+Month
+  MonthIDsep/MonthID
+  DefaultAbbrvNameIX/DefaultAbbrvName
+  DefaultFullNamewrześnia/DefaultFullName
+/Month
+Month
+  MonthIDoct/MonthID
+  DefaultAbbrvNameX/DefaultAbbrvName
+  DefaultFullNamepaździernika/DefaultFullName
+/Month
+Month
+  MonthIDnov/MonthID
+  DefaultAbbrvNameXI/DefaultAbbrvName
+  DefaultFullNamelistopada/DefaultFullName
+/Month
+Month
+  MonthIDdec/MonthID
+  DefaultAbbrvNameXII/DefaultAbbrvName
+  DefaultFullNamegrudnia/DefaultFullName
+/Month
+  /GenitiveMonths
   Eras
 Era
   EraIDbc/EraID
___
Libreoffice-commits mailing list
Libreoffice-commits@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: svx/inc svx/Library_svxcore.mk svx/Package_inc.mk svx/source unusedcode.easy

2011-12-20 Thread Matus Kukan
 svx/Library_svxcore.mk   |1 
 svx/Package_inc.mk   |1 
 svx/inc/svx/sdrcomment.hxx   |  108 ---
 svx/inc/svx/svdpage.hxx  |9 ---
 svx/source/svdraw/sdrcomment.cxx |   99 ---
 unusedcode.easy  |5 -
 6 files changed, 223 deletions(-)

New commits:
commit 9148757cc823efa0ac6dfe0a9a825bae47cb31fa
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Tue Dec 20 22:23:33 2011 +0100

callcather: remove sdr::Comment

diff --git a/svx/Library_svxcore.mk b/svx/Library_svxcore.mk
index f7b3be7..508622f 100644
--- a/svx/Library_svxcore.mk
+++ b/svx/Library_svxcore.mk
@@ -305,7 +305,6 @@ $(eval $(call gb_Library_add_exception_objects,svxcore,\
 svx/source/svdraw/clonelist \
 svx/source/svdraw/gradtrns \
 svx/source/svdraw/polypolygoneditor \
-svx/source/svdraw/sdrcomment \
 svx/source/svdraw/sdrhittesthelper \
 svx/source/svdraw/sdrmasterpagedescriptor \
 svx/source/svdraw/sdrpagewindow \
diff --git a/svx/Package_inc.mk b/svx/Package_inc.mk
index 60b576a..bd07e7b 100644
--- a/svx/Package_inc.mk
+++ b/svx/Package_inc.mk
@@ -378,7 +378,6 @@ $(eval $(call 
gb_Package_add_file,svx_inc,inc/svx/svdfield.hxx,svx/svdfield.hxx)
 $(eval $(call gb_Package_add_file,svx_inc,inc/svx/relfld.hxx,svx/relfld.hxx))
 $(eval $(call 
gb_Package_add_file,svx_inc,inc/svx/AccessibleShapeInfo.hxx,svx/AccessibleShapeInfo.hxx))
 $(eval $(call gb_Package_add_file,svx_inc,inc/svx/numvset.hxx,svx/numvset.hxx))
-$(eval $(call 
gb_Package_add_file,svx_inc,inc/svx/sdrcomment.hxx,svx/sdrcomment.hxx))
 $(eval $(call 
gb_Package_add_file,svx_inc,inc/svx/txenctab.hxx,svx/txenctab.hxx))
 $(eval $(call 
gb_Package_add_file,svx_inc,inc/svx/svdorect.hxx,svx/svdorect.hxx))
 $(eval $(call gb_Package_add_file,svx_inc,inc/svx/xftshit.hxx,svx/xftshit.hxx))
diff --git a/svx/inc/svx/sdrcomment.hxx b/svx/inc/svx/sdrcomment.hxx
deleted file mode 100644
index f89e9ac..000
--- a/svx/inc/svx/sdrcomment.hxx
+++ /dev/null
@@ -1,108 +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 _SDR_COMMENT_HXX
-#define _SDR_COMMENT_HXX
-
-#include sal/types.h
-#include tools/date.hxx
-#include rtl/ustring.hxx
-#include basegfx/point/b2dpoint.hxx
-
-#include vector
-
-//
-// predeclarations
-
-//
-
-namespace sdr
-{
-class Comment
-{
-// counting ID
-sal_uInt32  mnID;
-
-// creation date
-DatemaCreationDate;
-
-// name of creator
-::rtl::OUString maUserName;
-
-// text content
-::rtl::OUString maText;
-
-// position
-basegfx::B2DPoint   maPosition;
-
-public:
-Comment(
-sal_uInt32 nID,
-Date aCreationDate,
-const ::rtl::OUString rUserName,
-const ::rtl::OUString rText,
-const basegfx::B2DPoint rPosition);
-~Comment();
-
-// operator for sorting the vector by mnID
-sal_Bool operator(const Comment rCandidate) const { return (mnID  
rCandidate.mnID); }
-
-// comparison operators
-sal_Bool operator==(const Comment rCandidate) const;
-sal_Bool operator!=(const Comment rCandidate) const { return 
!(operator==(rCandidate)); }
-
-// access to ID, read only
-sal_uInt32 GetID() const { return mnID; }
-
-// access to CreationDate
-Date GetCreationDate() const { return maCreationDate; }

[Libreoffice-commits] .: 4 commits - android/experiments sal/android sal/inc sal/osl

2011-12-20 Thread Tor Lillqvist
 android/experiments/DocumentLoader/build.xml  |  114 ++
 android/experiments/DocumentLoader/project.properties |   11 +
 sal/android/android_native_app_glue.c |2 
 sal/inc/sal/main.h|6 
 sal/osl/android/jni/Android.mk|   23 ---
 sal/osl/android/jni/Application.mk|2 
 6 files changed, 129 insertions(+), 29 deletions(-)

New commits:
commit 5e3059834e30276e520b8e0f701351d51af5c604
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Wed Dec 21 00:43:02 2011 +0200

Need visibility markup for ANativeActivity_onCreate() too

diff --git a/sal/android/android_native_app_glue.c 
b/sal/android/android_native_app_glue.c
index 8ff9f69..440f3db 100644
--- a/sal/android/android_native_app_glue.c
+++ b/sal/android/android_native_app_glue.c
@@ -414,7 +414,7 @@ static void onInputQueueDestroyed(ANativeActivity* 
activity, AInputQueue* queue)
 android_app_set_input((struct android_app*)activity-instance, NULL);
 }
 
-void ANativeActivity_onCreate(ANativeActivity* activity,
+__attribute__ ((visibility(default))) void 
ANativeActivity_onCreate(ANativeActivity* activity,
 void* savedState, size_t savedStateSize) {
 LOGI(Creating: %p\n, activity);
 activity-callbacks-onDestroy = onDestroy;
commit 73b54eb92ea8add31efdfb40b86c2ea2b3f78942
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Wed Dec 21 00:03:34 2011 +0200

Need visibility markup for lo_main() too

diff --git a/sal/inc/sal/main.h b/sal/inc/sal/main.h
index f44a200..49c8b5d 100644
--- a/sal/inc/sal/main.h
+++ b/sal/inc/sal/main.h
@@ -120,11 +120,11 @@ static int sal_main(void);
 #elif defined ANDROID
 
 #ifdef __cplusplus
-extern C void lo_main(int argc, char **argv);
+extern C __attribute__ ((visibility(default))) void lo_main(int argc, char 
**argv);
 #endif
 
 #define SAL_MAIN_WITH_ARGS_IMPL \
-void lo_main(int argc, char **argv) \
+__attribute__ ((visibility(default))) void lo_main(int argc, char **argv) \
 { \
 sal_detail_initialize(argc, argv); \
 sal_main_with_args(argc, argv); \
@@ -132,7 +132,7 @@ void lo_main(int argc, char **argv) \
 }
 
 #define SAL_MAIN_IMPL \
-void lo_main(int argc, char **argv) \
+__attribute__ ((visibility(default))) void lo_main(int argc, char **argv) \
 { \
 sal_detail_initialize(argc, argv); \
 sal_main(); \
commit eae42329c2733f55969a9342edcfd320d3f6c156
Author: Tor Lillqvist tlillqv...@suse.com
Date:   Tue Dec 20 18:13:24 2011 +0200

Add a couple of missing files

diff --git a/android/experiments/DocumentLoader/build.xml 
b/android/experiments/DocumentLoader/build.xml
new file mode 100644
index 000..5d96019
--- /dev/null
+++ b/android/experiments/DocumentLoader/build.xml
@@ -0,0 +1,114 @@
+?xml version=1.0 encoding=UTF-8?
+project name=LibreOfficeDocumentLoader default=help
+
+!-- The local.properties file is created and updated by the 'android' 
tool.
+ It contains the path to the SDK. It should *NOT* be checked into
+ Version Control Systems. --
+loadproperties srcFile=local.properties /
+
+!-- The ant.properties file can be created by you. It is only edited by 
the
+ 'android' tool to add properties to it.
+ This is the place to change some Ant specific build properties.
+ Here are some properties you may want to change/update:
+
+ source.dir
+ The name of the source directory. Default is 'src'.
+ out.dir
+ The name of the output directory. Default is 'bin'.
+
+ For other overridable properties, look at the beginning of the rules
+ files in the SDK, at tools/ant/build.xml
+
+ Properties related to the SDK location or the project target should
+ be updated using the 'android' tool with the 'update' action.
+
+ This file is an integral part of the build system for your
+ application and should be checked into Version Control Systems.
+
+ --
+property file=ant.properties /
+
+!-- The project.properties file is created and updated by the 'android'
+ tool, as well as ADT.
+
+ This contains project specific properties such as project target, and 
library
+ dependencies. Lower level build properties are stored in 
ant.properties
+ (or in .classpath for Eclipse projects).
+
+ This file is an integral part of the build system for your
+ application and should be checked into Version Control Systems. --
+loadproperties srcFile=project.properties /
+
+!-- quick check on sdk.dir --
+fail
+message=sdk.dir is missing. Make sure to generate 
local.properties using 'android update project'
+unless=sdk.dir
+/
+
+
+!-- extension targets. Uncomment the ones where you want to do custom work
+ in between standard targets --
+!--
+target name=-pre-build
+/target
+target name=-pre-compile
+/target
+
+/* This 

[Libreoffice] [PATCH] Fix fdo#39639 [EasyHack] Fix duplicate longname IDs

2011-12-20 Thread Victor Lee
Hello,
the attached patch simply removes duplicated and unused IDs in
BackgroundsDialog.

Victor Lee
diff --git a/wizards/com/sun/star/wizards/common/HelpIds.java b/wizards/com/sun/star/wizards/common/HelpIds.java
index 12af48a..4c9971b 100644
--- a/wizards/com/sun/star/wizards/common/HelpIds.java
+++ b/wizards/com/sun/star/wizards/common/HelpIds.java
@@ -139,10 +139,10 @@ public class HelpIds
 HID:WIZARDS_HID_BG_BTN_IMG10,// HID:34306
 HID:WIZARDS_HID_BG_BTN_IMG11,// HID:34307
 HID:WIZARDS_HID_BG_BTN_IMG12,// HID:34308
-HID:WIZARDS_HID_BG_BTN_IMG13,// HID:34309
-HID:WIZARDS_HID_BG_BTN_IMG14,// HID:34300
-HID:WIZARDS_HID_BG_BTN_IMG15,// HID:34311
-HID:WIZARDS_HID_BG_BTN_IMG16,// HID:34312
+PropertyNames.EMPTY_STRING,
+PropertyNames.EMPTY_STRING,
+PropertyNames.EMPTY_STRING,
+PropertyNames.EMPTY_STRING,
 PropertyNames.EMPTY_STRING,
 PropertyNames.EMPTY_STRING,
 PropertyNames.EMPTY_STRING,
diff --git a/wizards/com/sun/star/wizards/common/HelpIds.py b/wizards/com/sun/star/wizards/common/HelpIds.py
index c6bd1b7..38a8bf7 100644
--- a/wizards/com/sun/star/wizards/common/HelpIds.py
+++ b/wizards/com/sun/star/wizards/common/HelpIds.py
@@ -109,10 +109,10 @@ class HelpIds:
 HID:WIZARDS_HID_BG_BTN_IMG10, # HID:34306
 HID:WIZARDS_HID_BG_BTN_IMG11, # HID:34307
 HID:WIZARDS_HID_BG_BTN_IMG12, # HID:34308
-HID:WIZARDS_HID_BG_BTN_IMG13, # HID:34309
-HID:WIZARDS_HID_BG_BTN_IMG14, # HID:34300
-HID:WIZARDS_HID_BG_BTN_IMG15, # HID:34311
-HID:WIZARDS_HID_BG_BTN_IMG16, # HID:34312
+,
+,
+,
+,
 ,
 ,
 ,
diff --git a/wizards/com/sun/star/wizards/web/WWHID.java b/wizards/com/sun/star/wizards/web/WWHID.java
index 8baa372..9cc7670 100644
--- a/wizards/com/sun/star/wizards/web/WWHID.java
+++ b/wizards/com/sun/star/wizards/web/WWHID.java
@@ -132,11 +132,7 @@ public interface WWHID
 public static final int HID_BG_BTN_IMG9 = 34200 + 105;
 public static final int HID_BG_BTN_IMG10 = 34200 + 106;
 public static final int HID_BG_BTN_IMG11 = 34200 + 107;
-public static final int HID_BG_BTN_IMG12 = 34200 + 108;
-public static final int HID_BG_BTN_IMG13 = 34200 + 109;
-public static final int HID_BG_BTN_IMG14 = 34200 + 100;
-public static final int HID_BG_BTN_IMG15 = 34200 + 111;
-public static final int HID_BG_BTN_IMG16 = 34200 + 112;//   web wizard icons sets dialog
+public static final int HID_BG_BTN_IMG12 = 34200 + 108;//   web wizard icons sets dialog
 public static final int HID_IS = 41000 + 0;
 public static final int HID_IS_ICONSETS = 41000 + 1;
 public static final int HID_IS_BTN_NONE = 41000 + 2;
diff --git a/wizards/com/sun/star/wizards/web/WWHID.py b/wizards/com/sun/star/wizards/web/WWHID.py
index 28b3aaa..c71fda8 100644
--- a/wizards/com/sun/star/wizards/web/WWHID.py
+++ b/wizards/com/sun/star/wizards/web/WWHID.py
@@ -86,11 +86,7 @@ HID_BG_BTN_IMG8 = 34200 + 104
 HID_BG_BTN_IMG9 = 34200 + 105
 HID_BG_BTN_IMG10 = 34200 + 106
 HID_BG_BTN_IMG11 = 34200 + 107
-HID_BG_BTN_IMG12 = 34200 + 108
-HID_BG_BTN_IMG13 = 34200 + 109
-HID_BG_BTN_IMG14 = 34200 + 100
-HID_BG_BTN_IMG15 = 34200 + 111
-HID_BG_BTN_IMG16 = 34200 + 112  #web wizard icons sets dialog
+HID_BG_BTN_IMG12 = 34200 + 108  #web wizard icons sets dialog
 HID_IS = 41000 + 0
 HID_IS_ICONSETS = 41000 + 1
 HID_IS_BTN_NONE = 41000 + 2
diff --git a/wizards/util/hidother.src b/wizards/util/hidother.src
index bf1953e..004b0ff 100644
--- a/wizards/util/hidother.src
+++ b/wizards/util/hidother.src
@@ -238,14 +238,6 @@ hidspecial HID { HelpID = HID_BG_BTN_IMG10; } ;
 hidspecial HID { HelpID = HID_BG_BTN_IMG11; } ;
 // #define	HID_BG_BTN_IMG12	34308
 hidspecial HID { HelpID = HID_BG_BTN_IMG12; } ;
-// #define	HID_BG_BTN_IMG13	34309
-hidspecial HID { HelpID = HID_BG_BTN_IMG13; } ;
-// #define	HID_BG_BTN_IMG14	34300
-hidspecial HID { HelpID = HID_BG_BTN_IMG14; } ;
-// #define	HID_BG_BTN_IMG15	34311
-hidspecial HID { HelpID = HID_BG_BTN_IMG15; } ;
-// #define	HID_BG_BTN_IMG16	34312
-hidspecial HID { HelpID = HID_BG_BTN_IMG16; } ;
 
 // ++
 // Note: Web Wizard continues on 41000 later in this file.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] Build problems (and some solutions) in Mac OSX

2011-12-20 Thread Tor Lillqvist
You fail to give useful information to help you with your problems...

- What version of MacOSX are you running? What Xcode?
- What branch of the source code are you building?
- What exact error messages do you see, at what point in the build?
- How exactly did you configure your build? What does your
autogen.lastrun look like?

Anyway, some general answers to your question:
- Yes. LibreOffice can be built on MacOSX. As far as I know, on
versions from 10.4 to 10.7. (Myself I build on 10.7.) From the normal
sources.
- Yes, nothing extra is supposed to be needed, as long as you
--disable-mozilla. At least on 10.7 that's true, but then the Perl
there seems to come with the modules you mention. Maybe on earlier
versions it didn't.
- The master branch, and 3.5, use a different git repository structure
than earlier versions. In master and 3.5, there is one repository for
code, core, and then optional repositories for localisation and
help. In 3.4 there was a whole bunch of repositories for code.

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


Re: [Libreoffice] [PATCH][PUSHED] Build problems (and some solutions) in Mac OSX

2011-12-20 Thread Norbert Thiebaud
On Tue, Dec 20, 2011 at 12:04 AM, James C
james.from.welling...@gmail.com wrote:
 Hello All,

 I have burned about 1.5 GB of metered network bandwidth, so far,
 following these instructions:

 http://wiki.documentfoundation.org/Development/How_to_build#Getting_the_sources

 I have found and, I think fixed, problems which occur on both
 origin/master and origin/libreoffice-3-5, where the test for a
 parallel build bug presumes that mktmp and the thing to do sha1 hash
 sums look like they do on linux.  A patch is attached, which I *think*
 will not break the linux builds.  I release this change under GPLv3
 and MPL, as requested.  I hope that nobody has a software patent on
 the idea of correctness in code :-)

Looks nice, Thanks, pushed.


 There is also a human-sized problem, with some instructions on the
 web-site being wrong:
 https://bugs.freedesktop.org/show_bug.cgi?id=43920

 I am now stuck, and have not yet built libre-office.  There are two
 ways forward; one technical and one human.

 The technical one is:
  - my builds of origin/master and origin/libreoffice-3-5 fail in
 pango, because it depends on where cairo gets its fonts from, and on
 Apple Aqua, cairo gets its fonts from quartz, for which the
 corresponding parts of pango seem not to have been written

  - this bug records my journey:
    https://bugs.freedesktop.org/show_bug.cgi?id=43917

  - I expect that I will not complete it without help

  - how, if at all, is this software buildable under MacOS?

 The human one is:
  - prebuilt LibreOffice 3.4.4 OOO340m1 (Build:402) from here:
    http://www.libreoffice.org/download/
    runs on my Mac, so it must be buildable

  - I cannot find the OOO340m1 tag in the git repository that I have
 already invested resources in downloading

1/ no OOO340m1 is _not_ a tag, just a reference to the lasted OOo
version that was 'merged' into lo.

2/ the 3.4 branch was build using a 'split repo' scheme. back then we
had 19 git repos... in august we merged most of them into what is
known as 'core'. see:
http://wiki.documentfoundation.org/Development/One_Git_Conversion for
the gory details...

since then the two repos have diverged... the old set is only used for
maintainling the 3-4 branch... and 3.4.4 occurred after the switch, so
it is not in core.
so, since you already invested in the core repo, you may want to stick
to the 3-5 beta




  - I do not understand which pieces of the source I would need, in
 order to play with Writer, and how big they would be

The writer code is in sw.
but you still to build thw 'whole' there is no method to build 'just writer'


  - please can there be a link on the download page, to an explanation
 of how the various torrents relate to the various repositories?

torrent? you mean for binary download ? if so, I don't think that idea
will be popular. the binary download page is targeted to the public at
large, not develppers.. trying to explain the layout of our source
repo there is going to create more confusion than anything else.


  - better yet, please can the source for this version be put into the
 repository, and I be told how to change to it?

there is a source download
see
http://www.libreoffice.org/download
and click on 'downalod the source and build your own installer'

the problem is that it is a tar.gz snapshot... making patch will be
problematic 9more exactly up-streaming them. and that method of
building is not very often practiced... so help is scarce.

Now regarding your freetype problem:

1/ you want to send your autogen.lastrun (that will tell us which
options/configuration you used to build... even better the output of
your autogen.sh
2/ some info about extra stuff you have, I presume you have the
pre-req XCode3 with 10.4 SDK, but also pay attention about the
possible nefaste interaction with macports and the like...

The good news is that both 3-5 and master build on MacOSX quite
regularly see: http://tinderbox.libreoffice.org/libreoffice-3-5/status.html,
so it is most likely some local configuration quick that surely can be
fixed :-)

Cheers,

Norbert

PS: thanks again for the patch. Few pointers for the next time: 1/
prefix the subject of the email with [PATCH]. that help us spot them
:-)  2/ if you can, try to learn how to do a commit (locally on your
own copy of git repo). that way you can create a nice patch using git
foramt-patch that is easier for us to apply, and already contain you
name and email (as the author) and preferably a nice comment for the
git log.
see : http://wiki.documentfoundation.org/Development/Patch_Handling_Guideline
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] Build problems (and some solutions) in Mac OSX

2011-12-20 Thread Tor Lillqvist
Anyway, I forgot to say: Welcome to hacking on LibreOffice!

We will try to help you in all ways we can. Especially for Mac OS X,
many of the system APIs used by the code are slightly obsolete, to put
it mildly. It would be very much welcome, if you are a Mac expert, if
you could help in modernising that code. I mean mainly the stuff in
vcl/aqua, which uses APIs that were marked as obsolete already in the
10.4 SDK. (The code won't even compile against the 10.7 SDK because of
that; those APIs are now gone completely from headers. Even if
apparently still present in the 10.7 run-time libraries, as code using
those APIs still works...)

As you probably will find out about it yourself anyway, I will tell
you right away: There is another descendant of the OpenOffice.org
codebase called NeoOffice which is developed only for the Mac, and
they do have (at least based on what they say on their website)
modernised the code a lot. But, they license their changes under the
GPL, which means stuff from their code can't be simply picked to
LibreOffice. So please don't look too closely at their code, if at
all. Reading their textual descriptions of their improvements is fine,
though.

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


[Libreoffice] [REVIEW] [Fwd: Fwd: gcc 4.6.2]

2011-12-20 Thread Petr Mladek
Hi Rafael,

fixes for 3.4.5-rc2 need triple review, so I forward this mail to the
mailing list.

I am not sure why your mails are moderated. Are you subscribed to the
mailing list? If not, please try to do so at
http://lists.freedesktop.org/mailman/listinfo/libreoffice

If you are subscribed and still see the problem, please forward Thorsten
the mail about that the mail is moderated? I guess that it mentions a
reason why it is moderated.

Best Regards,
Petr


 Přeposlaná zpráva 
Od: Rafael Cabral cab...@mandriva.com.br
Reply-to: cab...@mandriva.com.br
Komu: pmla...@suse.cz
Předmět: Fwd: gcc 4.6.2
Datum: Mon, 19 Dec 2011 16:34:43 -0200

Hi Petr,

Just to let you know and complementing, it seems all my e-mails fall in
the moderator approval, is the filtering ok, is every kind of email
moderator-checked ?

Thanks
Rafael Cabral


 Original Message  
   Subject: 
gcc 4.6.2
  Date: 
Mon, 19 Dec 2011 10:26:15 -0200
  From: 
Rafael Cabral
cab...@mandriva.com.br
  Reply-To: 
cab...@mandriva.com.br
  Organization: 
Mandriva
To: 
michael.me...@suse.com,
libreoffice@lists.freedesktop.org


Hi,

Attached is a patch for reviewing that I've prepared to solved some LO 
3.4 build issues related to GCC 4.6.2. It was also tested and compiles 
fine with GCC 4.6.1. Mostly issues are stated on 
(https://bugs.freedesktop.org/show_bug.cgi?id=43139)

Btw, I sent it last week to the LibreOffice mail list but the e-mail 
falls in the moderator approval. Anyway consider the patch in this e-mail
as the most updated one.


kind of regards
Rafael Cabral
--- ./framework/source/accelerators/acceleratorcache.cxx.orig	2011-12-15 15:08:41.329168423 -0200
+++ ./framework/source/accelerators/acceleratorcache.cxx	2011-12-15 15:17:59.473190664 -0200
@@ -61,7 +61,7 @@ AcceleratorCache::AcceleratorCache()
 AcceleratorCache::AcceleratorCache(const AcceleratorCache rCopy)
 : ThreadHelpBase(Application::GetSolarMutex())
 {
-m_lCommand2Keys = rCopy.m_lCommand2Keys;
+m_lCommand2Keys = const_cast framework::BaseHashcomphelper::SequenceAsVectorcom::sun::star::awt::KeyEvent   (rCopy.m_lCommand2Keys);
 m_lKey2Commands = rCopy.m_lKey2Commands;
 }
 
@@ -78,7 +78,7 @@ void AcceleratorCache::takeOver(const Ac
 // SAFE - --
 WriteGuard aWriteLock(m_aLock);
 
-m_lCommand2Keys = rCopy.m_lCommand2Keys;
+m_lCommand2Keys = const_cast framework::BaseHashcomphelper::SequenceAsVectorcom::sun::star::awt::KeyEvent   (rCopy.m_lCommand2Keys);
 m_lKey2Commands = rCopy.m_lKey2Commands;
 
 aWriteLock.unlock();
--- ./framework/source/loadenv/loadenv.cxx.orig	2011-12-15 15:08:15.771487938 -0200
+++ ./framework/source/loadenv/loadenv.cxx	2011-12-15 15:19:06.038358483 -0200
@@ -255,7 +255,8 @@ void LoadEnv::initializeLoading(const ::
 // take over all new parameters.
 m_xTargetFrame.clear();
 m_xBaseFrame= xBaseFrame;
-m_lMediaDescriptor  = impl_mergeMediaDescriptorWithMightExistingModelArgs(lMediaDescriptor);
+::comphelper::MediaDescriptor tmp = impl_mergeMediaDescriptorWithMightExistingModelArgs(lMediaDescriptor);
+m_lMediaDescriptor  =  tmp;
 m_sTarget   = sTarget   ;
 m_nSearchFlags  = nSearchFlags  ;
 m_eFeature  = eFeature  ;
--- ./framework/source/uiconfiguration/uiconfigurationmanagerimpl.hxx.orig	2011-12-15 15:08:49.033072112 -0200
+++ ./framework/source/uiconfiguration/uiconfigurationmanagerimpl.hxx	2011-12-15 15:11:07.209344668 -0200
@@ -175,6 +175,15 @@ namespace framework
 sal_Int16 nElementType;
 UIElementDataHashMap  aElementsHashMap;
 com::sun::star::uno::Reference com::sun::star::embed::XStorage  xStorage;
+UIElementType operator=(const UIElementType rRight) {
+bModified = rRight.bModified;
+bLoaded = rRight.bLoaded;
+bDefaultLayer = rRight.bDefaultLayer;
+nElementType = rRight.nElementType;
+aElementsHashMap = rRight.aElementsHashMap;
+xStorage = rRight.xStorage;
+return *this;
+};
 };
 
 typedef ::std::vector UIElementType  UIElementTypesVector;
--- ./framework/inc/uiconfiguration/moduleuiconfigurationmanager.hxx.orig	2011-12-19 11:10:56.0 +
+++ ./framework/inc/uiconfiguration/moduleuiconfigurationmanager.hxx	2011-12-19 11:12:06.0 +
@@ -185,6 +185,15 @@ namespace framework
 sal_Int16   

[Libreoffice] [Bug 37361] LibreOffice 3.5 most annoying bugs

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37361

Petr Mladek pmla...@suse.cz changed:

   What|Removed |Added

 Depends on||43752

--- Comment #59 from Petr Mladek pmla...@suse.cz 2011-12-20 01:25:40 PST ---
(In reply to comment #44)
 Nominate Bug 43752 - VIEWING: Rotated flipped shapes in 3.4 drawings loose
 rotation opened in 3.5.

Yup, we should fix this.

-- 
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] [REVIEW] [Fwd: Fwd: gcc 4.6.2]

2011-12-20 Thread Caolán McNamara
On Tue, 2011-12-20 at 10:13 +0100, Petr Mladek wrote:
 Hi Rafael,
 
 fixes for 3.4.5-rc2 need triple review, so I forward this mail to the
 mailing list.

We've seen this problem recently with our rawhide gcc as well and 3.4.X,
though 3.5.X doesn't seem to have the problem (though whether that
because 3.5.X has the problem fixed, or a new update to gcc materialized
coincidentally) To me it looks as if the compiler generates
operator=(foo) instead of operator=(const foo) and I'd lazily
dismissed it as a bug in a development gcc which would be fixed soon :-)

It'd be great if someone who has the problem in 3.4.X can see if 3.5.X
compiles without error with the same compiler, like now appears to be
the case in the fedora rawhide build system.

Un-enthused by casting const away willy-nilly and/or writing error-prone
manual operator= to get it to compile if we've already got the fix for
it in 3.5.X, but just don't know what that fix was :-)

C.

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


Re: [Libreoffice] [PATCH] Fix fdo#42783 get rid of CPU define/build system variable

2011-12-20 Thread Norbert Thiebaud
On Tue, Dec 20, 2011 at 2:52 AM, Victor Lee konya@gmail.com wrote:

First welcome to LibreOffice...

 This patch substituts $CPU to $CPUNAME in makfiles and has been
 successfully built on my Linux/x86 machine.
  However, there are two
 questions remain:
 1) Statements setting $CPU=U (looks like it should be SPARC64)
 could not be found in set_soenv.in or related files, but $(CPU)==U
 is checked in some makefiles.  I left those lines untouched in this
 patch.
 2) Fixing patch files directly (e.g., jpeg/jpeg-6b.patch) seems not a
 good idea, though I have done it.
 Please give me your advice.


thee are more little problems...

a/
 if ( @WITH_MOZILLA@ eq YES and @BUILD_MOZAB@ ne TRUE and
@SYSTEM_MOZILLA@ ne YES )
 {
print(Checking for prebuilt Mozilla libraries ...);
my $mozbinfile = $SRC_ROOT./moz/zipped/;
-   $mozbinfile .= $OS.$COM.$CPU;
+   $mozbinfile .= $OS.$COM.$CPUNAME;
if ( -e $mozbinfile.inc.zip

These filename have not actually changed. they are hosted in our web
site and we can't ust 'rename' them or we would break 3.4/3.5 and any
version prior to the patch

b/ INPATH adn OUPATH have a name that is today constructed based on
CPU... removing that 1 letter shortcut from the rest of the product
will render these naming convention even more opaque.

c/ most if not all these use of CPU are in dmake module, which are
destined to be converted to gbuild... so I suspect a lot of these
'uses' will disappear during the conversion.

d/
--- a/libpng/libpng-1.5.1.patch
+++ b/libpng/libpng-1.5.1.patch
@@ -21,7 +21,7 @@
 +.INCLUDE :  settings.mk
 +
 +
-+.IF $(GUI)$(CPU)==WNTP
++.IF $(GUI)$(CPUNAME)==WNTPOWERPC || $(GUI)$(CPUNAME)==WNTPOWERPC64
 +CFLAGS=$(CFLAGS) -Od
 +.ENDIF
 +

illustrate that things do not necessarily get 'simplified'.

e/ there are missed occurrences, like in hyphen, lpsolve, redland...
for instance. you can't remove the setup in set_soenv.in until _all_
use case have been removed.
so maybe first patching out the use cases -- starting with the one
that are straight forward and fo not have side effect --  and then...
a final patch that clean-up set_soenv.in once we are sure there is
nothing left.

I'm really sorry I did not see that fdo#42783 earlier, I would have
added these remarks earlier... _before_ you did the work :-/

But the bug was filled by Bjorn, so I'll let him weight in...

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


Re: [Libreoffice] Build problems (and some solutions) in Mac OSX

2011-12-20 Thread Michael Meeks
Hi James,

On Tue, 2011-12-20 at 19:04 +1300, James C wrote:
 I have burned about 1.5 GB of metered network bandwidth, so far,
 following these instructions:

Grief; hopefully the meter doesn't roll too quickly. Of course, once
you have the git repository - you should fetch only deltas from then on
- which should be quick and easy: you have both the 3.5 and master
branches locally etc. So hopefully bandwidth wise things should go
better.

 There is also a human-sized problem, with some instructions on the
 web-site being wrong:
 https://bugs.freedesktop.org/show_bug.cgi?id=43920

Wrt. the wiki - it is quite possibly out of date :-) but the good thing
is that the wiki is human editable - having said that (and I'm not a Mac
hacker), I was lead to believe that the build is reasonably self
contained. Perhaps some Mac-ite can take this bug on.

   - I do not understand which pieces of the source I would need, in
 order to play with Writer, and how big they would be

So - as Norbert says in sw/ lives much of the code; but 'git grep' can
be a good tool to find UI strings which are typically defined in .src
files next to the .cxx file that implements the behaviour you're
interested in.

After processing this thread of replies ;-) it'd be great to know what
your next sticking point is ... getting the first build is quite an
achievement on Mac (it's rather simple on Linux these days ;-)

All the best,

Michael.

-- 
michael.me...@suse.com  , Pseudo Engineer, itinerant idiot

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


Re: [Libreoffice] LoadComponentFromUrl misuse lead to crash

2011-12-20 Thread Caolán McNamara
On Tue, 2011-11-29 at 13:58 +0100, Laurent Godard wrote:
 Hi caolan
 
  Can you attach a demo ?
  
 
 here is a macro showing the problem
 just change the myFile.ods so that it points to a file of your filestem

Checked this locally (finally), and I get no crash. I get a unsupported
url dialog from starbasic.

This still a problem for you? if so can you run it under gdb and get a
backtrace.

C.

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


Re: [Libreoffice] calc: Re: com.sun.star.container.XNameContainer.removeByName() fails v3.5b0+ (linux)

2011-12-20 Thread Tomas Hlavaty
Hi Michael,

Michael Stahl mst...@redhat.com writes:
 you are much more likely to get a reply for this kind of bug on the
 dev list.

sorry I haven't got the feel for the right places yet;-)

 sounds like a bug to me. guess you should file it in bugzilla and set
 the regression keyword.

ok, I'll do that when I'm confident it's a regression.

 in sc you should find some new C++ unit tests and old Java unit tests
 (in qa/complex).

Thank you for the pointer.

 i guess 3.4.4 is this: libreoffice-3.4.4.2
 beta0:  libreoffice-3.5.0.0
 beta1:  libreoffice-3.4.99.1

 yes, really :)

Is that somewhere documented?  Or wouldn't it be better if it was
obvious from the tag names?

Thank you,

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


Re: [Libreoffice] Build problems (and some solutions) in Mac OSX

2011-12-20 Thread Christian Lohmaier
Hi James, *,

On Tue, Dec 20, 2011 at 7:04 AM, James C
james.from.welling...@gmail.com wrote:
 [building on Mac]
 There is also a human-sized problem, with some instructions on the
 web-site being wrong:
 https://bugs.freedesktop.org/show_bug.cgi?id=43920

Your issues show that you got a polluted environment, you have
macports/fink/whatever installed that interferes with the build.

Building against non-Apple-provided libraries and stuff is not
supported. Patches to shield the build-environment against
accidentally building against those are welcome.

To build LO on Mac: Get rid of the macports/fink/... stuff. Create an
environment where only XCode is used. (with the exception of the mac
dependencies when you don't use --disable-mozilla)

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


Re: [Libreoffice] Build problems (and some solutions) in Mac OSX

2011-12-20 Thread Christian Lohmaier
Hi Michael, *,

On Tue, Dec 20, 2011 at 12:32 PM, Michael Meeks michael.me...@suse.com wrote:
 On Tue, 2011-12-20 at 19:04 +1300, James C wrote:
 I have burned about 1.5 GB of metered network bandwidth, so far,
 following these instructions:
 There is also a human-sized problem, with some instructions on the
 web-site being wrong:
 https://bugs.freedesktop.org/show_bug.cgi?id=43920

        Wrt. the wiki - it is quite possibly out of date :-)

Nah, the Mac OSX dependencies/build instructions are up-to-date.
http://wiki.documentfoundation.org/Development/Install_Mac_OS_X_Dependencies

 but the good thing
 is that the wiki is human editable - having said that (and I'm not a Mac
 hacker), I was lead to believe that the build is reasonably self
 contained.

And it still is.

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


Re: [Libreoffice] LoadComponentFromUrl misuse lead to crash

2011-12-20 Thread Laurent Godard
Hi Caolan

 This still a problem for you? if so can you run it under gdb and get a
 backtrace.

cedric  noel submited a patch yesterday
i did not have the time to check, but will do

Thanks a lot, i let you know

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


Re: [Libreoffice] [Libreoffice-qa] calc: Re: com.sun.star.container.XNameContainer.removeByName() fails v3.5b0+ (linux)

2011-12-20 Thread Tomas Hlavaty
Hi Markus,

 Ok, I wrote a simple c++ based test for that and can't reproduce your
 problem.

could you please advise me how to build and run the test case?

I did:

$ cd sc/
$ make

and it built the tests.

It seems to have run something called CHK from the console log, but
where can I find the test results?

How do I run this single test case?

Thank you,

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


Re: [Libreoffice] calc: Re: com.sun.star.container.XNameContainer.removeByName() fails v3.5b0+ (linux)

2011-12-20 Thread Tomas Hlavaty
Hi Bjoern,

Bjoern Michaelsen bjoern.michael...@canonical.com writes:
 Any you could try bibisect: http://sweetshark.livejournal.com/7683.html
 to close in on the bug even more (and thus make it get fixed faster).

bibisect is brilliant but unfortunatelly dosn't cover the range I would
need for this (v3.4.4+).

Regards,

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


Re: [Libreoffice] calc: Re: com.sun.star.container.XNameContainer.removeByName() fails v3.5b0+ (linux)

2011-12-20 Thread Tomas Hlavaty
Hi Michael,

Michael Stahl mst...@redhat.com writes:
 i guess 3.4.4 is this: libreoffice-3.4.4.2

libreoffice-3.4.4.2 tag doesn't exist:-(  Any other ideas?  Are there
any rules how tags are created and named?  And branches?

Thank you,

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


Re: [Libreoffice] calc: Re: com.sun.star.container.XNameContainer.removeByName() fails v3.5b0+ (linux)

2011-12-20 Thread Michael Stahl
On 20/12/11 15:51, Tomas Hlavaty wrote:
 Hi Michael,
 
 Michael Stahl mst...@redhat.com writes:
 i guess 3.4.4 is this: libreoffice-3.4.4.2
 
 libreoffice-3.4.4.2 tag doesn't exist:-(  Any other ideas?  Are there
 any rules how tags are created and named?  And branches?

the 3.4 stuff does not exist in the core repo but in the old bootstrap
based zoo of repos.

http://wiki.documentfoundation.org/Development/Native_Build_From_Bootstrap

On 20/12/11 14:52, Tomas Hlavaty wrote:
 could you please advise me how to build and run the test case?
 
 I did:
 
 $ cd sc/
 $ make
 
 and it built the tests.
 
 It seems to have run something called CHK from the console log, but
 where can I find the test results?

the CUT (or JUT) lines announce that a single unit test is being run.
the output is redirected to a log file, and if the test is successful no
output is displayed on the terminal.
if the test fails, then the log file is output to the terminal.

 How do I run this single test case?

it seems you can't run this one yet because it isn't actually built with
a makefile :)

if it were it would be something like this:

make -r /data/lo/core/workdir/unxlngx6/CppunitTest/sc_cellrangesbase.test

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


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

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Bug 35673 depends on bug 36991, which changed state.

Bug 36991 Summary: crash when duplicating draw page with linked wmf pictures
https://bugs.freedesktop.org/show_bug.cgi?id=36991

   What|Old Value   |New Value

 Resolution||FIXED
 Status|REOPENED|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] calc: Re: com.sun.star.container.XNameContainer.removeByName() fails v3.5b0+ (linux)

2011-12-20 Thread Jan Holesovsky
Hi Tomas,

On 2011-12-20 at 13:23 +0100, Tomas Hlavaty wrote:

  i guess 3.4.4 is this: libreoffice-3.4.4.2
  beta0:  libreoffice-3.5.0.0
  beta1:  libreoffice-3.4.99.1
 
  yes, really :)
 
 Is that somewhere documented?  Or wouldn't it be better if it was
 obvious from the tag names?

Bugs happen - sorry for that :-(  We should probably re-tag the beta0 as
libreoffice-3.4.99.0, and dump libreoffice-3.5.0.0 from the
repositories.

Regards,
Kendy

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


Re: [Libreoffice] [PATCH] Fix for fdo43460 Part XI getLength() to isEmpty()

2011-12-20 Thread Ivan Timofeev

Hi Olivier,

16.12.2011 23:33, Olivier Hallot пишет:

Please find attached a partial fix for Easy Hack FDO43460

Part XI
Module
cui


sorry for the delay, (he-he, now I know how to resolve conflicts :) pushed:
http://cgit.freedesktop.org/libreoffice/core/commit/?id=1375183d465fb17db513dfe16ac522e48573a4c0

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


Re: [Libreoffice] [PUSHED][PATCH] Fix for fdo43460 Part XI getLength() to isEmpty()

2011-12-20 Thread Ivan Timofeev

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


Re: [Libreoffice] [PATCH] Fix fdo#39639 [EasyHack] Fix duplicate longname IDs

2011-12-20 Thread Jan Holesovsky
Hi Victor,

On 2011-12-20 at 17:34 +0900, Victor Lee wrote:

 the attached patch simply removes duplicated and unused IDs in
 BackgroundsDialog.

Thank you for the patch, and welcome to LibreOffice! :-)

Just wanted to ask you how did you find these?  I mean, it seems to me
that HID:WIZARDS_HID_BG_BTN_IMG12 is not used either [or is it?], so
why exactly do you remove only IMG13 and above, and not all the
HID:WIZARDS_HID_BG_BTN_IMG*?

Regarding the patch itself, it would be great if you can use the output
of git format-patch as described here:

http://wiki.documentfoundation.org/Development#Preparing_patches

Thank you a lot,
Kendy

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


Re: [Libreoffice] [PATCH] Fix fdo#42783 get rid of CPU define/build system variable

2011-12-20 Thread Bjoern Michaelsen
On Tue, Dec 20, 2011 at 04:43:41AM -0600, Norbert Thiebaud wrote:
 a/
  if ( @WITH_MOZILLA@ eq YES and @BUILD_MOZAB@ ne TRUE and
 @SYSTEM_MOZILLA@ ne YES )
  {
 print(Checking for prebuilt Mozilla libraries ...);
 my $mozbinfile = $SRC_ROOT./moz/zipped/;
 -   $mozbinfile .= $OS.$COM.$CPU;
 +   $mozbinfile .= $OS.$COM.$CPUNAME;
 if ( -e $mozbinfile.inc.zip
 
 These filename have not actually changed. they are hosted in our web
 site and we can't ust 'rename' them or we would break 3.4/3.5 and any
 version prior to the patch

Ok, so we have to keep CPU for now. Id suggest to maybe rename CPU to
CPU_DEPRECATED, if we are down to the stuff that cant be easily removed, so
that it doesnt creep back in.

 
 b/ INPATH adn OUPATH have a name that is today constructed based on
 CPU... removing that 1 letter shortcut from the rest of the product
 will render these naming convention even more opaque.

IMHO (other might disagree), we should get rid of these opaque names in the
long run anyway. INPATH and OUTPATH should only be build or host.

 e/ there are missed occurrences, like in hyphen, lpsolve, redland...
 for instance. you can't remove the setup in set_soenv.in until _all_
 use case have been removed.
 so maybe first patching out the use cases -- starting with the one
 that are straight forward and fo not have side effect --  and then...
 a final patch that clean-up set_soenv.in once we are sure there is
 nothing left.

Yes, for now lets just EasyHack the ones that are easy to remove incrementally
and keep CPU in set_soenv.in for now.

Best,

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


[Libreoffice] Bugs in Portable LibO Versions

2011-12-20 Thread Rainer Bielefeld

Hi,

I do not know at all how bug fixes for Portable LibO Builds will be 
proceeded. I believe hints in 
http://wiki.documentfoundation.org/BugReport_Details#Version are not 
useful.


What do you think?

Discussion please in libreOffice-QA

Kind regards

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


Re: [Libreoffice] [PATCH] Update French dictionaries

2011-12-20 Thread Olivier R.
Sorry.
Here is the patch:
http://nabble.documentfoundation.org/file/n3601795/0001-Update-French-dictionaries.patch
0001-Update-French-dictionaries.patch 

--
View this message in context: 
http://nabble.documentfoundation.org/PATCH-Update-French-dictionaries-tp3601788p3601795.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


[Libreoffice] [ANNOUNCE] libreoffice-3.4.99.2 tag created (3.5.0-beta2)

2011-12-20 Thread Petr Mladek
Hi,

there have been created the libreoffice-3.4.99.2 tag for 3.5.0-beta2 release.
The corresponding official builds will be available within 3 days or so.

See the attached list of changes against 3.5.0-beta1.

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


Now, if you want to switch your clone to the tag, please do:

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


Thanks again everyone who helped to make this happen.

Best Regards,
Petr

+ core
+ 'Back' is misleading, use 'Revert' instead (fdo#39452) [Lior Kaplan]
+ always load res of LibO UI locale, not system deflocale (fdo#43475) [Andras Timar]
+ always sort category axis when it's a date type. (fdo#43681) [Kohei Yoshida]
+ avoid SIGBUS writing to overcommitted mmaped diskspace (rhbz#767708) [Stephan Bergmann]
+ better fix for over-zealous Zip package consistency. (bnc#653688) [Thorsten Behrens]
+ can't claim its not a DXF just because didn't see SECTION (fdo#43082) [Caolán McNamara]
+ component_getFactory is missing (fdo#43422) [Caolán McNamara]
+ correct default horizontal alignment for complex script. (fdo#32530) [Kohei Yoshida]
+ crash inserting table control (fdo#42694) [Caolán McNamara]
+ do not lose height of tree list box in Navigator (fdo#39528) [Ivan Timofeev]
+ don't evaluate error cells as values during filtering. (fdo#35539) [Kohei Yoshida]
+ don't try to use Inf for axes calculation (fdo#43703) [Markus Mohrhard]
+ fail fast if cups is non-operational. (bnc#722902) [Thorsten Behrens]
+ fix (bnc#653688) [Thorsten Behrens]
+ fix RTF import crasher with \keep in table properties (bnc#228839) [Cédric Bosdonnat]
+ fix RTF import of fields inside tables (fdo#42109) [Miklos Vajna]
+ fix docx hyperlink writing (fdo#35826, bnc#706138) [Luboš Luňák]
+ fix inconsistent compression method for encrypted ZIP packages. (bnc#653688) [Thorsten Behrens]
+ fix selection of background pictures vs text (bnc#676858) [Cédric Bosdonnat]
+ fixed ROWS(), COLUMNS() and SHEETS() don't work with external references (fdo#43700) [Eike Rathke]
+ fixed an RTF import crash when handling formdata in non-FORM fields (bnc#703032) [Cédric Bosdonnat]
+ fixed chart listener registration during ODS import. (fdo#39118) [Kohei Yoshida]
+ fixed present Catalan (Valencian) as selectable UI language (fdo#37349) [Eike Rathke]
+ handle empty members correctly during field popup. (fdo#35981) [Kohei Yoshida]
+ header/Footer: RTL display fixes (fdo#43793) [Cédric Bosdonnat]
+ iFSD_Equal is asymmetrical (rhbz#761009) [Caolán McNamara]
+ if a bracket pair has no left/right bracket, it needs to explicit (fdo#32636) [Luboš Luňák]
+ import m:eqArr (part of (fdo#32636) [Luboš Luňák]
+ impress210: added CTRL-ALT-C as shortcut for inserting comments in calc (i#116847) [Christian Lippka ORACLE]
+ infer number format from formula result if appropriate. (fdo#43467) [Kohei Yoshida]
+ label PRINTING misplaced on paper sheet (fdo#36874) [Winfried Donkers]
+ move SID_INSERT_CURRENT_DATE/TIME to GID_INSERT (fdo#30714) [Miklos Vajna]
+ pass the correct ScTabViewShell instance to the input box. (fdo#43614) [Kohei Yoshida]
+ preserving dbf import/export charset. (fdo#33602) [Muthu Subramanian]
+ rTF export: handle url fields without a field result (fdo#37498) [Miklos Vajna]
+ rTF import: default scale for images is 100% not 0% (bnc#228839, bnc#77738) [Cédric Bosdonnat]
+ rTL PopupMenu position fixes (fdo#43790) [Cédric Bosdonnat]
+ resolved Advanced FILTER incompatible with 3.4.4 documents (fdo#43831) [Eike Rathke]
+ resolves crash on saving a file (fdo#43725) [Eike Rathke]
+ revert Fix  (bnc#653688) [Thorsten Behrens]
+ row Height is unnecessarily large. (fdo#33747) [Muthu Subramanian]
+ set correct auto scaling for stacked data series. (fdo#43681) [Kohei Yoshida]
+ set initial focus to Number of copies (fdo#34641) [Ivan Timofeev]
+ show/hide anchor when the anchoring status changes. (fdo#38545) [Kohei Yoshida]
+ sw: Fix cursor accessibility API (fdo#43390) [Vincent Povirk]
+ sw: avoid creating cursor with non-text node text range (fdo#40195) [Noel Power]
+ teach old-style method about the new form of screen numbering (fdo#43458) [Michael Meeks]
+ tweak workarounds for (fdo#43707, fdo#42865) [Michael Stahl]
+ use correct address convention during search and replace. (fdo#39917) [Kohei Yoshida]
+ use different default key bindings for Hungarian locale (fdo#30714) [Miklos Vajna]
+ common
+ version 3.4.99.2, tag libreoffice-3.4.99.2 (3.5.0-beta2) [Petr Mladek]
+ core
+ 'Back' is misleading, use 'Revert' instead (fdo#39452) [Lior Kaplan]
+ -Wl,-dead_strip_dylibs is not supported with XCode 2.5, align with master [Christian Lohmaier]
+ -lz was sucked 

[Libreoffice] Hi ! We are new on libo! 2/2

2011-12-20 Thread Julien Levesy
Hi, to follow my friend Martius, i'm introducing myself.

I'm Julien Levesy, french student in CS.
As a school project, I'll will help Martin in reworking file picker, and
implementing new features he has presented in his previous mail.
All this work is mentored by Cedric Bosdonnat.

My nickname in IRC is Jlevesy.

All the best !

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


Re: [Libreoffice] [Libreoffice-qa] Bugs in Portable LibO Versions

2011-12-20 Thread Pedro Lino
 I do not know at all how bug fixes for Portable LibO Builds will be
 proceeded. I believe hints in
 http://wiki.documentfoundation.org/BugReport_Details#Version are not
 useful.

 What do you think?

Are there any specific Portable LO errors?

I assume that the Portable version works 100% like the installed.
If there are any errors they should be detected in the installed version...

In any case there is specific support at portableapps.com
http://portableapps.com/support/libreoffice_portable
http://portableapps.com/forums/support/libreoffice_portable

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


Re: [Libreoffice] calc: Re: com.sun.star.container.XNameContainer.removeByName() fails v3.5b0+ (linux)

2011-12-20 Thread Markus Mohrhard
Hello Tomas,

2011/12/20 Michael Stahl mst...@redhat.com:



 On 20/12/11 14:52, Tomas Hlavaty wrote:
 could you please advise me how to build and run the test case?

 I did:

 $ cd sc/
 $ make

 and it built the tests.

 It seems to have run something called CHK from the console log, but
 where can I find the test results?

 the CUT (or JUT) lines announce that a single unit test is being run.
 the output is redirected to a log file, and if the test is successful no
 output is displayed on the terminal.
 if the test fails, then the log file is output to the terminal.

 How do I run this single test case?

 it seems you can't run this one yet because it isn't actually built with
 a makefile :)

Yes and that was my intention. I made a assumption in the test that
might not be true for every build. I need someone with an non en-US
build and non en-US locale to check that forcing en-US in the test
setup works for sheet names too.

You can use the attached patch and run a normal make in sc. The test
should then be executed as sc_spreadsheetobj. You can find the logfile
for the test at
workdir/platform/CppunitTest/sc_spreadsheetobj.test.log

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


Re: [Libreoffice] [PATCH] Fix fdo#42783 get rid of CPU define/build system variable

2011-12-20 Thread Norbert Thiebaud
On Tue, Dec 20, 2011 at 10:45 AM, Bjoern Michaelsen
bjoern.michael...@canonical.com wrote:

 IMHO (other might disagree), we should get rid of these opaque names in the
 long run anyway. INPATH and OUTPATH should only be build or host.


Sure, but then stuff like rm -fr */$INPATH may end-up having
unexpected consequences...

once everything is on workdir (and even in solver) then sure no
problem to use build/host... but as long as INPATH is in individual
module that maybe a bit dangerous to change with such common terms.

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


[Libreoffice] binfilter dependencies

2011-12-20 Thread Peter Foley

Matus,

I noticed that you added basic to tail_build in feature/gbuild_extensions.
Be warned that when feature/gbuild_extensions gets merged to master 
binfilter/prj/build.lst will have to get changed from depending on basic 
to depending on tail_build simultaneously.

Thanks,

Peter


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


[Libreoffice] consistent SCCOL use?

2011-12-20 Thread Kevin Hunter

Hullo SC Devs,

A quick question to any more-knowledgeable-than-me person on whether 
there's a reason these spots in the calc code base are hard-coded to 
sal_Int16, rather than using SCCOL?


Thanks,

Kevin
diff --git a/sc/inc/pivot.hxx b/sc/inc/pivot.hxx
index 705f794..b6bded9 100644
--- a/sc/inc/pivot.hxx
+++ b/sc/inc/pivot.hxx
@@ -189,12 +189,12 @@ typedef ::std::vector ScPivotField  ScPivotFieldVector;
 
 struct ScDPFuncData
 {
-short   mnCol;
+SCCOL   mnCol;
 sal_uInt16  mnFuncMask;
 ::com::sun::star::sheet::DataPilotFieldReference maFieldRef;
 
-explicitScDPFuncData( short nNewCol, sal_uInt16 nNewFuncMask );
-explicitScDPFuncData( short nNewCol, sal_uInt16 nNewFuncMask,
+explicitScDPFuncData( SCCOL nNewCol, sal_uInt16 nNewFuncMask );
+explicitScDPFuncData( SCCOL nNewCol, sal_uInt16 nNewFuncMask,
 const ::com::sun::star::sheet::DataPilotFieldReference rFieldRef );
 };
 
diff --git a/sc/source/filter/excel/impop.cxx b/sc/source/filter/excel/impop.cxx
index 533bbb9..cffbaf0 100644
--- a/sc/source/filter/excel/impop.cxx
+++ b/sc/source/filter/excel/impop.cxx
@@ -465,7 +465,7 @@ void ImportExcel:: WinProtection( void )
 
 void ImportExcel::Columndefault( void )
 {// Default Cell Attributes
-sal_uInt16  nColMic, nColMac;
+SCCOL  nColMic, nColMac;
 sal_uInt8   nOpt0;
 
 aIn  nColMic  nColMac;
@@ -651,7 +651,7 @@ void ImportExcel::Builtinfmtcnt( void )
 
 void ImportExcel::Colinfo( void )
 {// Column Formatting Information
-sal_uInt16  nColFirst, nColLast, nColWidth, nXF;
+SCCOL  nColFirst, nColLast, nColWidth, nXF;
 sal_uInt16  nOpt;
 
 aIn  nColFirst  nColLast  nColWidth  nXF  nOpt;
diff --git a/sc/source/ui/dbgui/pfiltdlg.cxx b/sc/source/ui/dbgui/pfiltdlg.cxx
index 1b65585..5437ef6 100644
--- a/sc/source/ui/dbgui/pfiltdlg.cxx
+++ b/sc/source/ui/dbgui/pfiltdlg.cxx
@@ -103,7 +103,7 @@ ScPivotFilterDlg::ScPivotFilterDlg( Window* pParent,
 nSrcTab ( nSourceTab ), // ist nicht im QueryParam
 nFieldCount ( 0 )
 {
-for (sal_uInt16 i=0; i=MAXCOL; i++)
+for (SCCOL i=0; i=MAXCOL; i++)
 pEntryLists[i] = NULL;
 
 Init( rArgSet );
@@ -114,7 +114,7 @@ ScPivotFilterDlg::ScPivotFilterDlg( Window* pParent,
 
 ScPivotFilterDlg::~ScPivotFilterDlg()
 {
-for (sal_uInt16 i=0; i=MAXCOL; i++)
+for (SCCOL i=0; i=MAXCOL; i++)
 delete pEntryLists[i];
 
 if ( pOutItem )
@@ -567,7 +567,7 @@ IMPL_LINK( ScPivotFilterDlg, CheckBoxHdl, CheckBox*, pBox )
 
 if ( pBox == aBtnCase )// Wertlisten
 {
-for (sal_uInt16 i=0; i=MAXCOL; i++)
+for (SCCOL i=0; i=MAXCOL; i++)
 DELETEZ( pEntryLists[i] );
 
 String aCurVal1 = aEdVal1.GetText();
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [Libreoffice] consistent SCCOL use?

2011-12-20 Thread Markus Mohrhard
Hello Kevin,


 A quick question to any more-knowledgeable-than-me person on whether there's
 a reason these spots in the calc code base are hard-coded to sal_Int16,

It is sal_uInt16 which is not the same as SCCOL.

 rather than using SCCOL?


There are 3 different cases here:

- pivot.hxx may use SCCOL, but I think that the used short can only
have values between 0 and 7 there ( Kohei should know it much better )

- source/filter/excel should always use the type already used there
otherwise the binary import might make problems

- pfiltdlg.cxx uses sal_uInt16 because it is an unsigned datatype and
SCCOL is signed, we could use SCCOL there too


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


[Libreoffice-qa] Mysql Native Connector can not been installed in 3.5

2011-12-20 Thread Fernand Vanrie

Can anyone confirm this posible stopper:

I use LOdev 3.5.0
Native Connector 1.0.1 or 1.0.0 (Windows) can not been installed

When already installed (and workin) in 3.4 the extension is disabled 
under 3.5 and can not been activated !


thanks

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


[Libreoffice-qa] Mysql Native Connector can not been installed in 3.5

2011-12-20 Thread Fernand Vanrie

Can anyone confirm this posible stopper:

I use LOdev 3.5.0
Native MySQL Connector 1.0.1 or 1.0.0 (Windows) can not been installed

When already installed (and working) in LO3.4 , the extension is 
disabled under 3.5 and can not been activated !


thanks

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

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43960

--- Comment #2 from dkamp...@xs4all.nl dkamp...@xs4all.nl 2011-12-20 00:15:10 
PST ---
On Tue, 2011-12-20 at 07:14 +, bugzilla-dae...@freedesktop.org
wrote:
 https://bugs.freedesktop.org/show_bug.cgi?id=43960
 
 Rainer Bielefeld libreoff...@bielefeldundbuss.de changed:
 
What|Removed |Added
 
  Status|UNCONFIRMED |NEEDINFO
Severity|critical|major
  CC||LibreOffice@bielefeldundbus
||s.de
  Ever Confirmed|0   |1
 Summary|mutilation of text LO - OO |VIEWING: mutilation of text
||LO - OO
 
 --- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
 2011-12-19 23:14:10 PST ---
 @dkamp...@xs4all.nl
 Please:
 - Attach a sample document 
 - Attach screenshots with comments (complaring view in LibO and OOo) 
   Best way is to insert your screenshots
   into a DRAW document and to add comments that explain what you want to show
 - Contribute a step by step instruction containing every key press and every 
   mouse click how to reproduce your problem (and if possible how to created a 
   sample document from the scratch)
 - add information 
   -- Why you believe that it's a LibO bug, not an OOo bug
   -- concerning your PC (monitor, video card, ...)
   -- concerning your OS (Language)
   -- concerning your LibO localization (UI language)
   –- Libo settings that might be related to your problems 
 (video hardware acceleration ...)
   -- how you launch LibO and how you opened the sample document
   –- If you can contribute an OOo Issue that might be useful
   -- everything else crossing your mind after you read linked texts
 

Trying to reproduce the observed mutilation, today I was not able to
produce it again.

Helas, I did not keep a copy of the mutilated .odt-file (produced with
OO under Debian). But, however, I made a .pdf-file of the mutilated
file. 

Attached I send you the original document produced in LO, and
the .pdf-file produced from the OO-file under Debian. In this .pdf-file
you can see the problem at the end of page 10. 

Feeble, but evident.

Wkr,

Dick Kampman
dkamp...@xs4all.nl

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

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43960

--- Comment #3 from dkamp...@xs4all.nl dkamp...@xs4all.nl 2011-12-20 00:15:11 
PST ---
Created attachment 54591
  -- https://bugs.freedesktop.org/attachment.cgi?id=54591
CABR-37503.pdf

-- 
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 42133] loss of PyUNO exported function, loadComponentFromURL

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42133

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||NOTABUG

--- Comment #12 from Caolán McNamara caol...@redhat.com 2011-12-20 01:09:38 
PST ---
you regularly run LO with an open localhost connection?  Does that imply
you've a few connection scripts you use for testing (or other)?

Not at all, I ran the LibreOffice soffice instance from my dev build solver
dir, but I didn't modify the python script, which meant that the import uno
in it searched in my system python dirs for uno, and in fedora we package
pyuno into the standard python search path, so because I had 3.4.4 pyuno
installed, that's the one that got pulled in. i.e. 3.4.X pyuno used to talk to
the dev 3.5 instance. We configure our system pyuno to do the same thing as I
added to this script, i.e. find the libs it needs in the system installed
LibreOffice 3.4.X

Pointed at the correct testing pyuno then I get your problem, which is a fairly
standard problem of getting it to find the right libraries. Hard to give a
better error message I think. Though if anyone's got any good ideas :-)

I don't seem to have a closed-can't_fix option in this bugzilla, but that's
what I'm aiming for

-- 
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 43972] New: EDITING: Cross References Break when Moving Sections when Change Tracking is On

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43972

 Bug #: 43972
   Summary: EDITING: Cross References Break when Moving Sections
when Change Tracking is On
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: gwh...@uk.ibm.com


Created attachment 54593
  -- https://bugs.freedesktop.org/attachment.cgi?id=54593
The simple example document attached can be used to reproduce the problem. 
Switch the order of chapter 1 and 2 and with no change tracking things work as
expected, when change tracking is turned on then some references break.

Problem description: 
Moving sections around an ODF doc using the navigator breaks cross-references
when change tracking is turned on.  A work-around seems to exist where moving
sections around an ODF doc using the navigator when change tracking is off
seems to work.

Steps to reproduce:
1. Turn on change tracking
2. Write an ODF doc containing chapters and cross-references to these chapters
within the text.
3. Use the navigator to demote one of the chapters or generally move a chapter
around within a doc.

Current behavior:
References to the moved chapter are now broken.

Expected behavior:
References to the moved chapter should be maintained (as is the case if change
tracking is off).

Platform (if different from the browser): 

Browser: Mozilla/5.0 (X11; Linux i686) AppleWebKit/535.7 (KHTML, like Gecko)
Chrome/16.0.912.63 Safari/535.7

I'm running Libre Office 3.4.4 downloaded from the Libre Office site on top of
Fedora 14, 32 bit kernel 2.6.35.14-106.fc14.i686.PAE.

-- 
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 43972] EDITING: Cross References Break when Moving Sections when Change Tracking is On

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43972

Graham White gwh...@uk.ibm.com changed:

   What|Removed |Added

   Platform|Other   |x86 (IA32)
 OS/Version|All |Linux (All)

-- 
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 43139] [GCC 4.6.2] Compile Error on framework/source/accelerators/acceleratorcache.cxx

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43139

Caolán McNamara caol...@redhat.com changed:

   What|Removed |Added

 CC||caol...@redhat.com

--- Comment #14 from Caolán McNamara caol...@redhat.com 2011-12-20 01:24:09 
PST ---
does anyone know what the *root* cause is, casting away const to get operator=
working doesn't look right. We have this problem with 3.4.4 as well, but 3.5.0
seems to build fine. Looks like compiler generated an operator=(foo) instead
of operator=(const foo)

-- 
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 37361] LibreOffice 3.5 most annoying bugs

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37361

Petr Mladek pmla...@suse.cz changed:

   What|Removed |Added

 Depends on||43752

--- Comment #59 from Petr Mladek pmla...@suse.cz 2011-12-20 01:25:40 PST ---
(In reply to comment #44)
 Nominate Bug 43752 - VIEWING: Rotated flipped shapes in 3.4 drawings loose
 rotation opened in 3.5.

Yup, we should fix this.

-- 
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.
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 43458] LibreOffice does not start with a second monitor connected

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43458

--- Comment #21 from Cor Nouws c...@nouenoff.nl 2011-12-20 01:43:20 PST ---
Created attachment 54594
  -- https://bugs.freedesktop.org/attachment.cgi?id=54594
gdb output

so attached the output with gdb running. Hope it is helpful.

-- 
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 39370] RTL / LTR and right/left alignment buttons' icons should not be reversed in RTL interface

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39370

--- Comment #5 from Michael Meeks michael.me...@novell.com 2011-12-20 
02:12:20 PST ---
So - the bug is highly unclear to me; what is the issue with the icons ? that
the arrow no longer points in the direction that the text should go ?
Is this a regression ? if so, from when.
Can you reproduce this vs. 3.5 - I can't seem to get those direction buttons to
show up at all with: SAL_RTL_ENABLE=1 and an English locale.

-- 
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 39370] RTL / LTR and right/left alignment buttons' icons should not be reversed in RTL interface

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39370

--- Comment #6 from Lior Kaplan kaplanl...@gmail.com 2011-12-20 02:54:01 PST 
---
The paragraph directionality icons appear only if you turn on CTL support,
which most English users don't do.

On RTL UI, the button order is usually reversed, so the the first icon would
appear on the right side instead of the left side as in LTR UI.

This causes a problem in two sets of buttons:
1. The directionality buttons, which are now order counter intuitive to the
icon location. You push the left icon to change the directionality to RTL.

2. The alignment icons, now have align right on the left side of the align
center, and align left on the right side of align center. This is again
counter intuitive.

This isn't a regression (same behavior for 3.4.4. and 3.5.0 beta1).

While writing this comment I noticed that this not the case for the indent
increase/decrease buttons. So I'm guessing that either someone solved that
problem before, or that we have an over try to solve the problem for the
directionality, alignment buttons in the past which now causes different
problems. An example to such solution could have been switching the buttons
order or changing their icons/functionality for the RTL UI.

-- 
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 43139] [GCC 4.6.2] Compile Error on framework/source/accelerators/acceleratorcache.cxx

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43139

--- Comment #15 from Caolán McNamara caol...@redhat.com 2011-12-20 04:02:12 
PST ---
problem seems to come from boost::unordered_map's operator=

-- 
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 43920] Libre Office MacOS needs Zlib and Zip perl modules

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43920

Christian Lohmaier lohma...@gmx.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||WORKSFORME

--- Comment #1 from Christian Lohmaier lohma...@gmx.de 2011-12-20 04:29:32 
PST ---
No, this definitely is not needed. When you get XCode as described, you are
ready to build on Mac (with --disable-mozilla) only when on 10.4 you need newer
version of make an unzip (as described on the page).

I suspect you got macports/fink/darwinports or whatever installed that mess up
your build-environment.

on 10.4 system:
$ locate Zip.pm
/System/Library/Perl/Extras/5.8.6/Archive/Zip.pm
$ locate
Zlib.pm/System/Library/Perl/Extras/5.8.6/IO/Zlib.pm/System/Library/Perl/Extras/5.8.6/darwin-thread-multi-2level/Compress/Zlib.pm

Also LO is being  build on 10.5 and later systems without non-Apple-provided
stuff (except for building mozilla, as also described on the dependencies
page).

Thus worksforme.

Feel free to reopen if you can provide more details, but probably its
faster/easier to join irc-channels or use the mailing-list to get you setup
with a proper buildsystem.

-- 
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 43976] New: improve look of ugly fallback image image ...

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43976

 Bug #: 43976
   Summary: improve look of ugly fallback  image image ...
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.0 Beta0
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: michael.me...@novell.com


The fallback image for when a linked image is missing is rather ugly; it'd be
great to improve that.

-- 
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 43917] pango requires that freetype build before cairo

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43917

Christian Lohmaier lohma...@gmx.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||WORKSFORME

--- Comment #4 from Christian Lohmaier lohma...@gmx.de 2011-12-20 04:34:30 
PST ---
 -I/opt/local/include/freetype2 

This is not standard Mac OSX / XCode stuff. Thus you got a polluted
environment with stuff from macports/fink/darwinports/whatever.

Building is only supported with plain Mac OSX  XCode (with the exception of
the mozilla dependencies and make and unzip for 10.4/XCode 2.5 based systems).

Building against macports/find/whatever is explicitly not supported. However
patches are welcome to shield the environment against accidentally using those
components.

But an issue against this is pointless (unless you want to provide patches
yourself). Thus worksfrome. Feel free to send appropriate patches to the
mailinglist/join irc to discuss the topic in greater detail.

-- 
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 42782] improve cross-cultural appeal of image fallback

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42782

Michael Meeks michael.me...@novell.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||WONTFIX

--- Comment #12 from Michael Meeks michael.me...@novell.com 2011-12-20 
04:35:10 PST ---
Closed WONTFIX; it's successor lives on as bug#43976

-- 
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 43976] improve look of ugly fallback image image ...

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43976

Michael Meeks michael.me...@novell.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 AssignedTo|libreoffice-b...@lists.free |heinzless...@gmail.com
   |desktop.org |
 Ever Confirmed|0   |1

--- Comment #1 from Michael Meeks michael.me...@novell.com 2011-12-20 
04:35:37 PST ---
All yours Astron.

-- 
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 43139] [GCC 4.6.2] Compile Error on framework/source/accelerators/acceleratorcache.cxx

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43139

--- Comment #16 from Caolán McNamara caol...@redhat.com 2011-12-20 05:04:49 
PST ---
Is this with system boost ?, if so what version of boost is it ? This may be
triggered by BOOST_COPYABLE_AND_MOVABLE(TYPE)

-- 
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 43139] [GCC 4.6.2] Compile Error on framework/source/accelerators/acceleratorcache.cxx

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43139

--- Comment #17 from Rafael da Veiga Cabral cab...@mandriva.com 2011-12-20 
05:21:15 UTC ---
Yes it is from system, version 1.48.0. 

Some links I'm looking at could help:


http://www.boost.org/doc/libs/1_48_0/doc/html/move/how_the_library_works.html

http://www.boost.org/doc/libs/1_48_0/doc/html/unordered/changes.html#unordered.changes.boost_1_48_0___major_update

http://www.boost.org/doc/libs/1_48_0/doc/html/unordered/compliance.html

-- 
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 43139] [GCC 4.6.2] Compile Error on framework/source/accelerators/acceleratorcache.cxx

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43139

--- Comment #18 from Rafael da Veiga Cabral cab...@mandriva.com 2011-12-20 
05:48:17 PST ---
Just I guess from /usr/include/boost/move/move.hpp: 

 387#define BOOST_COPYABLE_AND_MOVABLE(TYPE)\
 388   public:\
 389   TYPE operator=(TYPE t)\
 390   {  this-operator=(static_castconst ::boost::rvTYPE
(const_castconst TYPE (t))); return *this;}\
 391   public:\
 392   operator ::boost::rvTYPE() \
 393   {  return *static_cast ::boost::rvTYPE* (this);  }\
 394   operator const ::boost::rvTYPE() const \
 395   {  return *static_castconst ::boost::rvTYPE* (this);  }\
 396   private:\


Line 390, the const_cast seems also to be casting away but the compiler gets
lost and guessing kick would be the static_cast operator in left part of the
expression, as I still researching.

Tried to diff from 1.47.0 but bost/move/move.hpp seems to be new.

-- 
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 39370] RTL / LTR and right/left alignment buttons' icons should not be reversed in RTL interface

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39370

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

   What|Removed |Added

  Status Whiteboard|CONFIRMED  RTL  |
 CC||LibreOffice@bielefeldundbus
   ||s.de
   Keywords||NEEDINFO

--- Comment #7 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-12-20 06:20:33 PST ---
http://wiki.documentfoundation.org/BugReport_Details#Whiteboard!

I see the effect, but why is it a bug?

If I do not think wrong  everything works in the correct and intended way,
buttons change interface or indent as as they show.

But may be some improvement is  possible because because buttons are not
intuitive?

A fact: the arrowkey block on my PC looks
 ↑ 
← →
 ↓

not  
 ↓
→ ←
 ↑ 

1. Situation in LTR GUI
The current way seems intuitive to me, all similar functions to where will
something be moved (indents paragraph and numbering, ...) should work like
shown with arrow key example. That's the default for these functions in LibO,
it's ok for me.

Situation for LTR - RTL paragraph formatting is different, for me the
emphasis is to where it starts  

   eft to right  -  ight to left

and from this point the way how the buttons are arranged (as in text line
before) intuitive.

Al that is in accordance with Comment 6

2. Situation in RTL GUI
Switching from LTR to RTL GUI flips toolbars consequently, and for people
consenting to my thoughts in 1. (at least: me) that  will mean that indents and 
Text direction icons become unintuitive.

Al that is in accordance with Comment 6

IMHO no regression, All LibO and OOo versions I checked work the same way.

@all (NEEDINFO):
Before we modify something: Are there any Help texts, Manuals, RFC, Style
guides objecting the request to take out text direction and indent icons from
the GUI flipping?


@Lior
I can not confirm you observation that order for indent will not flip 
with Parallel Dev-Installation of  LibreOffice 3.5.0 Beta1 - WIN7 Home Premium
(64bit) English -- Hebrew UI [Build-ID:
7362ca8-b5a8e65-af86909-d471f98-61464c4] Windows_Release_Configuration 
11-Dec-2011 06:51 when switching GUI English - Hebrew and back. Indent icons
still are within flip. Regarding your secreenshot: did you also check LTR GUI
whether indent icons really do not flip? I started my observations with a test
LibO version were order of paragraph indents was opposite to LibO default (with
new User Profile everything was ok), may be your icons also are not default
order?

-- 
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 43978] New: FILESAVE: save in LibO 3.5.0 Beta1 and open in LibO 3.4.4

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43978

 Bug #: 43978
   Summary: FILESAVE: save in LibO 3.5.0 Beta1 and open in LibO
3.4.4
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.5.0 Beta1
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: raulpach...@ig.com.br


Created attachment 54596
  -- https://bugs.freedesktop.org/attachment.cgi?id=54596
In 3.5.0 Beta 1 non problem, bat open in 3.4.4 the margin left broken

Problem description: 

Steps to reproduce:
1. 
2. 
3. 

Current behavior:Save in LibO 3.5.0 beta1

Expected behavior:when open in LibO3.4.4 no have problem, bust the margins left
back broken

Platform (if different from the browser): Windows XP

Browser: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET
CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

-- 
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 43458] LibreOffice does not start with a second monitor connected

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43458

--- Comment #22 from Michael Meeks michael.me...@novell.com 2011-12-20 
06:26:14 PST ---
Easy to fix the crasher you point to, -but- since I can't reproduce it - and it
is only a symptom not the real bug - life is a bit tough ...
Can you give more information on your hardware ? what is this monitor you
connect - that looks like a TV1 as well - what is your graphics card (lspci
might tell you) etc.

-- 
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 43458] LibreOffice does not start with a second monitor connected

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43458

--- Comment #23 from Michael Meeks michael.me...@novell.com 2011-12-20 
06:40:31 UTC ---
Really frustrating; I simply can't reproduce this the most exotic combinations
of xrandr settings simply don't do it for me. What I really need is ssh access
to your machine  some interactive help debugging - is that going to be
possible ?

-- 
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 43979] New: Can't Save Spreadsheet with Chart

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43979

 Bug #: 43979
   Summary: Can't Save Spreadsheet with Chart
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: Other
OS/Version: Windows (All)
Status: NEW
  Severity: normal
  Priority: medium
 Component: Chart
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: delo...@googlemail.com


Created attachment 54597
  -- https://bugs.freedesktop.org/attachment.cgi?id=54597
Calc document with Makro

I created the document (see attachment) with LO3.3.4 on Windows7,
where all went fine.
But with LO3.4.4 portable I can't save the document,
after I plaid around with one of the combo-boxes on the last sheet.
(That is what they are maid for)
There is a macro, which formates the Chart every time the data is changed.
In LO 3.5.0.Beta1 the problem seems to bee fixed.

-- 
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 43980] New: Multimediakeys are blocked

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43980

 Bug #: 43980
   Summary: Multimediakeys are blocked
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.3.4 release
  Platform: All
OS/Version: All
Status: NEW
  Severity: major
  Priority: medium
 Component: BASIC
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: bugfin...@hmamail.com


If a LibreOffice window is activated, Multimediakeys of most
Multimediakeyboards like Play, Stop, Next usw. don't work.

-- 
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 35673] LibreOffice 3.4 most annoying bugs

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673

Bug 35673 depends on bug 36991, which changed state.

Bug 36991 Summary: crash when duplicating draw page with linked wmf pictures
https://bugs.freedesktop.org/show_bug.cgi?id=36991

   What|Old Value   |New Value

 Resolution||FIXED
 Status|REOPENED|RESOLVED

-- 
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 43979] Can't Save Spreadsheet with Chart

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43979

--- Comment #1 from Frieder delo...@googlemail.com 2011-12-20 07:20:16 PST ---
I can only reproduce the bug, if the macro is updating the cell-range of the
chart as well.
What,by the way , doesn't function correctly in LO3.4.4 

Dim CellRangeAddress(1) As New com.sun.star.table.CellRangeAddress
Dim n%
 oDiagrammSheet=ThisComponent.Sheets.getByName(Diagramme) 'Tabelle
Diagramme als Variable definieren
 'Nummer der Tabelle Diagramm_Daten ermitteln
  For n = 0 To ThisComponent.Sheets.getCount - 1 'anzahl der Tabellenblätter
If ThisComponent.Sheets(n).Name = sDataSheet Then
  Exit For
Endif
  Next
  ' n ist jetzt der index der Tabelle Diagramm_Daten (Z.B.: 0 ist die erste
Position)
'Datenbereich für das Diagramm adressieren 
  CellRangeAddress(0).Sheet = n
  CellRangeAddress(0).StartColumn = 13
  CellRangeAddress(0).StartRow = 3
  CellRangeAddress(0).EndColumn = 15
  CellRangeAddress(0).EndRow = 43



oChart1 =oDiagrammSheet.getCharts().getByIndex(0) 'Das Diagramm als object
festlegen
oChart1.HasColumnHeaders  = True
oChart1.HasRowHeaders  = True
'oChart1.EmbeddedObject.Diagram.DiagramType = com.sun.star.chart.XYDiagram
 'Datenbereich neu zuweisen
oChart1.setRanges(Array(CellRangeAddress(0)))

-- 
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 43460] Replace rtl::OUString getLength()==0 with isEmpty() etc.

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43460

--- Comment #16 from Olivier Hallot olivier.hal...@documentfoundation.org 
2011-12-20 08:00:34 UTC ---
Module cui

http://cgit.freedesktop.org/libreoffice/core/commit/?id=1375183d465fb17db513dfe16ac522e48573a4c0

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

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43960

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

   What|Removed |Added

   Severity|major   |normal

--- Comment #4 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-12-20 08:13:52 PST ---
I did a quick comparison of the document in Reproducible] with Parallel
Dev-Installation of  LibreOffice 3.5.0 Beta1 - WIN7 Home Premium (64bit)
German UI [Build-ID: 7362ca8-b5a8e65-af86909-d471f98-61464c4]
Windows_Release_Configuration  11-Dec-2011 06:51 and OOo 3.1.1 
and saw at least 1 smaller difference:

LibO end of page 1: ... zijner ontlasting aangevoerd, dat de Joodse
Raad hem voor ... on next page
OOo end of page  1: ... zijner ontlasting aangevoerd, dat de Joodse
Raad hem voor ... on next page


No problems with also with other page breaks including page 10-11

I see problem in PDF, but that document is suspect, page breaks are totally
different from Sourde document.

@dkampman
It really would ease things if you could contribute concrete information (like
page 7 last sentence x yyy zz.! was cropped ( zz missing)
without showing rest of sentence on next page) instead of riddles like Part
of A(?) sentence at the bottom of ONE(?) page.  ;-)

I really wonder why your PDF has page breaks so different to source document.
Did you compare all relevant settings and formattings? Font installed on both
PC?

But if you are not able to reproduce the problem, that also only might have
been a hickup of that second PC?

-- 
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 40415] FILEOPEN: incorrect error message Too many Rows

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=40415

--- Comment #3 from Kevin Hunter hunt...@earlham.edu 2011-12-20 08:30:59 PST 
---
Chalking it up to my learning curve, it turns out this is as simple as a
#define in sc/inc/address.hxx and a few handling cleanups.  The current
supported column size is (apparently) 1024.

As I'm now running a test build with a good bit more than that, for the time
being (perhaps until ixion is in major use), it would seem that 1024 is good
decision for performance reasons.  (Lots of seemingly easy operations take
for...ev...er.)

Thus, I don't know where I got it in my head that LO supports X number of
columns (maybe I confused it with rows?), but it would seem it does not.

However, this bug report is still valid (and I don't yet know how to fix it):
the /message/ needs to be updated to jive with actual problem.

-- 
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 42604] Crash on moving tabs

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42604

Gaba ignaciog...@gmail.com changed:

   What|Removed |Added

   Priority|medium  |high
Version|LibO 3.4.3 release  |LibO 3.4.4 release

--- Comment #12 from Gaba ignaciog...@gmail.com 2011-12-20 10:15:30 PST ---
I can reproduce this easily in LibreOffice Calc. I just open a fresh new
document and try to move any tab anywhere. Immediate crash.

LibreOffice 3.4.4 
OOO340m1 (Build:402)

Ubuntu 11.10 + KDE 4.7.4

-- 
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 43961] No Auto Spell Check on First Run

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43961

--- Comment #3 from Scott M. Sanders scottmitchellsand...@gmail.com 
2011-12-20 10:17:41 PST ---
Anyway it is worth noting that 3.4 including 3.4.5rc1 are fine while 3.5 betas
are not and are somehow plagued with spell-check bugs.

First run means the first time the app in question is started.

The document language is English which is default and presumed.

Um, I expect red underlines for auto spell-check for misspellings, as that is
its singular function, and I get none.

My OS is Windows XP Pro SP3.

It happens with any document in existence or newly created, so attaching a
random doc would be pointless.

I open 3.4.5, click recent, and open a recent file.

Hope that helps.

-- 
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 43965] FILEOPEN: RTF import regressions -- \page ignored, subscripts scaled twice, and paragraph borders lost

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43965

--- Comment #1 from rho...@recurrentengineering.com 2011-12-20 10:35:10 PST ---
Created attachment 54604
  -- https://bugs.freedesktop.org/attachment.cgi?id=54604
Test file for the observed regressions

The attachment is a simple RTF test file which works fine in LO 3.3.2 but not
in 3.5.0b1 .

-- 
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 43983] Y-Axis does always start at 0

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43983

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever Confirmed|0   |1
Version|LibO 3.5.0 Beta1|LibO 3.3.4 release

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2011-12-20 10:59:39 PST ---
http://wiki.documentfoundation.org/BugReport_Details#Version

NOT reproducible with Parallel Dev-Installation of LibreOffice 3.5.0 Beta1 -
WIN7 Home Premium (64bit) German UI [Build-ID:
7362ca8-b5a8e65-af86909-d471f98-61464c4] Windows_Release_Configuration 
11-Dec-2011 06:51 and attached sample.ods.

I do not understand the sample and the report. Why should the first (500 ...
700) column contain y-axis values?

@Frieder:
Please attach a sample document!

-- 
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 42604] Crash on moving tabs

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42604

--- Comment #13 from Gaba ignaciog...@gmail.com 2011-12-20 11:18:37 PST ---
Reinstalled LibreOffice with NO KDE integration package (libreoffice-kde) and
the issue is gone (along with another one where the caption on mouse-over
wouldn't show; only a black rectangle)

-- 
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 43989] New: First start (firts run) after installation doesn't make LibreOffice's gui to appear

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43989

 Bug #: 43989
   Summary: First start (firts run) after installation doesn't
make LibreOffice's gui to appear
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.5 RC1
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Installation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: carlo.str...@tiscali.it


Hi Everyone,

as well as I have discussed on this LibreOffice - Users global list thread:
http://listarchives.libreoffice.org/global/users/msg1.html

simply after installing LibreOffice 3.4.5 RC1:

- on Windows XP, Home, SP3, updated, 32 bit, Ita GUIed, previous LibreOffice
3.3.2 uninstalled - just, and only, after install, I have to run it twice to
be able to see LibreOffice's gui because the first run didn't yield anything
(on screen), but the second run (doble click) make LibreOffice to appear; all
next (!) single runs make LibreOffice to appear;

- on Windows XP, Professional, SP3, updated, 32 bit, Ita GUIed, previous old
OpenOffice.org 2.4.0 uninstalled - all goes well (i.e. LibreOffice appears
always with only one (!) double click on his desktop icon);

- on Windows Vista, Home Premium, SP2, updated, 32 bit, Ita GUIed, previous
LibreOffice 3.3.2 uninstalled - all goes well (i.e. LibreOffice appears always
with only one (!) double click on his desktop icon);

- on linux, kernel 2.6.38.6, x86-64, Gnome 2.30.2, Ita GUIed - all goes well
(if I don't remember badly).

So my trouble seems to appear only in Windows XP PCs with previous LibreOffice
installation (is it something linked to extensions registration?). But other
people in the above thread experienced something like this in linux too.

What do you think about?

Have a nice evening,

Carlo

-- 
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 38962] Truncated printing in landscape

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38962

--- Comment #5 from Trevor Cordes x...@tecnopolis.ca 2011-12-20 11:54:39 PST 
---
Me too.  Brother HL-660 on Fedora 16 printing landscape in LO

-- 
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 43990] New: Function Vlookup and Hlookup don't work correctly when text recive: ( or )

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43990

 Bug #: 43990
   Summary: Function Vlookup and Hlookup don't work correctly when
text recive: ( or )
Classification: Unclassified
   Product: LibreOffice
   Version: LibO 3.4.4 release
  Platform: All
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Formula Editor
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: piotre...@vp.pl


When I use function Vlookup and Hlookup in polish version it can't find text
which has ) or (.

-- 
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 43983] Y-Axis does always start at 0

2011-12-20 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43983

--- Comment #3 from Frieder delo...@googlemail.com 2011-12-20 12:06:49 PST ---
Created attachment 54610
  -- https://bugs.freedesktop.org/attachment.cgi?id=54610
Sample

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