LibreOffice Gerrit News for core on 2014-08-30

2014-08-30 Thread gerrit
Moin!

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

 First time contributors doing great things! 
+ fdo#58189 : EDITING: Wrong Chapter Moves with the Navigator
  in https://gerrit.libreoffice.org/11200 from Ulrich Kitzinger
  about module sw
+ fdo#39674: Improved translation
  in https://gerrit.libreoffice.org/11192 from Jennifer Liebel
  about module sc
+ jurt: fix some javadoc errors for JDK 8
  in https://gerrit.libreoffice.org/11191 from Robert Antoni Buj i Gelonch
  about module jurt
+ xmerge: fix javadoc errors for JDK 8
  in https://gerrit.libreoffice.org/11189 from Robert Antoni Buj i Gelonch
  about module xmerge
+ fdo#39674: translated German to English
  in https://gerrit.libreoffice.org/11184 from Jennifer Liebel
  about module sc
 End of freshness 

+ CppunitTest_sw_htmlexport: enable on OS X
  in https://gerrit.libreoffice.org/11159 from Miklos Vajna
  about module sw
+ SfxHint: convert home-grown RTTI to normal C++ RTTI
  in https://gerrit.libreoffice.org/11147 from Noel Grandin
  about module accessibility, basctl, basic, desktop, editeng, include, 
reportdesign, sc, scripting, sd, sfx2, starmath, svl, svtools, svx, sw, vcl
+ java: when rethrowing exceptions, store the original cause
  in https://gerrit.libreoffice.org/11039 from Noel Grandin
  about module bean, bridges, codemaker, framework, javaunohelper, jurt, odk, 
qadevOOo, ridljar, scripting, xmerge, xmlsecurity


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

+ fdo#67615 TextField in table should use same formatting as floating TextF
  in https://gerrit.libreoffice.org/11196 from Lionel Elie Mamane
+ Upgrade libgltf to 0.0.1
  in https://gerrit.libreoffice.org/11179 from Zolnai Tamás
+ fdo#80538 Show an infobar when document is in read-only mode
  in https://gerrit.libreoffice.org/11182 from Samuel Mehrbrodt
+ fdo#83044:Fix for corruption of file with SDT content.
  in https://gerrit.libreoffice.org/11146 from Rohit Deshmukh


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

+ Try to fix tinderbox
  in https://gerrit.libreoffice.org/11190 from Zolnai Tamás


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

+ fdo#63154: Use OSL_* macros to manage endianess...
  in https://gerrit.libreoffice.org/11082 from Marcos Paulo de Souza
+ fdo#81956 : Rendering of vml group shape was wrong.
  in https://gerrit.libreoffice.org/11013 from sushil_shinde
+ l10ntools: fixes and improvements for transex3 executable
  in https://gerrit.libreoffice.org/10212 from Douglas Mencken
+ fdo#81426 : Data from header and footer is getting lost.
  in https://gerrit.libreoffice.org/10531 from Rajashri Udhoji
+ fdo#79541 :Corrupt: Shape  enclosed within a floating table
  in https://gerrit.libreoffice.org/9914 from Rajashri Udhoji
+ fdo#63154: Rearrange some solar.h includes
  in https://gerrit.libreoffice.org/10892 from Marcos Paulo de Souza
+ fdo#82290: Perform write(2) and read(2) concurrently to avoid pipe deadlo
  in https://gerrit.libreoffice.org/10825 from Jan Holesovsky
+ fdo#80996:Fix for DataLabel not preserved for ColumnChart after RT
  in https://gerrit.libreoffice.org/10169 from Dushyant Bhalgami
+ fdo#77716 : Paragraph spacing is not preserved after RT.
  in https://gerrit.libreoffice.org/9197 from Tushar Bende
+ fdo#77121 Header / Footer positions not preserved after RT
  in https://gerrit.libreoffice.org/9235 from Priyanka Gaikwad


Best,

Your friendly LibreOffice Gerrit Digest Mailer

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


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

2014-08-30 Thread Tor Lillqvist
 sc/source/filter/excel/xepivot.cxx |5 ++---
 sc/source/filter/inc/xepivot.hxx   |1 -
 2 files changed, 2 insertions(+), 4 deletions(-)

New commits:
commit 552b5e1f230fbbf49f3624d3bc31cab32898b16c
Author: Tor Lillqvist t...@collabora.com
Date:   Sat Aug 30 09:47:47 2014 +0300

WaE: private field 'mnId' is not used

Change-Id: Id3e9c2c380b8c2388eda9e650dae635bfbae7711

diff --git a/sc/source/filter/excel/xepivot.cxx 
b/sc/source/filter/excel/xepivot.cxx
index 34937da..c330d64 100644
--- a/sc/source/filter/excel/xepivot.cxx
+++ b/sc/source/filter/excel/xepivot.cxx
@@ -1184,14 +1184,13 @@ void XclExpPTField::WriteSxvdex( XclExpStream rStrm ) 
const
 rStrm.EndRecord();
 }
 
-XclExpPivotTable::XclExpPivotTable( const XclExpRoot rRoot, const ScDPObject 
rDPObj, const XclExpPivotCache rPCache, size_t nId ) :
+XclExpPivotTable::XclExpPivotTable( const XclExpRoot rRoot, const ScDPObject 
rDPObj, const XclExpPivotCache rPCache, size_t ) :
 XclExpRoot( rRoot ),
 mrPCache( rPCache ),
 maDataOrientField( *this, EXC_SXIVD_DATA ),
 mnOutScTab( 0 ),
 mbValid( false ),
-mbFilterBtn( false ),
-mnId( nId )
+mbFilterBtn( false )
 {
 const ScRange rOutScRange = rDPObj.GetOutRange();
 if( GetAddressConverter().ConvertRange( maPTInfo.maOutXclRange, 
rOutScRange, true ) )
diff --git a/sc/source/filter/inc/xepivot.hxx b/sc/source/filter/inc/xepivot.hxx
index bf12728..07ce8ee 100644
--- a/sc/source/filter/inc/xepivot.hxx
+++ b/sc/source/filter/inc/xepivot.hxx
@@ -406,7 +406,6 @@ private:
 SCTAB   mnOutScTab; /// Sheet index of the output 
range.
 boolmbValid;/// true = The pivot table is 
valid for export.
 boolmbFilterBtn;/// true = DataPilot has filter 
button.
-size_t  mnId;   /// Stream ID
 };
 
 /** The main class for pivot table export.
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-08-30 Thread Matúš Kukan
 sax/source/fastparser/fastparser.cxx |   17 -
 1 file changed, 8 insertions(+), 9 deletions(-)

New commits:
commit 59f1e330f0ecbb7d2387c1569c19fd055c162f8f
Author: Matúš Kukan matus.ku...@collabora.com
Date:   Tue Aug 26 15:03:24 2014 +0200

Use plain bool parameter here

Change-Id: Ic948889a0fac32adc48a7a4fb1e7f82ce8b08ba4

diff --git a/sax/source/fastparser/fastparser.cxx 
b/sax/source/fastparser/fastparser.cxx
index 1e08851..37b5133 100644
--- a/sax/source/fastparser/fastparser.cxx
+++ b/sax/source/fastparser/fastparser.cxx
@@ -224,7 +224,7 @@ public:
 Entity getEntity() { return *mpTop; }
 const Entity getEntity() const { return *mpTop; }
 void parse();
-void produce( CallbackType aType );
+void produce( bool bForceFlush = false );
 
 bool hasNamespaceURL( const OUString rPrefix ) const;
 
@@ -276,7 +276,7 @@ private:
 {
 Entity rEntity = mpParser-getEntity();
 rEntity.getEvent( EXCEPTION );
-mpParser-produce( EXCEPTION );
+mpParser-produce( true );
 }
 }
 };
@@ -947,11 +947,10 @@ void FastSaxParserImpl::deleteUsedEvents()
 }
 }
 
-void FastSaxParserImpl::produce( CallbackType aType )
+void FastSaxParserImpl::produce( bool bForceFlush )
 {
 Entity rEntity = getEntity();
-if (aType == DONE ||
-aType == EXCEPTION ||
+if (bForceFlush ||
 rEntity.mnProducedEventsSize == rEntity.mnEventListSize)
 {
 osl::ResettableMutexGuard aGuard(rEntity.maEventProtector);
@@ -1063,7 +1062,7 @@ void FastSaxParserImpl::parse()
 while( nRead  0 );
 rEntity.getEvent( DONE );
 if( rEntity.mbEnableThreads )
-produce( DONE );
+produce( true );
 }
 
 // The C-Callbacks
@@ -1186,7 +1185,7 @@ void FastSaxParserImpl::callbackStartElement( const 
XML_Char* pwName, const XML_
 
 rEntity.maNamespaceStack.push( NameWithToken(rEvent.msNamespace, 
nNamespaceToken) );
 if (rEntity.mbEnableThreads)
-produce( START_ELEMENT );
+produce();
 else
 rEntity.startElement( rEvent );
 }
@@ -1209,7 +1208,7 @@ void FastSaxParserImpl::callbackEndElement( 
SAL_UNUSED_PARAMETER const XML_Char*
 
 rEntity.getEvent( END_ELEMENT );
 if (rEntity.mbEnableThreads)
-produce( END_ELEMENT );
+produce();
 else
 rEntity.endElement();
 }
@@ -1220,7 +1219,7 @@ void FastSaxParserImpl::callbackCharacters( const 
XML_Char* s, int nLen )
 Event rEvent = rEntity.getEvent( CHARACTERS );
 rEvent.msChars = OUString(s, nLen, RTL_TEXTENCODING_UTF8);
 if (rEntity.mbEnableThreads)
-produce( CHARACTERS );
+produce();
 else
 rEntity.characters( rEvent.msChars );
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: jurt/com

2014-08-30 Thread rbuj
 jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java  |4 ++--
 jurt/com/sun/star/lib/connections/pipe/pipeConnector.java |4 ++--
 jurt/com/sun/star/lib/connections/socket/socketAcceptor.java  |4 ++--
 jurt/com/sun/star/lib/connections/socket/socketConnector.java |4 ++--
 jurt/com/sun/star/lib/uno/environments/remote/Message.java|4 ++--
 5 files changed, 10 insertions(+), 10 deletions(-)

New commits:
commit dc64ffbf9e3cf24cebbb454e6b75a0a69656ceb8
Author: rbuj robert@gmail.com
Date:   Fri Aug 29 14:00:45 2014 +0200

jurt: fix some javadoc errors for JDK 8

Change-Id: I998f5796d7a5f10f790a1e861b741c54d0f62c19
Reviewed-on: https://gerrit.libreoffice.org/11191
Reviewed-by: Noel Grandin noelgran...@gmail.com
Tested-by: Noel Grandin noelgran...@gmail.com

diff --git a/jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java 
b/jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java
index a8dd0ad..52e00a4 100644
--- a/jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java
+++ b/jurt/com/sun/star/lib/connections/pipe/pipeAcceptor.java
@@ -83,7 +83,7 @@ public final class pipeAcceptor implements XAcceptor {
  * codevartype/var/code!--
  * --*(codevarkey/var=varvalue/var/code),
  * where codevartype/var/code should be codepipe/code
- * (ignoring case).  Supported keys (ignoring case) currently are
+ * (ignoring case).  Supported keys (ignoring case) currently are/p
  * dl
  * dtcodehost/code
  * ddThe name or address of the accepting interface (defaults to
@@ -96,7 +96,7 @@ public final class pipeAcceptor implements XAcceptor {
  * dtcodetcpnodelay/code
  * ddA flag (code0/code/code1/code) enabling or disabling Nagle's
  * algorithm on the resulting connection.
- * /dl/p
+ * /dl
  *
  * @param connectionDescription the description of the connection.
  * @return an codeXConnection/code to the client.
diff --git a/jurt/com/sun/star/lib/connections/pipe/pipeConnector.java 
b/jurt/com/sun/star/lib/connections/pipe/pipeConnector.java
index 425128c..95c064e 100644
--- a/jurt/com/sun/star/lib/connections/pipe/pipeConnector.java
+++ b/jurt/com/sun/star/lib/connections/pipe/pipeConnector.java
@@ -81,7 +81,7 @@ public final class pipeConnector implements XConnector {
  * codevartype/var/code!--
  * --*(codevarkey/var=varvalue/var/code),
  * where codevartype/var/code should be codepipe/code
- * (ignoring case).  Supported keys (ignoring case) currently are
+ * (ignoring case).  Supported keys (ignoring case) currently are/p
  * dl
  * dtcodehost/code
  * ddThe name or address of the server.  Must be present.
@@ -90,7 +90,7 @@ public final class pipeConnector implements XConnector {
  * dtcodetcpnodelay/code
  * ddA flag (code0/code/code1/code) enabling or disabling Nagle's
  * algorithm on the resulting connection.
- * /dl/p
+ * /dl
  *
  * @param connectionDescription the description of the connection.
  * @return an codeXConnection/code to the server.
diff --git a/jurt/com/sun/star/lib/connections/socket/socketAcceptor.java 
b/jurt/com/sun/star/lib/connections/socket/socketAcceptor.java
index 22dbfa4..4902d52 100644
--- a/jurt/com/sun/star/lib/connections/socket/socketAcceptor.java
+++ b/jurt/com/sun/star/lib/connections/socket/socketAcceptor.java
@@ -88,7 +88,7 @@ public final class socketAcceptor implements XAcceptor {
  * codevartype/var/code!--
  * --*(codevarkey/var=varvalue/var/code),
  * where codevartype/var/code should be codesocket/code
- * (ignoring case).  Supported keys (ignoring case) currently are
+ * (ignoring case).  Supported keys (ignoring case) currently are/p
  * dl
  * dtcodehost/code
  * ddThe name or address of the accepting interface (defaults to
@@ -101,7 +101,7 @@ public final class socketAcceptor implements XAcceptor {
  * dtcodetcpnodelay/code
  * ddA flag (code0/code/code1/code) enabling or disabling Nagle's
  * algorithm on the resulting connection.
- * /dl/p
+ * /dl
  *
  * @param connectionDescription the description of the connection.
  * @return an codeXConnection/code to the client.
diff --git a/jurt/com/sun/star/lib/connections/socket/socketConnector.java 
b/jurt/com/sun/star/lib/connections/socket/socketConnector.java
index 48d87b7..ce76eaa 100644
--- a/jurt/com/sun/star/lib/connections/socket/socketConnector.java
+++ b/jurt/com/sun/star/lib/connections/socket/socketConnector.java
@@ -86,7 +86,7 @@ public final class socketConnector implements XConnector {
  * codevartype/var/code!--
  * --*(codevarkey/var=varvalue/var/code),
  * where codevartype/var/code should be codesocket/code
- * (ignoring case).  Supported keys (ignoring case) currently are
+ * (ignoring case).  Supported keys (ignoring case) currently are/p
  * dl
  * dtcodehost/code
  * ddThe name or address of 

Re: Jennifer Liebel license statement

2014-08-30 Thread Noel Grandin
added to https://wiki.documentfoundation.org/Development/Developers

On Fri, Aug 29, 2014 at 9:46 AM, Jennifer Liebel jliebe...@gmail.com wrote:
 Hi,

 all my current and past contributions made to the LibreOffice project
 may be licensed under the MPLv2/LGPLv3+ dual license.

 Until further notice, all my future contributions to the LibreOffice
 project are available under the MPLv2/LGPLv3+ dual license.

 Best regards,
 Jennifer Liebel


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

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


[Libreoffice-commits] core.git: svx/Library_svxcore.mk

2014-08-30 Thread Tor Lillqvist
 svx/Library_svxcore.mk |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 90c38d993dfda3c0fbb411a09d5be77cb41ea0bf
Author: Tor Lillqvist t...@collabora.com
Date:   Sat Aug 30 11:11:27 2014 +0300

Fix build problem in the --disable-database-connectivity case

Change-Id: Ifcd5055656ec62b202bf4574a2fd0f7d35982090

diff --git a/svx/Library_svxcore.mk b/svx/Library_svxcore.mk
index f66b2a0..65c69fb 100644
--- a/svx/Library_svxcore.mk
+++ b/svx/Library_svxcore.mk
@@ -56,7 +56,8 @@ $(eval $(call gb_Library_use_libraries,svxcore,\
 comphelper \
 cppuhelper \
 cppu \
-dbtools \
+$(call gb_Helper_optional,DBCONNECTIVITY, \
+dbtools) \
 drawinglayer \
 editeng \
 fwe \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-08-30 Thread Samuel Mehrbrodt
 sw/inc/globals.hrc|   48 +++---
 sw/source/ui/shells/shells.src|8 ++
 sw/source/uibase/inc/view.hxx |1 
 sw/source/uibase/uiview/view.cxx  |1 
 sw/source/uibase/uiview/view2.cxx |   21 +---
 5 files changed, 40 insertions(+), 39 deletions(-)

New commits:
commit 4b4e4ccf8d571fd6f6ee538c4e406b07fc810e2d
Author: Samuel Mehrbrodt s.mehrbr...@gmail.com
Date:   Wed Aug 27 23:52:28 2014 +0200

fdo#80617 Use complete string to allow translation for page number info

Change-Id: I8cc899f70ee4dcd65495b8ccc153a8fc3a2cc413
Reviewed-on: https://gerrit.libreoffice.org/11157
Reviewed-by: Adolfo Jayme Barrientos fit...@ubuntu.com
Reviewed-by: Thomas Arnhold tho...@arnhold.org
Tested-by: Thomas Arnhold tho...@arnhold.org

diff --git a/sw/inc/globals.hrc b/sw/inc/globals.hrc
index 5121a62..99cad7c 100644
--- a/sw/inc/globals.hrc
+++ b/sw/inc/globals.hrc
@@ -31,7 +31,9 @@
 #define STR_DOC_STAT(RC_GLOBALS_BEGIN + 10)
 
 #define STR_PAGE(RC_GLOBALS_BEGIN + 14)
-#define STR_PRINTOPTUI  (RC_GLOBALS_BEGIN + 15)
+#define STR_PAGE_COUNT  (RC_GLOBALS_BEGIN + 15)
+#define STR_PAGE_COUNT_CUSTOM   (RC_GLOBALS_BEGIN + 16)
+#define STR_PRINTOPTUI  (RC_GLOBALS_BEGIN + 17)
 
 #define ST_SCRIPT_WESTERN   (RC_GLOBALS_BEGIN + 105)
 #define ST_SCRIPT_ASIAN (RC_GLOBALS_BEGIN + 106)
@@ -39,32 +41,32 @@
 
 //EventStrings
 
-#define STR_EVENT_OBJECT_SELECT  ( RC_GLOBALS_BEGIN + 17 )
-#define STR_EVENT_START_INS_GLOSSARY ( RC_GLOBALS_BEGIN + 18 )
-#define STR_EVENT_END_INS_GLOSSARY   ( RC_GLOBALS_BEGIN + 19 )
-#define STR_EVENT_MOUSEOVER_OBJECT   ( RC_GLOBALS_BEGIN + 20 )
-#define STR_EVENT_MOUSECLICK_OBJECT  ( RC_GLOBALS_BEGIN + 21 )
-#define STR_EVENT_MOUSEOUT_OBJECT( RC_GLOBALS_BEGIN + 22 )
-#define STR_EVENT_IMAGE_LOAD ( RC_GLOBALS_BEGIN + 23 )
-#define STR_EVENT_IMAGE_ABORT( RC_GLOBALS_BEGIN + 24 )
-#define STR_EVENT_IMAGE_ERROR( RC_GLOBALS_BEGIN + 25 )
-#define STR_EVENT_FRM_KEYINPUT_A ( RC_GLOBALS_BEGIN + 26 )
-#define STR_EVENT_FRM_KEYINPUT_NOA   ( RC_GLOBALS_BEGIN + 27 )
-#define STR_EVENT_FRM_RESIZE ( RC_GLOBALS_BEGIN + 28 )
-#define STR_EVENT_FRM_MOVE   ( RC_GLOBALS_BEGIN + 29 )
+#define STR_EVENT_OBJECT_SELECT  ( RC_GLOBALS_BEGIN + 18 )
+#define STR_EVENT_START_INS_GLOSSARY ( RC_GLOBALS_BEGIN + 19 )
+#define STR_EVENT_END_INS_GLOSSARY   ( RC_GLOBALS_BEGIN + 20 )
+#define STR_EVENT_MOUSEOVER_OBJECT   ( RC_GLOBALS_BEGIN + 21 )
+#define STR_EVENT_MOUSECLICK_OBJECT  ( RC_GLOBALS_BEGIN + 22 )
+#define STR_EVENT_MOUSEOUT_OBJECT( RC_GLOBALS_BEGIN + 23 )
+#define STR_EVENT_IMAGE_LOAD ( RC_GLOBALS_BEGIN + 24 )
+#define STR_EVENT_IMAGE_ABORT( RC_GLOBALS_BEGIN + 25 )
+#define STR_EVENT_IMAGE_ERROR( RC_GLOBALS_BEGIN + 26 )
+#define STR_EVENT_FRM_KEYINPUT_A ( RC_GLOBALS_BEGIN + 27 )
+#define STR_EVENT_FRM_KEYINPUT_NOA   ( RC_GLOBALS_BEGIN + 28 )
+#define STR_EVENT_FRM_RESIZE ( RC_GLOBALS_BEGIN + 29 )
+#define STR_EVENT_FRM_MOVE   ( RC_GLOBALS_BEGIN + 30 )
 
 // Strings for frame alignment in Popup
-#define STR_TOP_BASE(RC_GLOBALS_BEGIN + 30)
-#define STR_BOTTOM_BASE (RC_GLOBALS_BEGIN + 31)
-#define STR_CENTER_BASE (RC_GLOBALS_BEGIN + 32)
-#define STR_TOP (RC_GLOBALS_BEGIN + 33)
-#define STR_BOTTOM  (RC_GLOBALS_BEGIN + 34)
-#define STR_CENTER_HORI (RC_GLOBALS_BEGIN + 35)
-#define STR_CENTER_VERT (RC_GLOBALS_BEGIN + 36)
+#define STR_TOP_BASE(RC_GLOBALS_BEGIN + 31)
+#define STR_BOTTOM_BASE (RC_GLOBALS_BEGIN + 32)
+#define STR_CENTER_BASE (RC_GLOBALS_BEGIN + 33)
+#define STR_TOP (RC_GLOBALS_BEGIN + 34)
+#define STR_BOTTOM  (RC_GLOBALS_BEGIN + 35)
+#define STR_CENTER_HORI (RC_GLOBALS_BEGIN + 36)
+#define STR_CENTER_VERT (RC_GLOBALS_BEGIN + 37)
 
-#define STR_LOAD_HTML_DOC   (RC_GLOBALS_BEGIN + 37)
+#define STR_LOAD_HTML_DOC   (RC_GLOBALS_BEGIN + 38)
 
-#define STR_JAVA_EDIT   (RC_GLOBALS_BEGIN + 38)
+#define STR_JAVA_EDIT   (RC_GLOBALS_BEGIN + 39)
 
 #define STR_REMOVE_WARNING  (RC_GLOBALS_BEGIN + 40)
 
diff --git a/sw/source/ui/shells/shells.src b/sw/source/ui/shells/shells.src
index 45c0112..03668eb 100644
--- a/sw/source/ui/shells/shells.src
+++ b/sw/source/ui/shells/shells.src
@@ -107,6 +107,14 @@ String STR_PAGE
 {
 Text [ en-US ] = Page  ;
 };
+String STR_PAGE_COUNT
+{
+Text [ en-US ] = Page %1 of %2 ;
+};
+String STR_PAGE_COUNT_CUSTOM
+{
+Text [ en-US ] = Page %1 of %2 (Page %3) ;
+};
 String RID_TEXT_TOOLBOX
 {
 Text [ en-US ] = Text Object Bar ;
diff --git a/sw/source/uibase/inc/view.hxx b/sw/source/uibase/inc/view.hxx
index 6d519a5..fd09bf4 100644
--- 

[Libreoffice-commits] core.git: sw/qa

2014-08-30 Thread Miklos Vajna
 sw/qa/extras/htmlexport/htmlexport.cxx |4 
 1 file changed, 4 deletions(-)

New commits:
commit 675073a7766007ae0d289dcd634d5153bbd891c3
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Wed Aug 27 22:36:18 2014 -0700

CppunitTest_sw_htmlexport: enable on OS X

Change-Id: I2aa954b0f97de9ae7657ae3a12d1a15389c13ef2
Reviewed-on: https://gerrit.libreoffice.org/11159
Reviewed-by: Miklos Vajna vmik...@collabora.co.uk
Tested-by: Miklos Vajna vmik...@collabora.co.uk

diff --git a/sw/qa/extras/htmlexport/htmlexport.cxx 
b/sw/qa/extras/htmlexport/htmlexport.cxx
index 7690bb8..f59b09b 100644
--- a/sw/qa/extras/htmlexport/htmlexport.cxx
+++ b/sw/qa/extras/htmlexport/htmlexport.cxx
@@ -9,8 +9,6 @@
 
 #include swmodeltestbase.hxx
 
-#if !defined(MACOSX)
-
 #include com/sun/star/awt/Gradient.hpp
 #include com/sun/star/drawing/FillStyle.hpp
 #include rtl/byteseq.hxx
@@ -164,8 +162,6 @@ DECLARE_HTMLEXPORT_TEST(testSkipImageEmbeddedDocument, 
skipimage-embedded-docum
 assertXPathContent(pDoc, /html/body/p/span/p/span, Inner.);
 }
 
-#endif
-
 CPPUNIT_PLUGIN_IMPLEMENT();
 
 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2014-08-30 Thread Jennifer Liebel
 sc/source/core/tool/interpr2.cxx |   27 +--
 1 file changed, 13 insertions(+), 14 deletions(-)

New commits:
commit 5605a36a31081875087ff5cb28b84790845ba695
Author: Jennifer Liebel jliebe...@gmail.com
Date:   Fri Aug 29 12:41:40 2014 +

fdo#39674: Improved translation

Conflicts:

sc/source/core/tool/interpr2.cxx

Change-Id: Ib80472a1670b61fdea61bdee4d52b19e28b85d63
Reviewed-on: https://gerrit.libreoffice.org/11192
Reviewed-by: Thomas Arnhold tho...@arnhold.org
Tested-by: Thomas Arnhold tho...@arnhold.org

diff --git a/sc/source/core/tool/interpr2.cxx b/sc/source/core/tool/interpr2.cxx
index ac6d71e..1971e56 100644
--- a/sc/source/core/tool/interpr2.cxx
+++ b/sc/source/core/tool/interpr2.cxx
@@ -94,8 +94,6 @@ double ScInterpreter::GetDateSerial( sal_Int16 nYear, 
sal_Int16 nMonth, sal_Int1
 }
 }
 
-// Funktionen
-
 void ScInterpreter::ScGetActDate()
 {
 nFuncFmtType = NUMBERFORMAT_DATE;
@@ -1399,9 +1397,9 @@ void ScInterpreter::ScVDB()
 else
 {
 
-double fDauer1=fDauer;
+double fTimeLength1=fTimeLength;
 
-//@Die Frage aller Fragen: Ist das hier richtig
+//@ The question of all questions: 'Is this right'
 
if(!::rtl::math::approxEqual(fAnfang,::rtl::math::approxFloor(fAnfang)))
 {
 if(fFactor1)
@@ -2173,18 +2171,18 @@ void ScInterpreter::ScStyle()
 sal_uInt8 nParamCount = GetByte();
 if (nParamCount = 1  nParamCount = 3)
 {
-OUString aStyle2; // Vorlage nach Timer
+OUString aStyle2; // Template after timer
 if (nParamCount = 3)
 aStyle2 = GetString().getString();
 long nTimeOut = 0;  // Timeout
 if (nParamCount = 2)
 nTimeOut = (long)(GetDouble()*1000.0);
-OUString aStyle1 = GetString().getString();   // Vorlage 
fuer sofort
+OUString aStyle1 = GetString().getString();   // Template 
for immediate
 
 if (nTimeOut  0)
 nTimeOut = 0;
 
-//  Request ausfuehren, um Vorlage anzuwenden
+// Execute request to apply template
 
 if ( !pDok-IsClipOrUndo() )
 {
@@ -2254,7 +2252,7 @@ void ScInterpreter::ScDde()
 return;
 }
 
-//  Nach dem Laden muss neu interpretiert werden (Verknuepfungen 
aufbauen)
+// Need to reinterpret after loading (build links)
 
 if ( rArr.IsRecalcModeNormal() )
 rArr.SetExclusiveRecalcModeOnLoad();
@@ -2265,7 +2263,7 @@ void ScInterpreter::ScDde()
 bool bOldEnabled = pDok-IsIdleEnabled();
 pDok-EnableIdle(false);
 
-//  Link-Objekt holen / anlegen
+// Get/ Create link object
 
 ScDdeLink* pLink = lcl_GetDdeLink( pLinkMgr, aAppl, aTopic, aItem, 
nMode );
 
@@ -2285,8 +2283,8 @@ void ScInterpreter::ScDde()
 pBindings-Invalidate( SID_LINKS ); // 
Link-Manager enablen
 }
 
-//! asynchron auswerten ???
-pLink-TryUpdate(); //  TryUpdate ruft Update nicht mehrfach 
auf
+//! evaluate asynchron ???
+pLink-TryUpdate(); //  TryUpdate doesn't call Update multiple 
times
 
 if (pMyFormulaCell)
 {
@@ -2392,9 +2390,9 @@ void ScInterpreter::ScBase()
 bool bDirt = false;
 while ( fVal  p  pBuf )
 {
-//! mit fmod Rundungsfehler ab 2**48
+//! roundoff error starting with numbers greater than 2**48
 //  double fDig = ::rtl::math::approxFloor( fmod( fVal, fBase 
) );
-// so ist es etwas besser
+// a little bit better:
 double fInt = ::rtl::math::approxFloor( fVal / fBase );
 double fMult = fInt * fBase;
 #if OSL_DEBUG_LEVEL  1
@@ -2523,7 +2521,8 @@ void ScInterpreter::ScConvert()
 if ( nGlobalError )
 PushError( nGlobalError);
 else
-{   // erst die angegebene Reihenfolge suchen, wenn nicht gefunden den 
Kehrwert
+{
+// first of all search for the given order; if it can't be found 
then search for the inverse
 double fConv;
 if ( ScGlobal::GetUnitConverter()-GetValue( fConv, aFromUnit, 
aToUnit ) )
 PushDouble( fVal * fConv );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 39674] find / fix all German spellings in internal APIs

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39674

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard|EasyHack DifficultyBeginner |EasyHack DifficultyBeginner
   |SkillScript target:4.1.0|SkillScript target:4.1.0
   |target:4.2.0|target:4.2.0 target:4.4.0

--- Comment #16 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Jennifer Liebel committed a patch related to this issue.
It has been pushed to master:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=5605a36a31081875087ff5cb28b84790845ba695

fdo#39674: Improved translation



The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

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


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

2014-08-30 Thread Jennifer Liebel
 sc/source/core/tool/interpr2.cxx |  429 +++
 1 file changed, 213 insertions(+), 216 deletions(-)

New commits:
commit e886f9ad66cf0e1961deebb30a97e0b35bb5a816
Author: Jennifer Liebel jliebe...@gmail.com
Date:   Fri Aug 29 07:51:29 2014 +

fdo#39674: translated German to English

Conflicts:

sc/source/core/tool/interpr2.cxx

Change-Id: Ib063cafa895abd7d792ca068d727ea161946679c
Reviewed-on: https://gerrit.libreoffice.org/11184
Reviewed-by: Thomas Arnhold tho...@arnhold.org
Tested-by: Thomas Arnhold tho...@arnhold.org

diff --git a/sc/source/core/tool/interpr2.cxx b/sc/source/core/tool/interpr2.cxx
index 1971e56..0657007 100644
--- a/sc/source/core/tool/interpr2.cxx
+++ b/sc/source/core/tool/interpr2.cxx
@@ -56,7 +56,7 @@ using namespace formula;
 
 #define SCdEpsilon1.0E-7
 
-// Datum und Zeit
+// Date and Time
 
 double ScInterpreter::GetDateSerial( sal_Int16 nYear, sal_Int16 nMonth, 
sal_Int16 nDay,
 bool bStrict, bool bCheckGregorian )
@@ -963,7 +963,7 @@ void ScInterpreter::ScNPV()
 if ( MustHaveParamCount( nParamCount, 2, 31 ) )
 {
 double nVal = 0.0;
-// Wir drehen den Stack um!!
+//We turn the stack upside down!
 FormulaToken* pTemp[ 31 ];
 for( short i = 0; i  nParamCount; i++ )
 pTemp[ i ] = pStack[ sp - i - 1 ];
@@ -971,7 +971,7 @@ void ScInterpreter::ScNPV()
 if (nGlobalError == 0)
 {
 double  nCount = 1.0;
-double  nZins = GetDouble();
+double  nInterest = GetDouble();
 --nParamCount;
 size_t nRefInList = 0;
 ScRange aRange;
@@ -981,7 +981,7 @@ void ScInterpreter::ScNPV()
 {
 case svDouble :
 {
-nVal += (GetDouble() / pow(1.0 + nZins, 
(double)nCount));
+nVal += (GetDouble() / pow(1.0 + nInterest, 
(double)nCount));
 nCount++;
 }
 break;
@@ -994,7 +994,7 @@ void ScInterpreter::ScNPV()
 if (!aCell.hasEmptyValue()  aCell.hasNumeric())
 {
 double nCellVal = GetCellValue(aAdr, aCell);
-nVal += (nCellVal / pow(1.0 + nZins, 
(double)nCount));
+nVal += (nCellVal / pow(1.0 + nInterest, 
(double)nCount));
 nCount++;
 }
 }
@@ -1008,7 +1008,7 @@ void ScInterpreter::ScNPV()
 ScHorizontalValueIterator aValIter( pDok, aRange );
 while ((nErr == 0)  aValIter.GetNext(nCellVal, nErr))
 {
-nVal += (nCellVal / pow(1.0 + nZins, 
(double)nCount));
+nVal += (nCellVal / pow(1.0 + nInterest, 
(double)nCount));
 nCount++;
 }
 if ( nErr != 0 )
@@ -1025,22 +1025,22 @@ void ScInterpreter::ScNPV()
 
 void ScInterpreter::ScIRR()
 {
-double fSchaetzwert;
+double fEstimated;
 nFuncFmtType = NUMBERFORMAT_PERCENT;
 sal_uInt8 nParamCount = GetByte();
 if ( !MustHaveParamCount( nParamCount, 1, 2 ) )
 return;
 if (nParamCount == 2)
-fSchaetzwert = GetDouble();
+fEstimated = GetDouble();
 else
-fSchaetzwert = 0.1;
-sal_uInt16 sPos = sp;   // Stack-Position merken
+fEstimated = 0.1;
+sal_uInt16 sPos = sp;   //memory the position of the 
stack
 double fEps = 1.0;
-double x, xNeu, fWert, fZaehler, fNenner, nCount;
-if (fSchaetzwert == -1.0)
-x = 0.1;// default gegen Nulldivisionen
+double x, xNew, fValue, fNom, fDenom, nCount;
+if (fEstimated == -1.0)
+x = 0.1;// default result for divion by 
zero
 else
-x = fSchaetzwert;   // Startwert
+x = fEstimated;   // startvalue
 switch (GetStackType())
 {
 case svDoubleRef :
@@ -1055,34 +1055,34 @@ void ScInterpreter::ScIRR()
 sal_uInt16 nItCount = 0;
 ScRange aRange;
 while (fEps  SCdEpsilon  nItCount  nIterationsMax)
-{   // Newton-Verfahren:
-sp = sPos;  // Stack zuruecksetzen
+{   // Newtons method:
+sp = sPos;  // reset stack
 nCount = 0.0;
-fZaehler = 0.0;
-fNenner = 0.0;
+fNom = 0.0;
+fDenom = 0.0;
 sal_uInt16 nErr = 0;
 PopDoubleRef( aRange );
 ScValueIterator aValIter(pDok, aRange, mnSubTotalFlags);
-if (aValIter.GetFirst(fWert, nErr))
+if (aValIter.GetFirst(fValue, 

[Bug 39674] find / fix all German spellings in internal APIs

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39674

--- Comment #17 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Jennifer Liebel committed a patch related to this issue.
It has been pushed to master:

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

fdo#39674: translated German to English



The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

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


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

2014-08-30 Thread Thomas Arnhold
 sc/source/core/inc/interpre.hxx  |2 -
 sc/source/core/tool/interpr2.cxx |   46 +++
 2 files changed, 24 insertions(+), 24 deletions(-)

New commits:
commit e96d2593138d9e8eb197e21fa3087b45eae676c0
Author: Thomas Arnhold tho...@arnhold.org
Date:   Sat Aug 30 11:04:40 2014 +0200

interpr: ZinsesZins is Compound Interest

There are many more, like ScZinsZ, ScLaufz, ScGetZw,...

And some I can't identify, because my financial vocabulary is limited:

nZr Zinsrate
nZzr Zinseszinsrate
nBw ?
nZw Zinswert
nRmz ?

and many many more ;)

Change-Id: I11c26a8d4519bbd1e8242d27d3815db2bc3fdecd

diff --git a/sc/source/core/inc/interpre.hxx b/sc/source/core/inc/interpre.hxx
index eb24eb9..dc7de33 100644
--- a/sc/source/core/inc/interpre.hxx
+++ b/sc/source/core/inc/interpre.hxx
@@ -682,7 +682,7 @@ void ScZZR();
 bool RateIteration(double fNper, double fPayment, double fPv,
 double fFv, double fPayType, double fGuess);
 void ScZins();
-double ScGetZinsZ(double fZins, double fZr, double fZzr, double fBw,
+double ScGetCompoundInterest(double fZins, double fZr, double fZzr, double fBw,
  double fZw, double fF, double fRmz);
 void ScZinsZ();
 void ScKapz();
diff --git a/sc/source/core/tool/interpr2.cxx b/sc/source/core/tool/interpr2.cxx
index 512e756..1326c5f 100644
--- a/sc/source/core/tool/interpr2.cxx
+++ b/sc/source/core/tool/interpr2.cxx
@@ -1708,27 +1708,27 @@ void ScInterpreter::ScZins()
 PushDouble(fGuess);
 }
 
-double ScInterpreter::ScGetZinsZ(double fInterest, double fZr, double fZzr, 
double fBw,
+double ScInterpreter::ScGetCompoundInterest(double fInterest, double fZr, 
double fZzr, double fBw,
  double fZw, double fF, double fRmz)
 {
 fRmz = ScGetRmz(fInterest, fZzr, fBw, fZw, fF); // fuer kapz auch bei 
fZr == 1
-double fInterestZ;
+double fCompoundInterest;
 nFuncFmtType = NUMBERFORMAT_CURRENCY;
 if (fZr == 1.0)
 {
 if (fF  0.0)
-fInterestZ = 0.0;
+fCompoundInterest = 0.0;
 else
-fInterestZ = -fBw;
+fCompoundInterest = -fBw;
 }
 else
 {
 if (fF  0.0)
-fInterestZ = ScGetZw(fInterest, fZr-2.0, fRmz, fBw, 1.0) - fRmz;
+fCompoundInterest = ScGetZw(fInterest, fZr-2.0, fRmz, fBw, 1.0) - 
fRmz;
 else
-fInterestZ = ScGetZw(fInterest, fZr-1.0, fRmz, fBw, 0.0);
+fCompoundInterest = ScGetZw(fInterest, fZr-1.0, fRmz, fBw, 0.0);
 }
-return fInterestZ * fInterest;
+return fCompoundInterest * fInterest;
 }
 
 void ScInterpreter::ScZinsZ()
@@ -1751,7 +1751,7 @@ void ScInterpreter::ScZinsZ()
 else
 {
 double nRmz;
-PushDouble(ScGetZinsZ(nInterest, nZr, nZzr, nBw, nZw, nFlag, nRmz));
+PushDouble(ScGetCompoundInterest(nInterest, nZr, nZzr, nBw, nZw, 
nFlag, nRmz));
 }
 }
 
@@ -1775,7 +1775,7 @@ void ScInterpreter::ScKapz()
 else
 {
 double nRmz;
-double nInterestz = ScGetZinsZ(nInterest, nZr, nZzr, nBw, nZw, nFlag, 
nRmz);
+double nInterestz = ScGetCompoundInterest(nInterest, nZr, nZzr, nBw, 
nZw, nFlag, nRmz);
 PushDouble(nRmz - nInterestz);
 }
 }
@@ -1800,22 +1800,22 @@ void ScInterpreter::ScKumZinsZ()
 sal_uLong nStart = (sal_uLong) fStart;
 sal_uLong nEnd = (sal_uLong) fEnd ;
 double fRmz = ScGetRmz(fInterest, fZzr, fBw, 0.0, fF);
-double fInterestZ = 0.0;
+double fCompoundInterest = 0.0;
 if (nStart == 1)
 {
 if (fF = 0.0)
-fInterestZ = -fBw;
+fCompoundInterest = -fBw;
 nStart++;
 }
 for (sal_uLong i = nStart; i = nEnd; i++)
 {
 if (fF  0.0)
-fInterestZ += ScGetZw(fInterest, (double)(i-2), fRmz, fBw, 
1.0) - fRmz;
+fCompoundInterest += ScGetZw(fInterest, (double)(i-2), 
fRmz, fBw, 1.0) - fRmz;
 else
-fInterestZ += ScGetZw(fInterest, (double)(i-1), fRmz, fBw, 
0.0);
+fCompoundInterest += ScGetZw(fInterest, (double)(i-1), 
fRmz, fBw, 0.0);
 }
-fInterestZ *= fInterest;
-PushDouble(fInterestZ);
+fCompoundInterest *= fInterest;
+PushDouble(fCompoundInterest);
 }
 }
 }
commit dcda429221ea2a7094835eee792f749a6ae79bc4
Author: Thomas Arnhold tho...@arnhold.org
Date:   Sat Aug 30 10:57:40 2014 +0200

interpr: fPeriodn - fPeriods

Change-Id: I21b76d2d121b27c5b4aeb676948786ab91bff0b7

diff --git a/sc/source/core/tool/interpr2.cxx b/sc/source/core/tool/interpr2.cxx
index 0657007..512e756 100644
--- a/sc/source/core/tool/interpr2.cxx
+++ b/sc/source/core/tool/interpr2.cxx
@@ -1866,14 +1866,14 @@ void 

LINHA PVC PERSONALIZAMOS COM SUA MARCA

2014-08-30 Thread lc2

Seu cliente de e-mail não pode ler este e-mail.
Para visualizá-lo on-line, por favor, remova aqui:
http://www.mailmedrano.com/display.php?M=7810683C=c4c0d6db19ffe5ff084f38f1640dda8eS=268L=98N=4


Para parar de receber nossos
Emails:http://www.mailmedrano.com/unsubscribe.php?M=7810683C=c4c0d6db19ffe5ff084f38f1640dda8eL=98N=268
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: download.lst external/poppler

2014-08-30 Thread Thomas Arnhold
 download.lst|3 ++-
 external/poppler/UnpackedTarball_poppler.mk |1 +
 external/poppler/poppler-0.26.4-std-max.patch.1 |   10 ++
 external/poppler/poppler-notests.patch.1|   10 +-
 external/poppler/poppler-snprintf.patch.1   |3 +--
 external/poppler/poppler-vs2013.patch.1 |7 +++
 6 files changed, 22 insertions(+), 12 deletions(-)

New commits:
commit 686ea7add8f6d56fbc741bda0107603d8cefc9b3
Author: Thomas Arnhold tho...@arnhold.org
Date:   Sat Aug 23 04:06:36 2014 +0200

upgrade to poppler-0.26.4

Change-Id: Ia5c85b8e697491aafc9de4838504226f11480b44
Reviewed-on: https://gerrit.libreoffice.org/11081
Reviewed-by: Thomas Arnhold tho...@arnhold.org
Tested-by: Thomas Arnhold tho...@arnhold.org

diff --git a/download.lst b/download.lst
index af3a23c..e395c05 100644
--- a/download.lst
+++ b/download.lst
@@ -119,7 +119,8 @@ export PAGEMAKER_TARBALL := libpagemaker-0.0.1.tar.bz2
 export PIXMAN_TARBALL := c63f411b3ad147db2bcce1bf262a0e02-pixman-0.24.4.tar.bz2
 export PNG_MD5SUM := 5266905cef49d1224437465ad4d67fd9
 export PNG_TARBALL := libpng-1.5.18.tar.gz
-export POPPLER_TARBALL := 
1cd27460f7e3379d1eb109cfd7bcdb39-poppler-0.22.5.tar.gz
+export POPPLER_MD5SUM := 35c0660065d023365e9854c13e289d12
+export POPPLER_TARBALL := poppler-0.26.4.tar.gz
 export POSTGRESQL_TARBALL := 
c0b4799ea9850eae3ead14f0a60e9418-postgresql-9.2.1.tar.bz2
 export PYTHON_MD5SUM := 803a75927f8f241ca78633890c798021
 export PYTHON_TARBALL := Python-3.3.5.tgz
diff --git a/external/poppler/UnpackedTarball_poppler.mk 
b/external/poppler/UnpackedTarball_poppler.mk
index b69a817..3f9c9f8 100644
--- a/external/poppler/UnpackedTarball_poppler.mk
+++ b/external/poppler/UnpackedTarball_poppler.mk
@@ -17,6 +17,7 @@ $(eval $(call gb_UnpackedTarball_add_patches,poppler,\
external/poppler/poppler-mac-fake.patch.1 \
external/poppler/poppler-nochecknew.patch.1 \
external/poppler/poppler-vs2013.patch.1 \
+   external/poppler/poppler-0.26.4-std-max.patch.1 \
 ))
 
 # vim: set noet sw=4 ts=4:
diff --git a/external/poppler/poppler-0.26.4-std-max.patch.1 
b/external/poppler/poppler-0.26.4-std-max.patch.1
new file mode 100644
index 000..0c5a2c8
--- /dev/null
+++ b/external/poppler/poppler-0.26.4-std-max.patch.1
@@ -0,0 +1,10 @@
+--- a/poppler/Annot.cc
 b/poppler/Annot.cc
+@@ -71,6 +71,7 @@
+ #include DateInfo.h
+ #include Link.h
+ #include string.h
++#include algorithm
+ 
+ #if MULTITHREADED
+ #  define annotLocker()   MutexLocker locker(mutex)
diff --git a/external/poppler/poppler-notests.patch.1 
b/external/poppler/poppler-notests.patch.1
index 7fcfee9..a92ce57 100644
--- a/external/poppler/poppler-notests.patch.1
+++ b/external/poppler/poppler-notests.patch.1
@@ -1,11 +1,11 @@
 poppler-0.22.5/Makefile.in 2013-06-16 18:24:09.0 +0200
-+++ poppler-0.22.5/Makefile.in 2013-07-08 17:10:53.382213184 +0200
-@@ -456,7 +456,7 @@
+--- a/Makefile.in
 b/Makefile.in
+@@ -470,7 +470,7 @@ DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc 
--with-testdatadir=$(TESTDATADIR)
  @BUILD_POPPLER_CPP_TRUE@cpp_subdir = cpp
  @BUILD_POPPLER_CPP_TRUE@cpp_pc_file = poppler-cpp.pc
  @BUILD_UTILS_TRUE@utils_subdir = utils
--SUBDIRS = goo fofi $(splash_subdir) poppler $(utils_subdir) $(glib_subdir) 
test $(qt4_subdir) $(cpp_subdir)
-+SUBDIRS = goo fofi $(splash_subdir) poppler $(utils_subdir) $(glib_subdir) 
$(qt4_subdir) $(cpp_subdir)
+-SUBDIRS = goo fofi $(splash_subdir) poppler $(utils_subdir) $(glib_subdir) 
test $(qt4_subdir) $(qt5_subdir) $(cpp_subdir)
++SUBDIRS = goo fofi $(splash_subdir) poppler $(utils_subdir) $(glib_subdir) 
$(qt4_subdir) $(qt5_subdir) $(cpp_subdir)
  
  # Add CMake buildsystem files here so they get added on make dist
  EXTRA_DIST = README-XPDF poppler.pc.in poppler-uninstalled.pc.in \
diff --git a/external/poppler/poppler-snprintf.patch.1 
b/external/poppler/poppler-snprintf.patch.1
index 389a5b0..aaced8e 100644
--- a/external/poppler/poppler-snprintf.patch.1
+++ b/external/poppler/poppler-snprintf.patch.1
@@ -46,5 +46,4 @@
 +#endif
  
  #include PageLabelInfo.h
- 
-Only in poppler-0.22.5: poppler-snprintf.patch.1
+ #include PageLabelInfo_p.h
diff --git a/external/poppler/poppler-vs2013.patch.1 
b/external/poppler/poppler-vs2013.patch.1
index 4b201f9..ca892df 100644
--- a/external/poppler/poppler-vs2013.patch.1
+++ b/external/poppler/poppler-vs2013.patch.1
@@ -1,12 +1,11 @@
--*- Mode:Diff -*-
 --- poppler/poppler/poppler-config.h.in
 +++ poppler/poppler/poppler-config.h.in
-@@ -164,7 +164,7 @@
+@@ -186,7 +186,7 @@ char * strtok_r (char *s, const char *delim, char 
**save_ptr);
  #define GCC_PRINTF_FORMAT(fmt_index, va_index)
  #endif
  
 -#if defined(_MSC_VER)
 +#if defined(_MSC_VER)  _MSC_VER  1800
- #define fmax(a, b) max(a, b)
- #define fmin(a, b) min(a, b)
+ #define fmax(a, b) std::max(a, b)
+ #define fmin(a, b) std::min(a, b)
  #endif
___

Re: User wants to say thanks

2014-08-30 Thread Tom Meinen
I wanted to add my thank-you also.  I don't have any MacWrite Pro files, but I 
do have Lotus Word Pro ones.  I was extremely disappointed when IBM abandoned 
Lotus Smartsuite.  I did a lot of work in Word Pro and some in Lotus 1-2-3.  I 
very much appreciate the fact that the LibreOffice developers have made it 
possible to open my old files.  If they hadn't, I would have to run Lotus 
Smartsuite under WINE and convert all those files to Word one by one.  Now I 
can open them in LO Writer straight, and there's very little reformatting 
needed.  Thanks for your great work from an enthusiastic user.  

I like LibreOffice better than Microsoft Office.  Even if LibreOffice were a 
paid program and cost the same amount of money as MS Office, I would still use 
LibreOffice.  The person who wrote in about the MacWrite Pro files had a great 
idea: donating.  I intend to do that.  

I also hope to be a future developer.  I'm currently learning C++ but am not 
good enough yet to develop anything substantial yet.  I'll learn little by 
little until I can.  



On Friday, August 29, 2014 11:39 PM, Joel Madero jmadero@gmail.com wrote:
 


Thought I'd pass this along as it meant something to me at least :)

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


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


Re: [Libreoffice-commits] core.git: canvas/source dbaccess/source oox/source reportdesign/source slideshow/source

2014-08-30 Thread Thorsten Behrens
Joerg Sonnenberger wrote:
 Haven't tried, was looking for the minimal change to the existing
 structure.

The proposed change would be even more minimal. ;)

 One thing to keep in mind is that getBufferSurface() creates a
 temporary variable. It doesn't return a reference itself.
 
Sure, it's a temporary. And it shouldn't make a bit of a difference
performance/memory-wise, if you create the local copy manually, or
implicitely in the boost::bind.

Can you quickly try if the proposed change compiles on your side?
Don't want to involuntarily break your build again.

Cheers,

-- Thorsten


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


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

2014-08-30 Thread Miklos Vajna
 writerfilter/source/ooxml/modelpreprocess.py |7 +--
 1 file changed, 1 insertion(+), 6 deletions(-)

New commits:
commit 4e0d84c2c1c47740d9229f18e067ef7523519782
Author: Miklos Vajna vmik...@collabora.co.uk
Date:   Sat Aug 30 13:23:55 2014 +0200

writerfilter: fix namespace of CT_SaveThroughXslt's r:id

We only tried to read id, not r:id.

Change-Id: I35580fda05841d8c8a11b961016ec4be5059c5f8

diff --git a/writerfilter/source/ooxml/modelpreprocess.py 
b/writerfilter/source/ooxml/modelpreprocess.py
index 2f5..a8f232a 100644
--- a/writerfilter/source/ooxml/modelpreprocess.py
+++ b/writerfilter/source/ooxml/modelpreprocess.py
@@ -77,12 +77,7 @@ def preprocess(model):
 if j.localName == attribute and not len(j.getAttribute(name)):
 continue
 
-if j.parentNode.localName == resource:
-# Outside grammar element, don't inherit namespaces defined 
there.
-localNamespaceAliases = defaultNamespaceAliases()
-else:
-# Inside grammar element.
-localNamespaceAliases = grammarNamespaceAliases.copy()
+localNamespaceAliases = grammarNamespaceAliases.copy()
 
 parseNamespaceAliases(j.parentNode, localNamespaceAliases)
 parseNamespaceAliases(j, localNamespaceAliases)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Remaining dialogs ( was: Re: About the location of the Help forbidden word in dialogs)

2014-08-30 Thread Caolán McNamara
On Fri, 2014-08-29 at 11:17 -0300, Olivier Hallot wrote:
 Has to be something else exciting.
 
 If attachments are accepted, here is a printscreen of the dialog.

Grr, blast it. I thought we only have 9 FloatingWindows, turns out we
have 20 additional DockingWindows as well. So all Dialogs and TabPages
are converted, but we have 29 special toplevel windows to take care of.

Next week I'm planning to factor out the dialog layout and builder logic
one step higher to SystemWindow which Dialog inherits from, and which
FloatingWindow inherits from as well. So I'll handle FloatingWindows
next and think about DockingWindows after that.

C.

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


[Libreoffice-commits] core.git: bin/count-todo-dialogs

2014-08-30 Thread Caolán McNamara
 bin/count-todo-dialogs |4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 76ab34ae7a565b7b962967c17b259620f84943f0
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Aug 30 13:10:06 2014 +0100

didn't know about the dockingwindows

Change-Id: I25c1361ed7b87abf4f78fb09aeea65206f7be040

diff --git a/bin/count-todo-dialogs b/bin/count-todo-dialogs
index 340fd56..4c1678b 100755
--- a/bin/count-todo-dialogs
+++ b/bin/count-todo-dialogs
@@ -21,6 +21,7 @@ queryboxes=0
 warningboxes=0
 msgboxes=0
 floatingwindows=`git grep -h FloatingWindow -- *.src|grep -v HelpID|cut -d' ' 
-f2- |sort|uniq|wc -l`
+dockingwindows=`git grep -h DockingWindow -- *.src|grep -v HelpID|grep -v 
hrc|cut -d' ' -f2- |sort|uniq|wc -l`
 
 echo There are $dialogs unconverted dialogs
 echo There are $tabpages unconverted tabpages
@@ -30,8 +31,9 @@ echo There are $queryboxes unconverted queryboxes
 echo There are $warningboxes unconverted warningboxes
 echo There are $msgboxes unconverted msgboxes
 echo There are $floatingwindows unconverted floatingwindows
+echo There are $dockingwindows unconverted dockingwindows
 
-num=$(($floatingwindows))
+num=$(($floatingwindows + dockingwindows))
 echo An estimated additional $num .ui are required
 
 percent=$(($converted * 100 / ($num + $converted)))
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 65675] LibreOffice 4.2 most annoying bugs

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

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

   What|Removed |Added

 Depends on||83217

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


[Bug 65675] LibreOffice 4.2 most annoying bugs

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

--- Comment #216 from m.a.riosv mari...@miguelangel.mobi ---
Added https://bugs.freedesktop.org/show_bug.cgi?id=83217, with cutpast between
different sheets, dependant formulas are modified but without includes the new
sheet to the reference.

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


[Libreoffice-commits] core.git: RepositoryExternal.mk

2014-08-30 Thread Caolán McNamara
 RepositoryExternal.mk |4 
 1 file changed, 4 insertions(+)

New commits:
commit 0d5cc8ce2976b8a69cc4ef1091b0dfe72c15fba2
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Aug 30 15:12:53 2014 +0100

seem to need to link against pthreads on linux for poppler now

Change-Id: Ibca5ad9ff6a3ab28f24ac2554bd0534b0827a24e

diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index 1350449..daaf2fc 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -2589,6 +2589,10 @@ ifeq ($(OS),MACOSX)
 $(call gb_LinkTarget_add_libs,$(1),\
-lobjc \
 )
+else ifeq ($(OS),LINUX)
+$(call gb_LinkTarget_add_libs,$(1),\
+   -pthread \
+)
 else ifeq ($(OS),WNT)
 $(call gb_LinkTarget_use_system_win32_libs,$(1),\
advapi32 \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


RE:Your Inheritance/Contract Fund $5.5M

2014-08-30 Thread Mike Anderson
Hello,
It was resolved and agreed that your Inheritance/Contract Fund $5.5m would be 
released to you on a special method of payment which tag Name Reads SWIFT 
CREDIT CARD.You are adviced to re-comfirm

Your Name,

Address,

Next of kin.

Phone Number to Claim Your Fund.

Mike Anderson
Email-  mikeanderson8...@gmail.com mailto:mikeanderson8...@gmail.com


---
This email is free from viruses and malware because avast! Antivirus protection 
is active.
http://www.avast.com
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] core.git: 2 commits - comphelper/inc comphelper/source include/vcl vcl/source

2014-08-30 Thread Caolán McNamara
 comphelper/inc/pch/precompiled_comphelper.hxx   |1 
 comphelper/source/misc/officeresourcebundle.cxx |4 
 include/vcl/dialog.hxx  |   22 ---
 include/vcl/syswin.hxx  |   49 +--
 vcl/source/window/builder.cxx   |4 
 vcl/source/window/dialog.cxx|  151 +++
 vcl/source/window/paint.cxx |2 
 vcl/source/window/syswin.cxx|  155 +++-
 8 files changed, 216 insertions(+), 172 deletions(-)

New commits:
commit 2602a41f766625e03b961ed2293fd1f2fe851a05
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Aug 30 18:15:59 2014 +0100

coverity#706466 Uncaught exception

and

coverity#706463 Uncaught exception

Change-Id: I77cb09054f00d86cd3e206e44ef4942ddf148a7f

diff --git a/comphelper/inc/pch/precompiled_comphelper.hxx 
b/comphelper/inc/pch/precompiled_comphelper.hxx
index 36ec107..5acedfd 100644
--- a/comphelper/inc/pch/precompiled_comphelper.hxx
+++ b/comphelper/inc/pch/precompiled_comphelper.hxx
@@ -111,7 +111,6 @@
 #include com/sun/star/lang/IllegalArgumentException.hpp
 #include com/sun/star/lang/Locale.hpp
 #include com/sun/star/lang/NotInitializedException.hpp
-#include com/sun/star/lang/NullPointerException.hpp
 #include com/sun/star/lang/XComponent.hpp
 #include com/sun/star/lang/XInitialization.hpp
 #include com/sun/star/lang/XLocalizable.hpp
diff --git a/comphelper/source/misc/officeresourcebundle.cxx 
b/comphelper/source/misc/officeresourcebundle.cxx
index 3fe6b8d..5d9032a 100644
--- a/comphelper/source/misc/officeresourcebundle.cxx
+++ b/comphelper/source/misc/officeresourcebundle.cxx
@@ -21,7 +21,6 @@
 
 #include com/sun/star/resource/XResourceBundle.hpp
 #include com/sun/star/resource/XResourceBundleLoader.hpp
-#include com/sun/star/lang/NullPointerException.hpp
 #include osl/mutex.hxx
 #include osl/diagnose.h
 #include rtl/ustrbuf.hxx
@@ -36,7 +35,6 @@ namespace comphelper
 using com::sun::star::resource::XResourceBundleLoader;
 using com::sun::star::resource::MissingResourceException;
 using ::com::sun::star::uno::XComponentContext;
-using ::com::sun::star::lang::NullPointerException;
 using ::com::sun::star::uno::UNO_QUERY;
 using ::com::sun::star::uno::Exception;
 using ::com::sun::star::uno::Any;
@@ -191,8 +189,6 @@ namespace comphelper
 OfficeResourceBundle::OfficeResourceBundle( const Reference 
XComponentContext  _context, const sal_Char* _bundleBaseAsciiName )
 :m_pImpl( new ResourceBundle_Impl( _context, 
OUString::createFromAscii( _bundleBaseAsciiName ) ) )
 {
-if ( !_context.is() )
-throw NullPointerException();
 }
 
 
commit e8fb86134c6f6052ab6748698039760827fbcd37
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Aug 30 16:58:59 2014 +0100

move layout from dialog to systemwindow

*distant sounds of hammering in basement*

so we can get Floating Windows layout aware
as well without duplicate of dialog layout logic

Change-Id: I063375f2f7d4e5c3bfbfedf55649078d4dbe4139

diff --git a/include/vcl/dialog.hxx b/include/vcl/dialog.hxx
index 361c860..94ea7d6 100644
--- a/include/vcl/dialog.hxx
+++ b/include/vcl/dialog.hxx
@@ -22,7 +22,6 @@
 
 #include tools/solar.h
 #include vcl/dllapi.h
-#include vcl/builder.hxx
 #include vcl/syswin.hxx
 #include vcl/timer.hxx
 
@@ -36,11 +35,8 @@
 struct DialogImpl;
 class VclBox;
 class VclButtonBox;
-class VclContainer;
 
-class VCL_DLLPUBLIC Dialog
-: public SystemWindow
-, public VclBuilderContainer
+class VCL_DLLPUBLIC Dialog : public SystemWindow
 {
 private:
 Window* mpDialogParent;
@@ -52,8 +48,7 @@ private:
 boolmbInClose;
 boolmbModalMode;
 boolmbIsDefferedInit;
-boolmbIsCalculatingInitialLayoutSize;
-Timer   maLayoutTimer;
+
 VclButtonBox*   mpActionArea;
 VclBox* mpContentArea;
 
@@ -65,16 +60,13 @@ private:
 SAL_DLLPRIVATE Dialog  operator= (const Dialog );
 
 DECL_DLLPRIVATE_LINK( ImplAsyncCloseHdl, void* );
-DECL_DLLPRIVATE_LINK( ImplHandleLayoutTimerHdl, void* );
 
 protected:
 using Window::ImplInit;
 SAL_DLLPRIVATE voidImplInit( Window* pParent, WinBits nStyle );
 
-SAL_DLLPRIVATE voidsetPosSizeOnContainee(Size aSize, VclContainer 
rBox);
 public:
 SAL_DLLPRIVATE boolIsInClose() const { return mbInClose; }
-SAL_DLLPRIVATE bool hasPendingLayout() const { return 
maLayoutTimer.IsActive(); }
 SAL_DLLPRIVATE void doDeferredInit(bool bResizable);
 SAL_DLLPRIVATE bool isDeferredInit() const { return mbIsDefferedInit; }
 
@@ -82,6 +74,7 @@ protected:
 explicitDialog( WindowType nType );
 explicitDialog( Window* pParent, const OString rID, const 
OUString rUIXMLDescription, WindowType nType );
 virtual voidDraw( OutputDevice* pDev, const 

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

2014-08-30 Thread rbuj
 xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PalmDB.java 
|4 
 xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbDecoder.java 
|   18 +--
 xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbEncoder.java 
|   14 +--
 xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/ParaStyle.java   
|   39 +++-
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/sxc/DocumentMergerImpl.java
  |4 
 
xmerge/source/xmerge/java/org/openoffice/xmerge/converter/xml/xslt/DocumentMergerImpl.java
 |2 
 
xmerge/source/xmerge/java/org/openoffice/xmerge/merger/diff/IteratorRowCompare.java
|   46 +-
 xmerge/source/xmerge/java/org/openoffice/xmerge/merger/merge/SheetUtil.java
|   17 ++-
 xmerge/source/xmerge/java/org/openoffice/xmerge/util/Debug.java
|2 
 9 files changed, 76 insertions(+), 70 deletions(-)

New commits:
commit e1bf8fff0dfcdc3c6e67c18a4e4c7da97f6e2984
Author: rbuj robert@gmail.com
Date:   Fri Aug 29 13:33:01 2014 +0200

xmerge: fix javadoc errors for JDK 8

Change-Id: Ic8352b7460c36155215d25339650ede40735e65d
Reviewed-on: https://gerrit.libreoffice.org/11189
Reviewed-by: Noel Grandin noelgran...@gmail.com
Tested-by: Noel Grandin noelgran...@gmail.com

diff --git 
a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PalmDB.java 
b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PalmDB.java
index a96400a..643cd64 100644
--- a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PalmDB.java
+++ b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PalmDB.java
@@ -44,12 +44,12 @@ import java.io.UnsupportedEncodingException;
  *  codebName/code, and a corresponding String object codesName/code
  *  that contains characters without the '\0' characters./p
  *
- *  pThe {@link #write write} method is called within the
+ *  pThe codewrite/code method is called within the
  *  {@link org.openoffice.xmerge.converter.palm.PalmDocument#write
  *  PalmDocument.write} method for writing out its data to the 
codeOutputStream/code
  *  object./p
  *
- *  pThe {@link #read read} method is called within the
+ *  pThe coderead/code method is called within the
  *  {@link org.openoffice.xmerge.converter.palm.PalmDocument#read
  *  PalmDocument.read} method for reading in its data from the 
codeInputStream/code
  *  object./p
diff --git 
a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbDecoder.java
 
b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbDecoder.java
index c62837c..02143e7 100644
--- 
a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbDecoder.java
+++ 
b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbDecoder.java
@@ -36,15 +36,15 @@ import java.io.DataInputStream;
  *
  *  pThis decoder has the following assumptions on the PDB file:/p
  *
- *  pol
- *  liThere is only one RecordList section in the PDB./li
- *  liThe codeRecord/code indices in the RecordList are sorted in
- *  order, i.e. the first codeRecord/code index refers to
- *  codeRecord/code 0, and so forth./li
- *  liThe raw codeRecord/code in the codeRecord/code section
- *  are sorted as well in order, i.e. first codeRecord/code
- *  comes ahead of second codeRecord/code, etc./li
- *  /ol/p
+ *  ol
+ *liThere is only one RecordList section in the PDB./li
+ *liThe codeRecord/code indices in the RecordList are sorted in
+ *order, i.e. the first codeRecord/code index refers to
+ *codeRecord/code 0, and so forth./li
+ *liThe raw codeRecord/code in the codeRecord/code section
+ *are sorted as well in order, i.e. first codeRecord/code
+ *comes ahead of second codeRecord/code, etc./li
+ *  /ol
  *
  *  pOther decoders assume these as well./p
  *
diff --git 
a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbEncoder.java
 
b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbEncoder.java
index cdd866f..83f8a27 100644
--- 
a/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbEncoder.java
+++ 
b/xmerge/source/xmerge/java/org/openoffice/xmerge/converter/palm/PdbEncoder.java
@@ -86,7 +86,7 @@ public final class PdbEncoder {
 
 
 /**
- *  pWrite out a PDB into the given codeOutputStream/code./p
+ *  Write out a PDB into the given codeOutputStream/code.
  *
  *  pFirst, write out the header data by using the
  *  codePdbHeader/code codewrite/code method. Next,
@@ -98,12 +98,12 @@ public final class PdbEncoder {
  *  codeRecord/code index info, where each codeRecord/code
  *  index info contains:/p
  *
- *  pul
- *  li4 bytes local offset of the codeRecord/code from the
- *  top of the PDB./li
- *  li1 byte of codeRecord/code attribute./li
- *  li3 bytes unique 

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

2014-08-30 Thread Caolán McNamara
 include/vcl/floatwin.hxx   |1 +
 vcl/source/window/floatwin.cxx |5 +
 2 files changed, 6 insertions(+)

New commits:
commit 835ca0a10d836cb366e940420e5fef2d10229b2b
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Aug 30 20:55:59 2014 +0100

add capability to load FloatingWindows from .ui

in theory anyway

Change-Id: I8230462bdb05e4a71e366c1a92ba388a8ea12c82

diff --git a/include/vcl/floatwin.hxx b/include/vcl/floatwin.hxx
index 45aefab..75dc561 100644
--- a/include/vcl/floatwin.hxx
+++ b/include/vcl/floatwin.hxx
@@ -120,6 +120,7 @@ public:
 
 public:
 explicitFloatingWindow( Window* pParent, WinBits nStyle = 
WB_STDFLOATWIN );
+explicitFloatingWindow(Window* pParent, const OString rID, const 
OUString rUIXMLDescription);
 explicitFloatingWindow( Window* pParent, const ResId );
 virtual ~FloatingWindow();
 
diff --git a/vcl/source/window/floatwin.cxx b/vcl/source/window/floatwin.cxx
index cb5cb78..cda5def 100644
--- a/vcl/source/window/floatwin.cxx
+++ b/vcl/source/window/floatwin.cxx
@@ -164,6 +164,11 @@ FloatingWindow::FloatingWindow( Window* pParent, const 
ResId rResId ) :
 Show();
 }
 
+FloatingWindow::FloatingWindow(Window* pParent, const OString rID, const 
OUString rUIXMLDescription)
+: SystemWindow(pParent, rID, rUIXMLDescription, WINDOW_FLOATINGWINDOW)
+{
+}
+
 void FloatingWindow::ImplLoadRes( const ResId rResId )
 {
 SystemWindow::ImplLoadRes( rResId );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] help.git: helpers/help_hid.lst source/text

2014-08-30 Thread Caolán McNamara
 helpers/help_hid.lst   |2 --
 source/text/shared/01/01010203.xhp |4 ++--
 2 files changed, 2 insertions(+), 4 deletions(-)

New commits:
commit 18f215920e94df8383c1e30f8eb0a93c3e076016
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Aug 30 21:19:33 2014 +0100

update help ids for DLG_SYNC_BTN conversion to .ui

Change-Id: I6b0f0b4425c39189a424793211805b13ad8a0be3

diff --git a/helpers/help_hid.lst b/helpers/help_hid.lst
index 8009a63..ed32034 100644
--- a/helpers/help_hid.lst
+++ b/helpers/help_hid.lst
@@ -3003,7 +3003,6 @@ HID_SVX_MODIFY_TOOLBAR,40051,
 HID_SVX_MODIFY_TOOLBAR_ITEM,40041,
 HID_SVX_SAVE_IN,40042,
 HID_SW_SORT_POSITION,53054,
-HID_SYNC_BTN,53055,
 HID_TABDESIGN_BACKGROUND,38884,
 HID_TABDESIGN_COMMENTCELL,3,
 HID_TABDESIGN_NAMECELL,38886,
@@ -5622,7 +5621,6 @@ 
sw_PushButton_DLG_MAILMERGECHILD_TB_BACK_DLG_MM_SENDMAILS_PB_CLOSE,1972294214,
 
sw_PushButton_DLG_MAILMERGECHILD_TB_BACK_DLG_MM_SENDMAILS_PB_DETAILS,1972294210,
 sw_PushButton_DLG_MAILMERGECHILD_TB_BACK_DLG_MM_SENDMAILS_PB_STOP,1972294213,
 sw_PushButton_DLG_PAGEPREVIEW_PRINTOPTIONS_PB_STANDARD,1411289624,
-sw_PushButton_DLG_SYNC_BTN_BTN_SYNC,1983500820,
 sw_PushButton_TP_OPTCOMPATIBILITY_PAGE_PB_DEFAULT,879350288,
 sw_PushButton_TP_OPTCOMPATIBILITY_PAGE_PB_RESET,879350287,
 sw_RadioButton_DLG_PAGEPREVIEW_PRINTOPTIONS_RB_LANDSCAPE,1411285528,
diff --git a/source/text/shared/01/01010203.xhp 
b/source/text/shared/01/01010203.xhp
index 9bd92a1..8383e46 100644
--- a/source/text/shared/01/01010203.xhp
+++ b/source/text/shared/01/01010203.xhp
@@ -50,9 +50,9 @@
   paragraph l10n=U role=paragraph id=par_id3166410 xml-lang=en-US 
oldref=10ahelp hid=modules/swriter/ui/labeloptionspage/rows 
visibility=visibleEnter the number of rows of labels or business cards that 
you want to have on your page./ahelp/paragraph
   bookmark branch=hid/modules/swriter/ui/labeloptionspage/synchronize 
xml-lang=en-US id=bm_id3159166 localize=false/paragraph role=heading 
level=2 id=hd_id3149237 l10n=U xml-lang=en-US oldref=15Synchronize 
contents/paragraph
   paragraph l10n=U role=paragraph id=par_id3155342 xml-lang=en-US 
oldref=16ahelp visibility=visible 
hid=modules/swriter/ui/labeloptionspage/synchronizeAllows you to edit a 
single label or business card and updates the contents of the remaining labels 
or business cards on the page when you click the emphSynchronize Labels 
/emphbutton./ahelp/paragraph
-  bookmark branch=hid/sw:PushButton:DLG_SYNC_BTN:BTN_SYNC xml-lang=en-US 
id=bm_id3145119 localize=false/paragraph role=heading level=2 
id=hd_id3149164 l10n=U xml-lang=en-US oldref=18Synchronize 
Labels/paragraph
+  bookmark branch=hid/modules/swriter/ui/floatingsync/sync xml-lang=en-US 
id=bm_id3145119 localize=false/paragraph role=heading level=2 
id=hd_id3149164 l10n=U xml-lang=en-US oldref=18Synchronize 
Labels/paragraph
   paragraph xml-lang=en-US oldref=17 l10n=U role=paragraph 
id=par_id3148474The emphSynchronize labels /emphbutton only appears in 
your document if you selected the emphSynchronize contents /emphon 
theemph Options tab /emphwhen you created the labels or business 
cards./paragraph
-  paragraph l10n=U role=paragraph id=par_id3149762 xml-lang=en-US 
oldref=19ahelp hid=SW:PUSHBUTTON:DLG_SYNC_BTN:BTN_SYNC 
visibility=visibleCopies the contents of the top left label or business card 
to the remaining labels or business cards on the page./ahelp/paragraph
+  paragraph l10n=U role=paragraph id=par_id3149762 xml-lang=en-US 
oldref=19ahelp hid=modules/swriter/ui/floatingsync/sync 
visibility=visibleCopies the contents of the top left label or business card 
to the remaining labels or business cards on the page./ahelp/paragraph
   paragraph role=heading level=2 id=hd_id3150504 l10n=U 
xml-lang=en-US oldref=11Printer/paragraph
   paragraph role=paragraph id=par_id3148990 l10n=U xml-lang=en-US 
oldref=12Displays the name of the currently selected printer./paragraph
   bookmark branch=hid/modules/swriter/ui/labeloptionspage/setup 
xml-lang=en-US id=bm_id3155180 localize=false/paragraph role=heading 
level=2 id=hd_id3153127 l10n=U xml-lang=en-US 
oldref=13Setup/paragraph
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: helpcontent2

2014-08-30 Thread Caolán McNamara
 helpcontent2 |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 19cc164100d2da03a0e71fac4b5cee27fa2c34a5
Author: Caolán McNamara caol...@redhat.com
Date:   Sat Aug 30 21:19:33 2014 +0100

Updated core
Project: help  18f215920e94df8383c1e30f8eb0a93c3e076016

diff --git a/helpcontent2 b/helpcontent2
index 45a3b79..18f2159 16
--- a/helpcontent2
+++ b/helpcontent2
@@ -1 +1 @@
-Subproject commit 45a3b79f12c5d057302a4c74977e86fefd299208
+Subproject commit 18f215920e94df8383c1e30f8eb0a93c3e076016
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 65675] LibreOffice 4.2 most annoying bugs

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

Bug 65675 depends on bug 62038, which changed state.

Bug 62038 Summary: SLIDESHOW: particular .eps images not shown
https://bugs.freedesktop.org/show_bug.cgi?id=62038

   What|Removed |Added

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

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


[Bug 65675] LibreOffice 4.2 most annoying bugs

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

Bug 65675 depends on bug 62038, which changed state.

Bug 62038 Summary: SLIDESHOW: particular .eps images not shown
https://bugs.freedesktop.org/show_bug.cgi?id=62038

   What|Removed |Added

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

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


[Libreoffice-commits] core.git: cui/AllLangResTarget_cui.mk cui/source

2014-08-30 Thread Julien Nabet
 cui/AllLangResTarget_cui.mk|1 
 cui/source/inc/cuires.hrc  |   23 
 cui/source/options/optpath.src |  116 +
 3 files changed, 140 insertions(+)

New commits:
commit 880c18f23068a1faf34f36a67161e3b85fffdea7
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sun Aug 31 01:00:56 2014 +0200

Resolves fdo#83278: Missing type of directory at Tools/Options/LODev/Paths

Revert remove unused optpath.src

This reverts commit b11d0a4d2b3b65a9ca06fd1de4ec4502eef2baa9.

Change-Id: I9c5f8c15b36c38e94603186cb9d2bb316bf31674

diff --git a/cui/AllLangResTarget_cui.mk b/cui/AllLangResTarget_cui.mk
index 5e8f673..364fa37 100644
--- a/cui/AllLangResTarget_cui.mk
+++ b/cui/AllLangResTarget_cui.mk
@@ -45,6 +45,7 @@ $(eval $(call gb_SrsTarget_add_files,cui/res,\
 cui/source/options/optinet2.src \
 cui/source/options/optjava.src \
 cui/source/options/optlingu.src \
+cui/source/options/optpath.src \
 cui/source/options/personalization.src \
 cui/source/options/treeopt.src \
 cui/source/tabpages/border.src \
diff --git a/cui/source/inc/cuires.hrc b/cui/source/inc/cuires.hrc
index d307d68..85a1ea3 100644
--- a/cui/source/inc/cuires.hrc
+++ b/cui/source/inc/cuires.hrc
@@ -140,6 +140,29 @@
 #define RID_SVXBMP_LOCK (RID_SVX_START + 118)
 #define RID_SVXSTR_READONLY_CONFIG_TIP  (RID_SVX_START + 1026)
 #define RID_SVXPAGE_BASICIDE_OPTIONS(RID_SVX_START + 209)
+#define RID_SVXSTR_KEY_AUTOCORRECT_DIR  (RID_SVX_START + 1004)  //?
+#define RID_SVXSTR_KEY_DICTIONARY_PATH  (RID_SVX_START + 1010)//?
+#define RID_SVXSTR_KEY_LINGUISTIC_DIR   (RID_SVX_START + 1016)//?
+#define RID_SVXSTR_KEY_USERCONFIG_PATH  (RID_SVX_START + 1023)//?
+#define RID_SVXSTR_KEY_FILTER_PATH  (RID_SVX_START + 1012)//?
+#define RID_SVXSTR_KEY_ADDINS_PATH  (RID_SVX_START + 1003)//?
+#define RID_SVXSTR_KEY_FAVORITES_DIR(RID_SVX_START + 1011)//?
+#define RID_SVXSTR_KEY_PLUGINS_PATH (RID_SVX_START + 1019)//?
+#define RID_SVXSTR_KEY_TEMP_PATH(RID_SVX_START + 1021)//?
+#define RID_SVXSTR_KEY_STORAGE_DIR  (RID_SVX_START + 1020)//?
+#define RID_SVXSTR_KEY_GALLERY_DIR  (RID_SVX_START + 1013)//?
+#define RID_SVXSTR_KEY_HELP_DIR (RID_SVX_START + 1015)//?
+#define RID_SVXSTR_KEY_GLOSSARY_PATH(RID_SVX_START + 1005)//?
+#define RID_SVXSTR_KEY_TEMPLATE_PATH(RID_SVX_START + 1022)//?
+#define RID_SVXSTR_KEY_MODULES_PATH (RID_SVX_START + 1017)//?
+#define RID_SVXSTR_KEY_BACKUP_PATH  (RID_SVX_START + 1006)//?
+#define RID_SVXSTR_KEY_PALETTE_PATH (RID_SVX_START + 1018)//?
+#define RID_SVXSTR_KEY_CONFIG_DIR   (RID_SVX_START + 1009)//?
+#define RID_SVXSTR_KEY_WORK_PATH(RID_SVX_START + 1024)//?
+#define RID_SVXSTR_KEY_GRAPHICS_PATH(RID_SVX_START + 1014)//?
+#define RID_SVXSTR_KEY_BASIC_PATH   (RID_SVX_START + 1007)//?
+#define RID_SVXSTR_KEY_BITMAP_PATH  (RID_SVX_START + 1008)//?
+#define RID_SVXSTR_KEY_USERDICTIONARY_DIR   (RID_SVX_START + 1025)//?
 
 // dialogs
 #define STR_MODIFY  (RID_SVX_START + 336)//from 
optdict.src
diff --git a/cui/source/options/optpath.src b/cui/source/options/optpath.src
new file mode 100644
index 000..95f5203
--- /dev/null
+++ b/cui/source/options/optpath.src
@@ -0,0 +1,116 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the License); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+#include cuires.hrc
+#include sfx2/sfx.hrc
+#include helpid.hrc
+
+String RID_SVXSTR_KEY_CONFIG_DIR
+{
+Text [ en-US ] = Configuration ;
+};
+String RID_SVXSTR_KEY_WORK_PATH
+{
+Text [ en-US ] = My Documents ;
+};
+String RID_SVXSTR_KEY_GRAPHICS_PATH
+{
+Text [ en-US ] = Images ;
+};
+String RID_SVXSTR_KEY_BITMAP_PATH
+{
+Text [ en-US ] = Icons ;
+};
+String RID_SVXSTR_KEY_BASIC_PATH
+{
+Text = BASIC ;
+};
+String RID_SVXSTR_KEY_PALETTE_PATH
+{
+Text [ en-US ] = Palettes ;
+};
+String RID_SVXSTR_KEY_BACKUP_PATH
+{
+Text [ en-US ] = Backups ;
+};
+String RID_SVXSTR_KEY_MODULES_PATH
+{
+Text [ en-US ] = Modules ;
+};
+String 

Re: [Libreoffice-qa] Type of directories missing in Tools - Options - LibreOfficeDev - Paths in 4.4.0.0alpha0+

2014-08-30 Thread Thomas Hackert
Hello Robert, *,
On Freitag, 29. August 2014 20:26 Robert Großkopf wrote:
 while I was configuring my parallel installed Version:
 4.4.0.0.alpha0+ Build ID:
 1298c1d13572c6fbfbabb813b2d6843368c6df1f TinderBox:
 Linux-rpm_deb-x86@45-TDF, Branch:master, Time:
 2014-08-29_00:42:19 (following the instructions from
 https://wiki.documentfoundation.org/Installing_in_parallel) and
 with the en_US lang- as well as helppack under Debian Testing I
 discovered the following:
 
 1. Start LO
 2. Go to Tools – Options, then LibreOfficeDev – Paths
 
 On my system, all of the different type of directories
 (AutoCorrect, AutoText, Backups, etc.) are missing there ... :(
 
 Same here with OpenSUSE 64bit rpm and LO 4.4.0.0alpa from
 2014-08-23

thanks for confirming :) Do you – by any chance – know, if it is 
reported to bugzilla? Otherwise, I will look later this afternoon 
... ;)
Thanks again and have a nice day
Thomas.

-- 
War is much too serious a matter to be entrusted to the military.
-- Clemenceau

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

Re: [Libreoffice-qa] Type of directories missing in Tools - Options - LibreOfficeDev - Paths in 4.4.0.0alpha0+

2014-08-30 Thread Thomas Hackert
Hello Robert, *,
On Freitag, 29. August 2014 20:26 Robert Großkopf wrote:
[reported problem in Tools – Options, then LibreOfficeDev – 
Paths]
 On my system, all of the different type of directories
 (AutoCorrect, AutoText, Backups, etc.) are missing there ... :(
 
 Same here with OpenSUSE 64bit rpm and LO 4.4.0.0alpa from
 2014-08-23

I have reported it to Bugzilla now as #83278 
(https://bugs.freedesktop.org/show_bug.cgi?id=83278). Would you be 
so kind to confirm it, please?
TIA and have a nice evening
Thomas.

-- 
Your own qualities will help prevent your advancement in the world.

___
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] Importance of Footnotes

2014-08-30 Thread Jay Philips
Hi All,

I would appreciate if others could chime in on the importance of
footnotes and also on how often footnotes are used from their experience.

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

-- 
Regards,
Jay Philips
___
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 83249] Sorting causes calc to crash

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83249

raal r...@post.cz changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||r...@post.cz

--- Comment #5 from raal r...@post.cz ---
I can reproduce on WIN7 LO 4.3.1, but can not reproduce with Version:
4.3.2.0.0+
Build ID: a5fedcf7fe56a56475dea484a78971c504e52272
TinderBox: Win-x86@42, Branch:libreoffice-4-3, Time: 2014-08-29_10:16:48

Setting as duplicate of bug 80874

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

-- 
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 83259] EDITING: Inserting an image from file inserts a frame automatically

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83259

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 CC||jmadero@gmail.com

--- Comment #1 from Joel Madero jmadero@gmail.com ---
I don't have the same result with:
Bodhi 2.4 (built on Ubuntu 12.04)
LibreOffice 4.3.1.2 release

Can you try again with the release of 4.3.1 vs. the RC? Also with a fresh
profile: https://wiki.documentfoundation.org/UserProfile

Not going to close as WFM since you're running Windows and I'm not but give it
a try and report back :) Thanks!

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


[Libreoffice-bugs] [Bug 83256] Import support for open image formats - ORA and XCF

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83256

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

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

--- Comment #1 from Joel Madero jmadero@gmail.com ---
Yeah - completely valid request. Marking as NEW.

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


[Libreoffice-bugs] [Bug 83255] get access denied when trying to install

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83255

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 CC||jmadero@gmail.com

--- Comment #1 from Joel Madero jmadero@gmail.com ---
hey Evon - I haven't seen anyone else experiencing similar things. What
operating system are you running? 

I'd suggest trying to install 4.3.1.2 release with a fresh profile (reset your
profile first)

https://wiki.documentfoundation.org/UserProfile


Also you might want to go to the user list to see if anyone there has
additional suggestions.

-- 
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 83253] EDITING: Inserting animated gifs does not work correctly / consistently

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83253

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||jmadero@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from Joel Madero jmadero@gmail.com ---
Nothing is attached. Marking as NEEDINFO. Also for future reports please give
explicit enumerated reproducible steps to begin with. It's much easier for QA
to handle short enumerated steps than digging through paragraphs of writing.
Just keep in mind that we have to deal with thousands of bug reports and we're
all volunteers ;) The easier you make it on us the more we are likely to get
through the bug triage process happy.

Marking as NEEDINFO - once you provide reproducible steps and the attachments
that you stated you attached set to UNCONFIRMED. Thanks!

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


[Libreoffice-bugs] [Bug 83233] EDITING: Copy make slowing because of load document appear every 10 seconds

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83233

--- Comment #3 from ari adrianto ariadria...@gmail.com ---
ALready upgrade the latest (4.3) but no luck.. Load document always appear
when copy mark appear, and makes all become slow.
On Aug 29, 2014 9:12 PM, bugzilla-dae...@freedesktop.org wrote:

  tommy27 ba...@quipo.it changed bug 83233
 https://bugs.freedesktop.org/show_bug.cgi?id=83233
  What Removed Added  CC   ba...@quipo.it

  *Comment # 2 https://bugs.freedesktop.org/show_bug.cgi?id=83233#c2 on
 bug 83233 https://bugs.freedesktop.org/show_bug.cgi?id=83233 from tommy27
 ba...@quipo.it *

 have you tried upgrading to newly release LibO 4.2.6.2?
 using the latest stable version is always recommended

  --
 You are receiving this mail because:

- You reported the bug.



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


[Libreoffice-bugs] [Bug 83251] Master Document: Dialog disappears immediately when click on Insert icon

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83251

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 OS|Windows (All)   |All
 Status|UNCONFIRMED |NEW
   Severity|normal  |minor
   Priority|medium  |low
 CC||jmadero@gmail.com
Version|4.3.1.1 rc  |PreBibisect
 Ever confirmed|0   |1

--- Comment #1 from Joel Madero jmadero@gmail.com ---
Bodhi 2.4.x (built on ubuntu 12.04)
LibreOffice 4.3.1.2 release

Confirmed

Also confirmed on bibisect earliest (so setting version to preBibisect).


Prioritizing:
New
Minor - might slow down professional quality work a bit.
Low - default seems appropriate, probably this was inherited from OOo

-- 
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 81065] PRINTING: Print dialog page size is ignored the first time printing in brochure mode

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81065

--- Comment #4 from Joel Madero jmadero@gmail.com ---
*** Bug 83250 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 81065] PRINTING: Print dialog page size is ignored the first time printing in brochure mode

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81065

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

   Hardware|Other   |All
 OS|Linux (All) |All
 CC||jmadero@gmail.com

--- Comment #5 from Joel Madero jmadero@gmail.com ---
Setting platform to ALL as it's been confirmed on OSX.

-- 
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 83250] PRINTING / FORMATTING: Brochure printing doesn't honor paper size.

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83250

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||jmadero@gmail.com

--- Comment #2 from Joel Madero jmadero@gmail.com ---
Indeed - it's a dupe looks like. Setting the other one to ALL for platform.
Thanks!

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

-- 
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 83248] PRINTING: Single-line text box always printed in black

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83248

Joel Madero jmadero@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from Joel Madero jmadero@gmail.com ---
Can't confirm on 4.3.1.2 release - if it exists in 4.4 it's a recent
regression.

at Mohamed - please attach a document so that we don't have to recreate from
scratch every time. Marking as NEEDINFO - once you attach a document set the
bug to UNCONFIRMED. Keep in mind the stretch on our teams time - the more
information you provide (and test documents) the easier it is for everyone
involved.


Thanks!

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


[Libreoffice-bugs] [Bug 55292] autocorrect does not correct two dashes to en-dash *when dashes are not discreet*

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55292

Owen Genat owen.ge...@gmail.com changed:

   What|Removed |Added

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

--- Comment #65 from Owen Genat owen.ge...@gmail.com ---
On reflection, I am wondering if the root of the problem is given in bug 62923:

 By default in Writer, when two hyphens (--) are set between two words 
 they are converted into an em dash.

This seems somewhat controversial / dubious practice (especially given the
change proposed here) and yet the comments in the code from the related commits
in that bug indicate:

editeng/source/misc/svxacorr.cxx
 // Replace [A-z0-9]--[A-z0-9] double dash with emDash or enDash
 // [0-9]--[0-9] double dash always replaced with enDash
 // Finnish and Hungarian use enDash instead of emDash.

source/text/shared/01/06040100.xhp
 If the hyphens are there between digits or the text has the Hungarian 
 or Finnish language attribute, then two hyphens in the sequence A--B 
 are replaced by an en-dash instead of an em-dash.commenti71908/comment

Why? I would say many more countries than just Finland and Hungary are affected
by this. As I pointed out in comment 49: Some publishers, universities, and
wikis use -- for em-dash, but there is a specific reason why. Here are a
couple of prominent examples:

APA 6th Ed., §4.13 Hyphenation:

 If an em dash is not available on your keyboard, use two hyphens with 
 no space before or after. [...] if the en dash is not available on 
 your keyboard, [use] a single hyphen.

Chicago Manual of Style 16th Ed., §2.13 Dashes:

 For an em dash [...] type two hyphens (leave no space on either side). 
 [...] authors can generally avoid the en dash and use hyphens instead.

In other words, those guides that do indicate this practice tend to use a
SINGLE hyphen for en dash. We therefore have either:

a--b = em dash
a-b  = en dash

...or:

a---b = em dash
a--b  = en dash

In both cases, there are distinct differences and there is NEVER a suggestion
of using a--b to imply BOTH em dash and en dash, which is what we seem to have
at present. It is better to have completely different patterns for replacement
of different characters. I would also like to mention that these types of
wildcard replacement entries should be at user discretion i.e., not included by
default as this makes it easier for locale-specific customisations to be made
as necessary.

Given what I am seeing and the questions I have posed in this comment I am
setting the status to REOPENED.

-- 
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 83264] FILEOPEN: Not a bug or an enhancement request -- a thank you

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83264

--- Comment #2 from Gerry gerry.trep...@googlemail.com ---
+1 Thanks a lot for LibreOffice! I use LibreOffice everyday and use it with
with big and heavy-duty documents and I love LibreOffice. There are bugs, of
course (which I regularly post), but overall it is an excellent office suite.
Thanks!

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


[Libreoffice-bugs] [Bug 83252] Wrong punctuation direction after Chinese characters in vertical layout

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83252

Cheng-Chia Tseng pswo10...@gmail.com changed:

   What|Removed |Added

 OS|All |Linux (All)

-- 
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 67615] Fields in table-control of a form show '0' instead of text, when GUI-language isn't English

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=67615

--- Comment #19 from rob...@familiegrosskopf.de ---
(In reply to comment #18)

 (Bytheway: when I did this testings, I found a way to immidiatly crash LO:
 right-click in header of grid-control or -table-view for the
 properties/format it will crash LO - works with this sample-odb aswell)

This is:
https://bugs.freedesktop.org/show_bug.cgi?id=82413
Fixed for 4.3.1

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


[Libreoffice-bugs] [Bug 62923] En dash (not em) should replace two hyphens when inserted between numbers

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62923

--- Comment #16 from Owen Genat owen.ge...@gmail.com ---
(In reply to comment #15)
 Basically, I think language-specific exceptions to the autocorrection scheme
 are far from an optimal solution. 

I generally agree.

 The A--B rule in itself is quite mechanical and straightforward

Mechanical yes. Straightforward, less so. Refer:

https://bugs.freedesktop.org/show_bug.cgi?id=55292#c65

The challenge here is what pattern pair to use for dash AutoCorrect replacement
i.e., whether to use -- for em dash and neglect en dash, or use --- for em dash
and -- for en dash. The former pair is supported by prominent style guides (APA
and Chicago), the latter by TeX and wiki notation, yet the latter is a much
better solution in terms of AutoCorrection.

 ... whether it is applicable to a particular language or typographical
 tradition, is a different matter. 

Again, generally agreed and there may be a need to at least leave wildcard
entries out/off by default in order to cater for this. This is eventually a
l10n issue.

 the en dash can also occur between the names of months, as in 
 June--July 1967. Therefore, users will still need an alternative 
 way to insert the en dash between two words.

This example and all the following ones in the list depend on pattern
recognition i.e., a unique pattern to indicate whether em dash or en dash is to
be used. The TeX / wiki notation solves exactly this issue.

 If you want to use the unspaced em dash for one function and the unspaced en
 dash for another, you need to be able to indicate whether it is the em dash
 or the en dash that is wanted in a specific context. This cannot rely on
 simply replacing double hyphens mechanically. 

This is further argument for a distinct pattern. Spacing or no spacing, it is
the distinct nature of the original pattern than matters.

-- 
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 83252] Wrong punctuation direction after Chinese characters in vertical layout

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83252

--- Comment #3 from Cheng-Chia Tseng pswo10...@gmail.com ---
Tested on Windows machine with the example file today. Cannot reproduce either.

The issue seems to be only existed on Linux platform... :S

-- 
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 83265] New: Missing formatcode in math

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83265

  Priority: medium
Bug ID: 83265
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Missing formatcode in math
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: drac5...@uni-landau.de
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.3.1.2 release
 Component: Formula Editor
   Product: LibreOffice

After upgrading to version 4.3.1.2 there are some missing formatcodes in Libre
Office Math (for ex. %phi). I didn't finde out all of them. 
You can put them into the formular editor using the special character dialogue.
But this is annoying.
I tryed the Linux Ubuntu version and the Windows version.

-- 
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 83241] Failing unit test sw_ooxmlimport building master on OSX 10.9.4 / Xcode 5.1.1

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83241

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

   What|Removed |Added

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

--- Comment #1 from Matthew Francis fdb...@neosheffield.co.uk ---
Something is going wrong in SwTxtAdjuster::CalcFlyAdjust

It does:

1) SwMarginPortion *pLeft = pCurrent-CalcLeftMargin();

2) CalcRightMargin( pCurrent );

3) SwLinePortion *pPos = pLeft-GetPortion();


But within (2), a SwMarginPortion which was created under CalcLeftMargin() is
destructed, leaving (3) to be a use-after-free

-- 
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 83252] Wrong punctuation direction after Chinese characters in vertical layout

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83252

Cheng-Chia Tseng pswo10...@gmail.com changed:

   What|Removed |Added

Version|4.1.3.2 release |4.2.6.2 release

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


[Libreoffice-bugs] [Bug 83241] Failing unit test sw_ooxmlimport building master on OSX 10.9.4 / Xcode 5.1.1

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83241

--- Comment #3 from Matthew Francis fdb...@neosheffield.co.uk ---
Created attachment 105453
  -- https://bugs.freedesktop.org/attachment.cgi?id=105453action=edit
(2) Call trace showing the destruction of the errant object

-- 
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 83241] Failing unit test sw_ooxmlimport building master on OSX 10.9.4 / Xcode 5.1.1

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83241

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

   What|Removed |Added

 Attachment #105426|0   |1
is obsolete||

--- Comment #2 from Matthew Francis fdb...@neosheffield.co.uk ---
Created attachment 105452
  -- https://bugs.freedesktop.org/attachment.cgi?id=105452action=edit
(1) Call trace showing the creation of the errant object

-- 
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 83241] Failing unit test sw_ooxmlimport building master on OSX 10.9.4 / Xcode 5.1.1

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83241

--- Comment #4 from Matthew Francis fdb...@neosheffield.co.uk ---
Created attachment 105454
  -- https://bugs.freedesktop.org/attachment.cgi?id=105454action=edit
(3) Backtrace from the use-after-free of the errant object

-- 
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 83252] Wrong punctuation direction after Chinese characters in vertical layout

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83252

--- Comment #4 from Cheng-Chia Tseng pswo10...@gmail.com ---
I found that copy-paste will also copy the the attribute of text direction,
so do not copy the Chinese punctuations from Steps to reporduce section
directly. 

Please just use the example odt file to see the issue directly.

Reproducible on Linux platform.
Not reporducible on Windows platform.

Mac system is not tested.

-- 
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 83241] Failing unit test sw_ooxmlimport building master on OSX 10.9.4 / Xcode 5.1.1

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83241

--- Comment #5 from Matthew Francis fdb...@neosheffield.co.uk ---
(One blank line left in each of the above traces to show where the common
ancestor of all three is)

-- 
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 37859] Odb data copied to Calc showed wrong encoding in Windows

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37859

--- Comment #18 from Cheng-Chia Tseng pswo10...@gmail.com ---
Bug existed, reproducible on 4.3.0.

-- 
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 37859] Odb data copied to Calc showed wrong encoding in Windows

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37859

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

   What|Removed |Added

 Status|NEEDINFO|NEW

--- Comment #19 from Julien Nabet serval2...@yahoo.fr ---
Cheng-Chia: Thank you for your feedback, put it back to NEW.

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


[Libreoffice-bugs] [Bug 48066] SVG: stroke-linecap=round and stroke-miterlimit=1 are ignored

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48066

Owen Genat owen.ge...@gmail.com changed:

   What|Removed |Added

Summary|[SVG]   |SVG: stroke-linecap=round
   |stroke-linecap=round and  |and stroke-miterlimit=1
   |stroke-mitterlimit=1 are  |are ignored
   |ignored |

--- Comment #4 from Owen Genat owen.ge...@gmail.com ---
Minor summary edit to correct parameter name (was not showing up in searches
for miter).

-- 
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 39674] find / fix all German spellings in internal APIs

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39674

Commit Notification libreoffice-comm...@lists.freedesktop.org changed:

   What|Removed |Added

 Whiteboard|EasyHack DifficultyBeginner |EasyHack DifficultyBeginner
   |SkillScript target:4.1.0|SkillScript target:4.1.0
   |target:4.2.0|target:4.2.0 target:4.4.0

--- Comment #16 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Jennifer Liebel committed a patch related to this issue.
It has been pushed to master:

http://cgit.freedesktop.org/libreoffice/core/commit/?id=5605a36a31081875087ff5cb28b84790845ba695

fdo#39674: Improved translation



The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

-- 
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 39674] find / fix all German spellings in internal APIs

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39674

--- Comment #17 from Commit Notification 
libreoffice-comm...@lists.freedesktop.org ---
Jennifer Liebel committed a patch related to this issue.
It has been pushed to master:

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

fdo#39674: translated German to English



The patch should be included in the daily builds available at
http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More
information about daily builds can be found at:
http://wiki.documentfoundation.org/Testing_Daily_Builds
Affected users are encouraged to test the fix and report feedback.

-- 
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 83267] New: VIEWING: Dropdowns in Standard toolbar follows scaling with delay

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83267

  Priority: medium
Bug ID: 83267
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: VIEWING: Dropdowns in Standard toolbar follows scaling
with delay
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: libobugcrunc...@gmail.com
  Hardware: Other
Whiteboard: BSA PossibleRegression
Status: UNCONFIRMED
   Version: 4.3.1.2 release
 Component: UI
   Product: LibreOffice

Created attachment 105457
  -- https://bugs.freedesktop.org/attachment.cgi?id=105457action=edit
Screenshot showing wrong dropdwon area size

Problem description: 


Steps to reproduce:
(UI scaling should be 100% and Find Toolbar Locked
from last session)
1. Open empty new writer document with 4.4.0.0
2. Menu {Tools ► Options ► View ► Scaling = 200%  ► ok}
   » UI elements size increases, looks horribly ugly
   BTW: is lost limitation to scaling = 130% intended?
3.  Menu {Window ► New}
   » UI elements now look more or less fine, but 
 Bug: 
 Character size dropdown in Standard toolbar still has old
 small size 100%
4. Menu {Tools ► Options ► View ► Scaling = 80%  ► ok}
   » UI elements size decrease
Bug: Dropdowns will have kept old 200% size
5.  Menu {Window ► New}
Bug: Everything in UI has become smaller except 
 Character Size dropdown
6. Menu {Tools ► Options ► View ► Scaling = 81%  ► ok}
   » Now also Character size dropdown will have a small size

Already broken in 4.3, seemed more or less ok with 4.2


Operating System: Windows 7
Version: 4.3.1.2 release
Last worked in: 4.2.6.2 release

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


[Libreoffice-bugs] [Bug 83243] FORMATTING: can not recognize cell format automatically. Worse and worse. : ( I´m thinking back to MS office.

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83243

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

   What|Removed |Added

 Resolution|NOTABUG |WORKSFORME

--- Comment #5 from Adolfo Jayme f...@libreoffice.org ---
Thanks for your feedback, Kevin. In case you are able to reproduce a bug
consistently, please provide the steps we should follow to reproduce and test
it ourselves. We’ll be glad to help you out.

-- 
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 82969] MENU: Addition of AutoSpellcheck to Tools menu

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=82969

Samuel Mehrbrodt s.mehrbr...@gmail.com changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |s.mehrbr...@gmail.com
   |desktop.org |
 CC||s.mehrbr...@gmail.com

-- 
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 83268] New: EDITING: Bug in Bullets and Numbering - Ouline

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83268

  Priority: medium
Bug ID: 83268
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: EDITING: Bug in Bullets and Numbering - Ouline
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: petruciu...@yahoo.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.3.1.2 release
 Component: Writer
   Product: LibreOffice

Bug in Bullets and Numbering - Ouline


Operating System: Windows 7
Version: 4.3.1.2 release

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


[Libreoffice-bugs] [Bug 83261] CONFIGURATION: Option for Print... button on toolbar is no longer there

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83261

--- Comment #3 from Ian Park ian.d.chalmers.p...@gmail.com ---
Apologies for going off at half-cock over this... I did a bit more digging, and
found that I *can* add the Print... button to the toolbar. After going to
View|Toolbars|Customize...|Toolbars, select Add... then select the Documents
category, and scroll down through the Commands list to find Print. Click on
Add; this will put the Print command button on the toolbar. Close the Add
dialogue box and use the move up/move down arrows to move the Print button to
where you want it. Worked fine, it's just a bit less straightforward than it
used to be. I'll mark the bug as Resolved; apologies again for rushing to
file the report before I'd investigated as thoroughly as I should.

-- 
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 73071] Other: Sidebar: Styles are missing from Properties

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73071

--- Comment #16 from Mirek2 maz...@gmail.com ---
Created attachment 105458
  -- https://bugs.freedesktop.org/attachment.cgi?id=105458action=edit
iWork Pages: Formatting sidebar

-- 
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 73071] Other: Sidebar: Styles are missing from Properties

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73071

--- Comment #17 from Mirek2 maz...@gmail.com ---
Created attachment 105459
  -- https://bugs.freedesktop.org/attachment.cgi?id=105459action=edit
iWork Pages: Style picker

-- 
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 73071] Other: Sidebar: Styles are missing from Properties

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73071

--- Comment #18 from Mirek2 maz...@gmail.com ---
Created attachment 105460
  -- https://bugs.freedesktop.org/attachment.cgi?id=105460action=edit
iWork Pages: Style options

-- 
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 83267] VIEWING: Dropdowns in Standard toolbar follow scaling with delay

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83267

Bugcruncher libobugcrunc...@gmail.com changed:

   What|Removed |Added

Summary|VIEWING: Dropdowns in   |VIEWING: Dropdowns in
   |Standard toolbar follows|Standard toolbar follow
   |scaling with delay  |scaling with delay

-- 
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 73071] Other: Sidebar: Styles are missing from Properties

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73071

--- Comment #19 from Mirek2 maz...@gmail.com ---
Created attachment 105461
  -- https://bugs.freedesktop.org/attachment.cgi?id=105461action=edit
iWork Pages: Chart styles

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


[Libreoffice-bugs] [Bug 57297] MAILMERGE: Mail Merge Wizard won't proceed past selecting an address book

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57297

Rod rios...@gmail.com changed:

   What|Removed |Added

   Hardware|Other   |x86-64 (AMD64)
 OS|All |Linux (All)
Version|3.5.4 release   |4.3.1.2 release

--- Comment #6 from Rod rios...@gmail.com ---
+1

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


[Libreoffice-bugs] [Bug 73071] Other: Sidebar: Styles are missing from Properties

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=73071

--- Comment #20 from Mirek2 maz...@gmail.com ---
I have to say that, out of all the style UI implementations I know, iWork has
the best approach and it doesn't leave out any style category. (See
attachments.) I'll run through it here:

Hierarchy
=
The style hierarchy is well-represented in the sidebar.
Paragraph styles are up at the top, as they pertain to both paragraph
properties and character properties.
Character styles are presented within the character-related section, but as the
last element -- that makes sense given that the section applies to paragraph
styles as well and font and size should generally only be set in paragraph
styles (for good typography).
List styles serve as the titular element of the list category and custom
bullets are relegated to a hidden section.

Quick access

All style drop-downs are quickly accessible. The most important one, the
Paragraph style picker, is big and visually distinctive, thus very easy to
target.
More importantly, styles can be assigned keyboard shortcuts, which potentially
makes them as quick to apply as hard formatting.
Lastly, it's also nice to be able to edit ALL the style properties from within
the sidebar without having to go through dialogs.

Quick edits
===
Hard-coded formatting is indicated by an asterisk after the style name. Along
with that, a large Update button appears next to the style in the drop-down,
in the case of Paragraph styles right in the sidebar as well. There's also an
Update style option in each style's drop-down menu. (The behavior is very
similar to Google Docs.)

Quick creation
==
There's also a button for creating a new style based on the selection in each
style picker.

Presentation

iWork presents styles based on their properties. Highly graphical and visually
distinguishable styles (e.g. chart, shape, and table styles) are presented in a
grid, while the harder-to-distinguish text-based styles are presented as a
list.

Context
===
Styles appear as they're needed. Not all headings are shown by default -- only
once Heading 3 is used does Heading 4 appear.


Anyway, I'm not proposing to blatantly copy iWork's implementation (which
itself takes a lot of ideas from Google Docs) -- that's not even within the
scope of this bug. However, it's important that we consider these areas and
strive to rival or exceed iWork in all of them.

Also, as I said before, the goal for the Properties section of the sidebar is
to replace formatting dialogs and include all of the various formatting
options, so leaving out Character styles is not an option.

-- 
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 83232] FILESAVE: Crash saving DOC format

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83232

foss f...@openmailbox.org changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from foss f...@openmailbox.org ---
Or try LO 4.3.x
https://www.libreoffice.org/download/libreoffice-fresh/

NEEDINFO until further notice. Should the bug persist with both latest LO and
reset user-profile, please back to UNCONFIRMED.

-- 
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 83222] Other: A better UI / theme

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83222

--- Comment #5 from foss f...@openmailbox.org ---
Switch to Sifr Icons for a modern look. That helps.

-- 
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 83269] LOCALHELP: Write help page for Calc - Data - Form...

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83269

Olivier Hallot olivier.hal...@documentfoundation.org changed:

   What|Removed |Added

 Blocks||80430

-- 
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 80430] LOCALHELP: Features x Documentation gap meta issue

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=80430

Olivier Hallot olivier.hal...@documentfoundation.org changed:

   What|Removed |Added

 Depends on||83269

-- 
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 83269] New: LOCALHELP: Write help page for Calc - Data - Form...

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83269

  Priority: medium
Bug ID: 83269
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: LOCALHELP: Write help page for Calc - Data - Form...
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: olivier.hal...@documentfoundation.org
  Hardware: Other
Status: UNCONFIRMED
   Version: unspecified
 Component: Documentation
   Product: LibreOffice

Write help page for Calc - Data - Form

Insert help button in dialog

-- 
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 80430] LOCALHELP: Features x Documentation gap meta issue

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=80430

--- Comment #13 from Olivier Hallot olivier.hal...@documentfoundation.org ---
added bug83269: write help page for Calc - Dat - Form...

-- 
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 69932] VIEWING: Libreoffice 4.x.x flicker

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69932

--- Comment #12 from foss f...@openmailbox.org ---
Is LO 4.3.1 any better? If not experienced any flickering here with Ubuntu
14.04.

-- 
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 83210] Full screen bug

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83210

--- Comment #3 from tommy27 ba...@quipo.it ---
finally, is the bug present in 4.2.6.2 or not?
it it works the status should be RESOLVED

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


[Libreoffice-bugs] [Bug 62923] En dash (not em) should replace two hyphens when inserted between numbers

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62923

--- Comment #17 from tommy27 ba...@quipo.it ---
(In reply to comment #16)
 (In reply to comment #15)
 ...
 
  the en dash can also occur between the names of months, as in 
  June--July 1967. Therefore, users will still need an alternative 
  way to insert the en dash between two words.
 
 This example and all the following ones in the list depend on pattern
 recognition i.e., a unique pattern to indicate whether em dash or en dash is
 to be used. The TeX / wiki notation solves exactly this issue.
 

IMHO it's almost impossible to set rules to differentiate all those scenarios
in all different languages where the -- has to turn into an en- or em-dash

I think the best choice is to modify he replace dashes option and set A--B
en-dash and A---B to em-dash

-- 
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 69932] VIEWING: Libreoffice 4.x.x flicker

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=69932

--- Comment #13 from Robinson Tryon (qubit) qu...@runcibility.com ---
(In reply to comment #12)
 Is LO 4.3.1 any better? If not experienced any flickering here with Ubuntu
 14.04.

I'm still seeing some (small) flickering issues with 4.3.1.1 on Ubuntu 14.04:

(In reply to comment #1)
 Testing on Ubuntu 12.04.3, I see icon repaint flicker whenever I resize the
 main window of LibreOffice in *both* LO 4.1.2.3 and LO 3.5.7.2.

For comparison, I do not see any flicker in the icons of Firefox 31 when I
resize a browser window.

-- 
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 83272] New: FILEOPEN: Line style generally not preserved by vector graphics import

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83272

  Priority: medium
Bug ID: 83272
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILEOPEN: Line style generally not preserved by vector
graphics import
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: h...@breuer.org
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.2.4.2 release
 Component: Drawing
   Product: LibreOffice

Created attachment 105465
  -- https://bugs.freedesktop.org/attachment.cgi?id=105465action=edit
zip file containing render-test.* exhibiing the line style problem

All format tests with render-test from Dia lead to a loss of line style
information. Import via PDF, SVG, CGM, WMF, WPG file and copypaste per GDI
Metafile all lead to (almost) solid lines no matter if the input line was
dotted, dashed or something more complex. With SVG it seems to be an issue with
wrongly scaled dash length.

My tests with other applications supporting these formats let me assume a
general LibreOffice problem.

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


[Libreoffice-bugs] [Bug 83273] New: FILEOPEN: CGM is treated as presentation format instead of as a drawing

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83273

  Priority: medium
Bug ID: 83273
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILEOPEN: CGM is treated as presentation format
instead of as a drawing
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: h...@breuer.org
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.2.4.2 release
 Component: filters and storage
   Product: LibreOffice

Trying to open render-test.cgm in Draw imports the file to Impress. At least
for files containing only single CGM picture it should be possible to open it
in Draw.

-- 
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 81603] PRINTING: in some case collate option doesn't work in booklet mode

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81603

Paolo Benvenuto paolobe...@gmail.com changed:

   What|Removed |Added

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

--- Comment #3 from Paolo Benvenuto paolobe...@gmail.com ---
Apparently fixed in 4.3.1.2

-- 
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 83217] Reference of cell in source worksheet not updated correctly after moving dependent cell to another worksheet

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83217

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

   What|Removed |Added

 OS|Linux (All) |All
 Status|UNCONFIRMED |NEW
 CC||mari...@miguelangel.mobi
 Blocks||65675
 Ever confirmed|0   |1

--- Comment #2 from m.a.riosv mari...@miguelangel.mobi ---
Reproducible for me in Win7x64 with:
4.2.0.4 Build ID: 05dceb5d363845f2cf968344d7adab8dcfb2ba71
4.2.7.0.0+ Build ID: 539f5b5f7dfc1168c4a6b826bfb18362c80fb424
   TinderBox: Win-x86@42, Branch:libreoffice-4-2, Time: 2014-08-29_13:56:53
4.3.2.0.0+ Build ID: a5fedcf7fe56a56475dea484a78971c504e52272
   TinderBox: Win-x86@42, Branch:libreoffice-4-3, Time: 2014-08-29_10:16:48
4.4.0.0.alpha0+ Build ID: f5aeaa3845ae794a6320f082b1354f946d96cec1
   TinderBox: Win-x86@42, Branch:master, Time: 2014-08-29_01:36:17

Regression from:
4.1.6.2 Build ID: 40ff705089295be5be0aae9b15123f687c05b0a

The issue is reproducible with dragdrop and with cutpaste.
Seems the dependant formula is adapted but without add the new sheet in the
reference.

Added to mab 4.2.

-- 
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 65675] LibreOffice 4.2 most annoying bugs

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

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

   What|Removed |Added

 Depends on||83217

-- 
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 65675] LibreOffice 4.2 most annoying bugs

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=65675

--- Comment #216 from m.a.riosv mari...@miguelangel.mobi ---
Added https://bugs.freedesktop.org/show_bug.cgi?id=83217, with cutpast between
different sheets, dependant formulas are modified but without includes the new
sheet to the reference.

-- 
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 83275] New: FILEOPEN: VDX import just throws general I/O error

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83275

  Priority: medium
Bug ID: 83275
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILEOPEN: VDX import just throws general I/O error
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: h...@breuer.org
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.2.4.2 release
 Component: Drawing
   Product: LibreOffice

Created attachment 105469
  -- https://bugs.freedesktop.org/attachment.cgi?id=105469action=edit
render-test.vdx generated by Dia master giving generic I/O error

Loading render-test.vdx gnerated by Dia into Draw gives general I/O error when
inline images are part of the file. This is caused by additional whitespace
after the base64 encoded data of ForeignData.
Microsoft Visio Viewer 2010 handles the same file just fine.

I'll probably add a work-around to Dia to avoid this specific problem.

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


[Libreoffice-bugs] [Bug 83117] TOOLBAR: Addition of 'insert footnote' button to standard toolbar

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83117

--- Comment #5 from Cor Nouws c...@nouenoff.nl ---
(In reply to comment #4)

 Unfortunately, the OOo statistics only tracked the click throughs users made
 and doesnt provide what percentage of documents used a feature over the
 others. If i had to put a number to the usage of footnotes, i would likely
 say that 75 to 90 percent of documents i've seen have footnotes in it, as
 its the most basic means of referencing. I've seen it used more than page
 breaks (number 4) and drawn lines (number 5).

So then it looks as a combination of numbers and subjective/personal
information.
In the end we don't have enough numbers, and if we would, we still could not go
blind just on those, so human interpretation and intelligence is always needed
and thus gathering opinions and listening to those.
It would not be handy to give the impression that the available numbers are
enough and decisive ;)

From my experience I would expect that less then 20% of document has foot/end
notes..

Under View  Toolbars there is the Insert one. Offers a great set of icons for
insert functions. I would expect that is the place to go.

-- 
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 80650] lower case greek alphabet missing in localized Math symbol table

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=80650

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

   What|Removed |Added

 CC||drac5...@uni-landau.de

--- Comment #27 from Jacques Guilleron guillero...@aol.com ---
*** Bug 83265 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 81603] PRINTING: in some case collate option doesn't work in booklet mode

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=81603

Paolo Benvenuto paolobe...@gmail.com changed:

   What|Removed |Added

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

--- Comment #4 from Paolo Benvenuto paolobe...@gmail.com ---
I was wrong: still present in 4.3.1.2

-- 
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 83265] Missing formatcode in math

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83265

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |DUPLICATE
 CC||guillero...@aol.com

--- Comment #1 from Jacques Guilleron guillero...@aol.com ---
Thank you for the report.

This was however previously reported in 
Bug 80650 - lower case greek alphabet missing in localized Math symbol table 
where you can find also a workaround.
I set Status to Duplicate.

Jacques

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

-- 
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 83263] FILESAVE: Corrupted database file when saving

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83263

--- Comment #3 from Rainer Rillke rainerril...@hotmail.com ---
(In reply to comment #2)
 Please understand that our goal is to reproduce problems so that we can
 diagnose what went wrong - just saying this happened doesn't give us
 anything to reproduce by.

For this reason, I attached the corrupted odb file. I guess someone with
sufficient knowledge of this file format can very easily find out the reason it
opens now with writer instead of base. So what does it mean if it starts with
writer? That the zip file was not fully written or that some file inside the
archive is corrupt. Note that the more information you I have, I will me more
likely to get an idea how to reproduce it.

Apart from that, I still suggest to add a warning to the UI on first use that
base is not stable/ and or always create backups of the whole odb file *by
default*. This seems to be justified as a query for corrupt base files
https://bugs.freedesktop.org/buglist.cgi?order=Importancelist_id=462365short_desc=corruptquery_format=advancedbug_status=UNCONFIRMEDbug_status=NEWbug_status=ASSIGNEDbug_status=REOPENEDbug_status=RESOLVEDbug_status=VERIFIEDbug_status=CLOSEDbug_status=NEEDINFObug_status=PLEASETESTshort_desc_type=allwordssubstrcomponent=Databasecomponent=Libreofficeproduct=LibreOffice
returned 36 bugs, the majority of them created less than 12 months ago. Given
that base is certainly less extensively used than writer or calc, I bet this is
enough evidence.

Please note that some bugs are inherently hard to reproduce (see bug 75717 for
example), if they for example need a complex chain of actions in advance to
enter in corrupt state, or time-dependent bugs, e.g. only happening on high CPU
load by other programs, etc.

Joel, considering the bug's description, can you recommend me a tool assisting
me detecting whether libre office enters into a broken state (e.g. buffer
overflows, other debugging tools and information)? BTW, reading Bug 60880#c10
it seems to me that this message could be improved linking to those tools able
to assist debugging LO for newcomers. Do you recommend me filing bugs like that
in future, even if I am unable to reproduce? I just wonder whether it's worth
the efforts, OTH I think it's important to somehow track the occurrences of
issues like that?

Seeing other bug reports about corrupted files, I'd like to mention that my
file system otherwise works well. The file was located on a local ntfs system;
the drive is a relatively new SSD.

-- 
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 83276] New: Incorrect Formulae After Sorting

2014-08-30 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=83276

  Priority: medium
Bug ID: 83276
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Incorrect Formulae After Sorting
  Severity: critical
Classification: Unclassified
OS: Windows (All)
  Reporter: dmdcare...@care2.com
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.3.1.2 release
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 105470
  -- https://bugs.freedesktop.org/attachment.cgi?id=105470action=edit
Example for Incorrect Formulae After Sorting

Windows 7 Home Premium SP1

Sorting data to which formulae refer results in incorrect formulae.

The attachment contains a worksheet with three columns: rank, organisation
contacted, and number of contacts.  The third and subsequent rows in the rank
column contain a formula to determine an entry's rank and when the list needs
re-sorting.

Sorting takes places on the organisation contacted and number of contacts
columns based on the descending number of contacts and the ascending
organisation contacted.

Change the number of contacts in any row from three onwards to a higher number
than one or more of the entries above the chosen row.  The rank column heading
changes to Re-sort and the chosen row displays the same text instead of a
ranking number (or a blank).

Highlight the organisation contacted and number of contacts headings and the
data, select Data, Sort... and click OK.  When the data is sorted the text
Re-sort is still displayed in the chosen row as the formula in the chosen row
now refers to the new position of the organisation contacted.

I believe, but am not sure, sorting in version 4.3 resulted in the formula
referring to the chosen row, however, that was definitely the case in 4.2 (and
earlier) releases.

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