[PATCH] Add back subsequencecheck targets accidentally removed ...

2013-03-10 Thread Korrawit Pruegsanusak (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2630

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/30/2630/1

Add back subsequencecheck targets accidentally removed ...

... in c95e3fb64695cedfa40bfe5472879ee8a692d73f

Change-Id: I89b34ae414b8c02d4f015e52047a232fefda2d4b
---
M sc/Module_sc.mk
1 file changed, 17 insertions(+), 0 deletions(-)



diff --git a/sc/Module_sc.mk b/sc/Module_sc.mk
index b4cfcb5..4a4fc41 100644
--- a/sc/Module_sc.mk
+++ b/sc/Module_sc.mk
@@ -59,7 +59,24 @@
 # CppunitTest_sc_annotationshapeobj \
 
 $(eval $(call gb_Module_add_subsequentcheck_targets,sc,\
+JunitTest_sc_complex \
+JunitTest_sc_unoapi \
+CppunitTest_sc_outlineobj \
+CppunitTest_sc_annotationobj \
+CppunitTest_sc_annotationsobj \
+CppunitTest_sc_cellrangeobj \
+$(if $(filter-out $(OS),IOS), \
+   CppunitTest_sc_databaserangeobj) \
+CppunitTest_sc_datapilottableobj \
+CppunitTest_sc_datapilotfieldobj \
 CppunitTest_sc_macros_test \
+CppunitTest_sc_namedrangeobj \
+CppunitTest_sc_namedrangesobj \
+CppunitTest_sc_tablesheetobj \
+CppunitTest_sc_tablesheetsobj \
+CppunitTest_sc_editfieldobj_cell \
+CppunitTest_sc_editfieldobj_header \
+CppunitTest_sc_modelobj \
 ))
 
 # vim: set noet sw=4 ts=4:

-- 
To view, visit https://gerrit.libreoffice.org/2630
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I89b34ae414b8c02d4f015e52047a232fefda2d4b
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Korrawit Pruegsanusak detective.conan.1...@gmail.com

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


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

2013-03-10 Thread Joren De Cuyper
 sw/source/filter/ww8/docxexportfilter.cxx |4 -
 sw/source/filter/ww8/wrtw8nds.cxx |   79 +++---
 sw/source/filter/ww8/wrtw8num.cxx |   20 +++---
 sw/source/filter/ww8/wrtww8.hxx   |   90 ++
 sw/source/filter/ww8/wrtww8gr.cxx |   56 +-
 5 files changed, 117 insertions(+), 132 deletions(-)

New commits:
commit c2f2999ac633c66179a347a63623fbd1191b7cd5
Author: Joren De Cuyper joren.libreoff...@telenet.be
Date:   Sat Mar 9 17:56:28 2013 +0100

Translate german comments in sw/source/filter/ww8/

Please, only apply this patch if you are a native speaking German.
I'm not a native speaker, so a double check is really necessary
and appreciated.

Thanks in advance.

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

diff --git a/sw/source/filter/ww8/docxexportfilter.cxx 
b/sw/source/filter/ww8/docxexportfilter.cxx
index 8149b36..2226ed3 100644
--- a/sw/source/filter/ww8/docxexportfilter.cxx
+++ b/sw/source/filter/ww8/docxexportfilter.cxx
@@ -86,10 +86,8 @@ bool DocxExportFilter::exportDocument()
 return true;
 }
 
-//
-// UNO stuff so that the filter is registered
-//
 
+// UNO stuff so that the filter is registered
 #define IMPL_NAME com.sun.star.comp.Writer.DocxExport
 
 OUString DocxExport_getImplementationName()
diff --git a/sw/source/filter/ww8/wrtw8nds.cxx 
b/sw/source/filter/ww8/wrtw8nds.cxx
index 9881fff..30998e2 100644
--- a/sw/source/filter/ww8/wrtw8nds.cxx
+++ b/sw/source/filter/ww8/wrtw8nds.cxx
@@ -309,19 +309,18 @@ xub_StrLen SwWW8AttrIter::SearchNext( xub_StrLen 
nStartPos )
 if(const SwpHints* pTxtAttrs = rNd.GetpSwpHints())
 {
 
-// kann noch optimiert werden, wenn ausgenutzt wird, dass die TxtAttrs
-// nach der Anfangsposition geordnet sind. Dann muessten
-// allerdings noch 2 Indices gemerkt werden
+// can be optimized if we consider that the TxtAttrs are sorted by start 
position.
+// but then we'd have to save 2 indices
 for( i = 0; i  pTxtAttrs-Count(); i++ )
 {
 const SwTxtAttr* pHt = (*pTxtAttrs)[i];
-nPos = *pHt-GetStart();// gibt erstes Attr-Zeichen
+nPos = *pHt-GetStart();// first Attr characters
 if( nPos = nStartPos  nPos = nMinPos )
 nMinPos = nPos;
 
-if( pHt-GetEnd() ) // Attr mit Ende
+if( pHt-GetEnd() ) // Attr with end
 {
-nPos = *pHt-GetEnd();  // gibt letztes Attr-Zeichen + 1
+nPos = *pHt-GetEnd();  // last Attr character + 1
 if( nPos = nStartPos  nPos = nMinPos )
 nMinPos = nPos;
 }
@@ -345,7 +344,7 @@ xub_StrLen SwWW8AttrIter::SearchNext( xub_StrLen nStartPos )
 /*
  #i2916#
  Check to see if there are any graphics anchored to characters in this
- paragraph's text.  Set nMinPos to 1 past the placement for anchored to
+ paragraph's text. Set nMinPos to 1 past the placement for anchored to
  character because anchors in Word appear after the character they are
  anchored to.
 */
@@ -482,7 +481,7 @@ void SwWW8AttrIter::OutAttr( xub_StrLen nSwPos, bool bRuby )
 
 m_rExport.ExportPoolItemsToCHP( aExportItems, GetScript() );
 
-// HasTextItem nur in dem obigen Bereich erlaubt
+// HasTextItem only allowed in the above range
 m_rExport.m_aCurrentCharPropStarts.pop();
 m_rExport.pOutFmtNode = pOldMod;
 }
@@ -580,12 +579,10 @@ bool SwWW8AttrIter::RequiresImplicitBookmark()
 return false;
 }
 
-// HasItem ist fuer die Zusammenfassung des Doppel-Attributes Underline
-// und WordLineMode als TextItems. OutAttr() ruft die Ausgabefunktion,
-// die dann ueber HasItem() nach anderen Items an der
-// Attribut-Anfangposition fragen kann.
-// Es koennen nur Attribute mit Ende abgefragt werden.
-// Es wird mit bDeep gesucht
+//HasItem is for the summary of the double attributes: Underline and 
WordlineMode as TextItems.
+// OutAttr () calls the output function, which can call HasItem() for other 
items at the attribute's start position.
+// Only attributes with end can be queried.
+// It searches with bDeep
 const SfxPoolItem* SwWW8AttrIter::HasTextItem( sal_uInt16 nWhich ) const
 {
 const SfxPoolItem* pRet = 0;
@@ -599,15 +596,15 @@ const SfxPoolItem* SwWW8AttrIter::HasTextItem( sal_uInt16 
nWhich ) const
 const SwTxtAttr* pHt = (*pTxtAttrs)[i];
 const SfxPoolItem* pItem = pHt-GetAttr();
 const xub_StrLen* pAtrEnd = 0;
-if( 0 != ( pAtrEnd = pHt-GetEnd() )  // nur Attr mit Ende
-nWhich 

Re: gerrit: can't use the draft queue

2013-03-10 Thread David Ostrovsky

Hi Korrawit,

On 10.03.2013 09:56, Korrawit Pruegsanusak wrote:

Hello David, all,

As you announced in
http://lists.freedesktop.org/archives/libreoffice/2012-September/038640.html,
I tried to push my work-in-progress patch to refs/draft/master, but it
failed:


my bad, sorry: I missed s in drafts. The correct path is: 
refs/drafts/master
Note: you must add reviewer manually, otherwise he wouldn't see your patch.

David

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


[PUSHED] Translate german comments in sw/source/filter/ww8/

2013-03-10 Thread Thomas Arnhold (via Code Review)
Hi,

Thank you for your patch!  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/2617

Approvals:
  Thomas Arnhold: Verified; Looks good to me, approved


-- 
To view, visit https://gerrit.libreoffice.org/2617
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: Ic2fb6e97007c6b47851ad8a7a51e987da5a70877
Gerrit-PatchSet: 6
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Joren De Cuyper joren.libreoff...@telenet.be
Gerrit-Reviewer: Christina Roßmanith chrrossman...@web.de
Gerrit-Reviewer: Thomas Arnhold tho...@arnhold.org

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


[Libreoffice-commits] core.git: sc/Module_sc.mk

2013-03-10 Thread Korrawit Pruegsanusak
 sc/Module_sc.mk |   17 +
 1 file changed, 17 insertions(+)

New commits:
commit 9fd65685560b4fb8dcd4c05f5ff53c64db831f61
Author: Korrawit Pruegsanusak detective.conan.1...@gmail.com
Date:   Sun Mar 10 15:19:50 2013 +0700

Add back subsequencecheck targets accidentally removed ...

... in c95e3fb64695cedfa40bfe5472879ee8a692d73f

Change-Id: I89b34ae414b8c02d4f015e52047a232fefda2d4b
Reviewed-on: https://gerrit.libreoffice.org/2630
Reviewed-by: Matúš Kukan matus.ku...@gmail.com
Tested-by: Matúš Kukan matus.ku...@gmail.com

diff --git a/sc/Module_sc.mk b/sc/Module_sc.mk
index b4cfcb5..4a4fc41 100644
--- a/sc/Module_sc.mk
+++ b/sc/Module_sc.mk
@@ -59,7 +59,24 @@ $(eval $(call gb_Module_add_slowcheck_targets,sc, \
 # CppunitTest_sc_annotationshapeobj \
 
 $(eval $(call gb_Module_add_subsequentcheck_targets,sc,\
+JunitTest_sc_complex \
+JunitTest_sc_unoapi \
+CppunitTest_sc_outlineobj \
+CppunitTest_sc_annotationobj \
+CppunitTest_sc_annotationsobj \
+CppunitTest_sc_cellrangeobj \
+$(if $(filter-out $(OS),IOS), \
+   CppunitTest_sc_databaserangeobj) \
+CppunitTest_sc_datapilottableobj \
+CppunitTest_sc_datapilotfieldobj \
 CppunitTest_sc_macros_test \
+CppunitTest_sc_namedrangeobj \
+CppunitTest_sc_namedrangesobj \
+CppunitTest_sc_tablesheetobj \
+CppunitTest_sc_tablesheetsobj \
+CppunitTest_sc_editfieldobj_cell \
+CppunitTest_sc_editfieldobj_header \
+CppunitTest_sc_modelobj \
 ))
 
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] Add back subsequencecheck targets accidentally removed ...

2013-03-10 Thread via Code Review
Hi,

Thank you for your patch!  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/2630

Approvals:
  Matúš Kukan: Verified; Looks good to me, approved


-- 
To view, visit https://gerrit.libreoffice.org/2630
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I89b34ae414b8c02d4f015e52047a232fefda2d4b
Gerrit-PatchSet: 2
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Korrawit Pruegsanusak detective.conan.1...@gmail.com
Gerrit-Reviewer: Matúš Kukan matus.ku...@gmail.com

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


[PATCH] fdo#62075 Hierarchical filter hard to find

2013-03-10 Thread Joren De Cuyper (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2638

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/38/2638/1

fdo#62075 Hierarchical filter hard to find

See UX-advice 
http://lists.freedesktop.org/archives/libreoffice-ux-advise/2013-March/001898.html
and comment on bug for approval of ux-advice.

Change-Id: I0e3eb178eb74476edad6aad724e1ccc2a05662da
---
M sfx2/source/dialog/templdlg.cxx
1 file changed, 3 insertions(+), 3 deletions(-)



diff --git a/sfx2/source/dialog/templdlg.cxx b/sfx2/source/dialog/templdlg.cxx
index 404f0c9..1dc8689 100644
--- a/sfx2/source/dialog/templdlg.cxx
+++ b/sfx2/source/dialog/templdlg.cxx
@@ -83,8 +83,8 @@
 
 static sal_uInt16 nLastItemId = USHRT_MAX;
 
-// filter box has maximum 12 entries visible
-#define MAX_FILTER_ENTRIES  12
+// filter box has maximum 14 entries visible
+#define MAX_FILTER_ENTRIES  14
 
 //=
 
@@ -1235,7 +1235,7 @@
 if(pTreeBox)
 
aFilterLb.SelectEntry(SfxResId(STR_STYLE_FILTER_HIERARCHICAL).toString());
 
-// show maximum 12 entries
+// show maximum 14 entries
 aFilterLb.SetDropDownLineCount( MAX_FILTER_ENTRIES );
 aFilterLb.SetUpdateMode(sal_True);
 }

-- 
To view, visit https://gerrit.libreoffice.org/2638
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0e3eb178eb74476edad6aad724e1ccc2a05662da
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Joren De Cuyper joren.libreoff...@telenet.be

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


[PATCH libreoffice-4-0] fdo#62075 Hierarchical filter hard to find

2013-03-10 Thread Joren De Cuyper (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2639

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/39/2639/1

fdo#62075 Hierarchical filter hard to find

See UX-advice 
http://lists.freedesktop.org/archives/libreoffice-ux-advise/2013-March/001898.html
and comment on bug for approval of ux-advice.

Change-Id: Ie5af5ec141b148e6253d0ffa9b546d30994c6dd6
---
M sfx2/source/dialog/templdlg.cxx
1 file changed, 3 insertions(+), 3 deletions(-)



diff --git a/sfx2/source/dialog/templdlg.cxx b/sfx2/source/dialog/templdlg.cxx
index 0af6d77..a81c27d 100644
--- a/sfx2/source/dialog/templdlg.cxx
+++ b/sfx2/source/dialog/templdlg.cxx
@@ -83,8 +83,8 @@
 
 static sal_uInt16 nLastItemId = USHRT_MAX;
 
-// filter box has maximum 12 entries visible
-#define MAX_FILTER_ENTRIES  12
+// filter box has maximum 14 entries visible
+#define MAX_FILTER_ENTRIES  14
 
 //=
 
@@ -1281,7 +1281,7 @@
 if(pTreeBox)
 
aFilterLb.SelectEntry(SfxResId(STR_STYLE_FILTER_HIERARCHICAL).toString());
 
-// show maximum 12 entries
+// show maximum 14 entries
 aFilterLb.SetDropDownLineCount( MAX_FILTER_ENTRIES );
 aFilterLb.SetUpdateMode(sal_True);
 }

-- 
To view, visit https://gerrit.libreoffice.org/2639
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ie5af5ec141b148e6253d0ffa9b546d30994c6dd6
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: libreoffice-4-0
Gerrit-Owner: Joren De Cuyper joren.libreoff...@telenet.be

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


[PATCH] fdo#61421 Added line to prevent screenlocking during present...

2013-03-10 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2640

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/40/2640/1

fdo#61421 Added line to prevent screenlocking during presentation

Added line to xml layout to prevent locking screen during using this
layout

Change-Id: Ia2f71e67a3d09bacf1cb7e95dd05a2008129eb24
---
M android/sdremote/res/layout/activity_presentation.xml
1 file changed, 2 insertions(+), 1 deletion(-)



diff --git a/android/sdremote/res/layout/activity_presentation.xml 
b/android/sdremote/res/layout/activity_presentation.xml
index 23b615a..1dbf5a6 100644
--- a/android/sdremote/res/layout/activity_presentation.xml
+++ b/android/sdremote/res/layout/activity_presentation.xml
@@ -2,7 +2,8 @@
 xmlns:tools=http://schemas.android.com/tools;
 android:id=@+id/framelayout
 android:layout_width=match_parent
-android:layout_height=match_parent 
+android:layout_height=match_parent
+android:keepScreenOn = true
 
 view
 android:id=@+id/presentation_interceptor

-- 
To view, visit https://gerrit.libreoffice.org/2640
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ia2f71e67a3d09bacf1cb7e95dd05a2008129eb24
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Ondřej Smrž bio...@centrum.cz

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


Re: Missing service SvgWriter - forgotten when rebasing with AOO

2013-03-10 Thread Dan Lewis

On 03/07/2013 11:47 AM, Noel Grandin wrote:

how about you give it a try and ask back here if you have difficulties.

On Thursday, 7 March 2013, Fernand Vanrie wrote:

Michael ,

OK ,  but we need SVG and a working Native mySQL connector :-)

so: any news about a volonteer to compile Connector for 4.0
(windows) ?

Greetz

Fernand

Hi Fernand,

On Thu, 2013-03-07 at 08:45 +0100, Fernand Vanrie wrote:

any change the SVG stuff and this repairs happens also for
later 3.6
releases ?

That seems unlikely; one reason is that I'd expect the
SVG code to be
significantly different for 3.6 :-)

HTH,

Michael.

 What good will it be to get a volunteer to build a mysql connector 
for 4.0 if the connector can not be build? There are problems on OS X 
and LInux because of changes made in autogen.sh. This needs to be fixed 
first before finding a volunteer.

 Until recently, this is used to configure the connector:
./autogen.sh --enable-ext-mysql-connector --with-system-mysql.

 In the last couple of days, this has been changed (without 
seemingly any documentation on this mailing list) to:

./autogen.sh --enable-ext-mariadb-connector --with-system-mariadb.

 One other problem in building this connector that did not exist 
prior to the change from mysql to mariadb: autogen.sh does not find the 
installed version of mariadb. This also prevents building the connector.

 This is the output containing the errors:

checking whether to build the MariaDB/MySQL Connector extension... yes
checking which MariaDB to use... external
checking for mariadb_config... no
checking MariaDB version... ./configure: line 21356: --version: command 
not found

./configure: line 21357: --version: command not found
./configure: line 21358: test: : integer expression expected
configure: error: too old, use 5.0.x or 5.1.x
Error running configure at ./autogen.sh line 201.
 It appears that this problem should be corrected first before 
trying to build the MariaDB/MySQL connector.


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


[Libreoffice-commits] core.git: config_host.mk.in mysqlc/Module_mysqlc.mk scp2/source

2013-03-10 Thread Rene Engelhard
 config_host.mk.in   |2 +-
 mysqlc/Module_mysqlc.mk |2 +-
 scp2/source/extensions/directory_extensions.scp |2 +-
 scp2/source/extensions/file_extensions.scp  |2 +-
 scp2/source/extensions/module_extensions.scp|4 ++--
 scp2/source/extensions/module_extensions.ulf|4 ++--
 6 files changed, 8 insertions(+), 8 deletions(-)

New commits:
commit ea5909eb57e83946c4beca6cd2234f99f118f18e
Author: Rene Engelhard r...@debian.org
Date:   Sun Mar 10 14:09:53 2013 +0100

adapt config_host.mk.in/scp2/mysqlc to MARIADBC

Change-Id: Id60fc25405a3879e64bd5f2ff637c655ba7dfc78

diff --git a/config_host.mk.in b/config_host.mk.in
index cf54479..273385b 100644
--- a/config_host.mk.in
+++ b/config_host.mk.in
@@ -140,7 +140,7 @@ export ENABLE_LTO=@ENABLE_LTO@
 export ENABLE_MACOSX_SANDBOX=@ENABLE_MACOSX_SANDBOX@
 export ENABLE_MEDIAWIKI=@ENABLE_MEDIAWIKI@
 export ENABLE_MINIMIZER=@ENABLE_MINIMIZER@
-export ENABLE_MYSQLC=@ENABLE_MYSQLC@
+export ENABLE_MARIADBC=@ENABLE_MARIADBC@
 export ENABLE_NPAPI_FROM_BROWSER=@ENABLE_NPAPI_FROM_BROWSER@
 export ENABLE_NPAPI_INTO_BROWSER=@ENABLE_NPAPI_INTO_BROWSER@
 export ENABLE_ONLINE_UPDATE=@ENABLE_ONLINE_UPDATE@
diff --git a/mysqlc/Module_mysqlc.mk b/mysqlc/Module_mysqlc.mk
index 6a605be..70629a1 100644
--- a/mysqlc/Module_mysqlc.mk
+++ b/mysqlc/Module_mysqlc.mk
@@ -9,7 +9,7 @@
 
 $(eval $(call gb_Module_Module,mysqlc))
 
-ifeq ($(ENABLE_MYSQLC),YES)
+ifeq ($(ENABLE_MARIADBC),YES)
 
 $(eval $(call gb_Module_add_targets,mysqlc,\
Configuration_mysql \
diff --git a/scp2/source/extensions/directory_extensions.scp 
b/scp2/source/extensions/directory_extensions.scp
index 32787a8..0b70552 100644
--- a/scp2/source/extensions/directory_extensions.scp
+++ b/scp2/source/extensions/directory_extensions.scp
@@ -189,7 +189,7 @@ End
 
 /* ** MySQL Connector ** */
 
-#ifdef WITH_EXTENSION_MYSQLC
+#ifdef WITH_EXTENSION_MARIADBC
 
 Directory gid_Brand_Dir_Share_Extensions_MySQLConnector
ParentID = gid_Brand_Dir_Share_Extensions;
diff --git a/scp2/source/extensions/file_extensions.scp 
b/scp2/source/extensions/file_extensions.scp
index 5f9b410..f68b539 100644
--- a/scp2/source/extensions/file_extensions.scp
+++ b/scp2/source/extensions/file_extensions.scp
@@ -217,7 +217,7 @@ End
 
 /* ** MySQL Connector ** */
 
-#ifdef WITH_EXTENSION_MYSQLC
+#ifdef WITH_EXTENSION_MARIADBC
 
 File gid_File_Oxt_MySQLConnector
 TXT_FILE_BODY;
diff --git a/scp2/source/extensions/module_extensions.scp 
b/scp2/source/extensions/module_extensions.scp
index 84fac6b..319b69b 100644
--- a/scp2/source/extensions/module_extensions.scp
+++ b/scp2/source/extensions/module_extensions.scp
@@ -254,10 +254,10 @@ End
 
 /* ** MySQL Connector ** */
 
-#ifdef WITH_EXTENSION_MYSQLC
+#ifdef WITH_EXTENSION_MARIADBC
 Module gid_Module_Optional_Extensions_MySQLConnector
  PackageInfo = packinfo_extensions.txt;
- MOD_NAME_DESC(MODULE_OPTIONAL_EXTENSIONS_MYSQLC);
+ MOD_NAME_DESC(MODULE_OPTIONAL_EXTENSIONS_MARIADBC);
  ParentID = gid_Module_Optional_Extensions;
  Files = (
  gid_File_Oxt_MySQLConnector );
diff --git a/scp2/source/extensions/module_extensions.ulf 
b/scp2/source/extensions/module_extensions.ulf
index 61618c0..50466f5 100644
--- a/scp2/source/extensions/module_extensions.ulf
+++ b/scp2/source/extensions/module_extensions.ulf
@@ -117,10 +117,10 @@ en-US = LanguageTool Open Source language checker
 [STR_DESC_MODULE_OPTIONAL_EXTENSIONS_LANGUAGETOOL]
 en-US = LanguageTool Open Source language checker
 
-[STR_NAME_MODULE_OPTIONAL_EXTENSIONS_MYSQLC]
+[STR_NAME_MODULE_OPTIONAL_EXTENSIONS_MARIADBC]
 en-US = MySQL Connector
 
-[STR_DESC_MODULE_OPTIONAL_EXTENSIONS_MYSQLC]
+[STR_DESC_MODULE_OPTIONAL_EXTENSIONS_MARIADBC]
 en-US = MySQL Connector
 
 [STR_NAME_MODULE_OPTIONAL_EXTENSIONS_SUN_TEMPLATE_PACK]
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Missing service SvgWriter - forgotten when rebasing with AOO

2013-03-10 Thread Markus Mohrhard
  What good will it be to get a volunteer to build a mysql connector for
 4.0 if the connector can not be build? There are problems on OS X and LInux
 because of changes made in autogen.sh. This needs to be fixed first before
 finding a volunteer.
  Until recently, this is used to configure the connector:
 ./autogen.sh --enable-ext-mysql-connector --with-system-mysql.

  In the last couple of days, this has been changed (without seemingly
 any documentation on this mailing list) to:
 ./autogen.sh --enable-ext-mariadb-connector --with-system-mariadb.

  One other problem in building this connector that did not exist prior
 to the change from mysql to mariadb: autogen.sh does not find the installed
 version of mariadb. This also prevents building the connector.
  This is the output containing the errors:

 checking whether to build the MariaDB/MySQL Connector extension... yes
 checking which MariaDB to use... external
 checking for mariadb_config... no
 checking MariaDB version... ./configure: line 21356: --version: command not
 found
 ./configure: line 21357: --version: command not found
 ./configure: line 21358: test: : integer expression expected
 configure: error: too old, use 5.0.x or 5.1.x
 Error running configure at ./autogen.sh line 201.
  It appears that this problem should be corrected first before trying to
 build the MariaDB/MySQL connector.


You should not use master if you want something for productive use.
Use the 4.0 branch where everything is still like before.

Testing master is of course appreciated but you should also note that
it is still unstable and incompatible changes might happen. To
announce these changes or fix them we still have a few months to the
4.1 release. IF you want to build the MySQL Connector use the
libreoffice-4-0 branch which should work for all 4.0.x builds.

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


[Libreoffice-commits] core.git: 2 commits - mysqlc/Library_mysqlc.mk mysqlc/source

2013-03-10 Thread Rene Engelhard
 mysqlc/Library_mysqlc.mk  |6 +++---
 mysqlc/source/mysqlc_databasemetadata.cxx |4 ++--
 mysqlc/source/mysqlc_driver.cxx   |4 ++--
 3 files changed, 7 insertions(+), 7 deletions(-)

New commits:
commit d335638ea6a5ac4e3e276bfd9d704dc320bbd211
Author: Rene Engelhard r...@debian.org
Date:   Sun Mar 10 14:32:09 2013 +0100

oops

Change-Id: I05efc60a6108a899db006df3a8c43bdec9c5850a

diff --git a/mysqlc/Module_mysqlc.mk.rej b/mysqlc/Module_mysqlc.mk.rej
deleted file mode 100644
index 5a930f3..000
--- a/mysqlc/Module_mysqlc.mk.rej
+++ /dev/null
@@ -1,11 +0,0 @@
 mysqlc/Module_mysqlc.mk
-+++ mysqlc/Module_mysqlc.mk
-@@ -9,7 +9,7 @@
- 
- $(eval $(call gb_Module_Module,mysqlc))
- 
--ifeq ($(ENABLE_MYSQLC),YES)
-+ifeq ($(ENABLE_MARIADBC),YES)
- 
- $(eval $(call gb_Module_add_targets,mysqlc,\
-   Configuration_mysql \
commit 7011fc2c1ddf2a0780d6441b4c5830be2aabc64c
Author: Rene Engelhard r...@debian.org
Date:   Sun Mar 10 14:31:13 2013 +0100

more s/MYSQLC/MARIADBC/ to make mysqlc actually build...

Change-Id: I286c2100c33371d5ed1ac0be3ae6393dabe6c4ef

diff --git a/mysqlc/Library_mysqlc.mk b/mysqlc/Library_mysqlc.mk
index 635838e..ad8bc8d 100644
--- a/mysqlc/Library_mysqlc.mk
+++ b/mysqlc/Library_mysqlc.mk
@@ -39,9 +39,9 @@ $(eval $(call gb_Library_use_libraries,mysqlc,\
 $(eval $(call gb_Library_add_defs,mysqlc,\
-DCPPDBC_EXPORTS \
-DCPPCON_LIB_BUILD \
-   -DMYSQLC_VERSION_MAJOR=$(MYSQLC_MAJOR) \
-   -DMYSQLC_VERSION_MINOR=$(MYSQLC_MINOR) \
-   -DMYSQLC_VERSION_MICRO=$(MYSQLC_MICRO) \
+   -DMARIADBC_VERSION_MAJOR=$(MARIADBC_MAJOR) \
+   -DMARIADBC_VERSION_MINOR=$(MARIADBC_MINOR) \
+   -DMARIADBC_VERSION_MICRO=$(MARIADBC_MICRO) \
$(if $(filter NO,$(SYSTEM_MYSQL_CPPCONN)),\
-DCPPCONN_LIB=\$(call gb_Library_get_runtime_filename,mysqlcppconn)\) 
\
 ))
diff --git a/mysqlc/Module_mysqlc.mk.rej b/mysqlc/Module_mysqlc.mk.rej
new file mode 100644
index 000..5a930f3
--- /dev/null
+++ b/mysqlc/Module_mysqlc.mk.rej
@@ -0,0 +1,11 @@
+--- mysqlc/Module_mysqlc.mk
 mysqlc/Module_mysqlc.mk
+@@ -9,7 +9,7 @@
+ 
+ $(eval $(call gb_Module_Module,mysqlc))
+ 
+-ifeq ($(ENABLE_MYSQLC),YES)
++ifeq ($(ENABLE_MARIADBC),YES)
+ 
+ $(eval $(call gb_Module_add_targets,mysqlc,\
+   Configuration_mysql \
diff --git a/mysqlc/source/mysqlc_databasemetadata.cxx 
b/mysqlc/source/mysqlc_databasemetadata.cxx
index e134e05..898c158 100644
--- a/mysqlc/source/mysqlc_databasemetadata.cxx
+++ b/mysqlc/source/mysqlc_databasemetadata.cxx
@@ -1176,7 +1176,7 @@ sal_Int32 SAL_CALL 
ODatabaseMetaData::getDriverMajorVersion()
 throw(RuntimeException)
 {
 OSL_TRACE(ODatabaseMetaData::getDriverMajorVersion);
-return MYSQLC_VERSION_MAJOR;
+return MARIADBC_VERSION_MAJOR;
 }
 /* }}} */
 
@@ -1210,7 +1210,7 @@ sal_Int32 SAL_CALL 
ODatabaseMetaData::getDriverMinorVersion()
 throw(RuntimeException)
 {
 OSL_TRACE(ODatabaseMetaData::getDriverMinorVersion);
-return MYSQLC_VERSION_MINOR;
+return MARIADBC_VERSION_MINOR;
 }
 /* }}} */
 
diff --git a/mysqlc/source/mysqlc_driver.cxx b/mysqlc/source/mysqlc_driver.cxx
index 029fe0f..b399da8 100644
--- a/mysqlc/source/mysqlc_driver.cxx
+++ b/mysqlc/source/mysqlc_driver.cxx
@@ -277,7 +277,7 @@ sal_Int32 SAL_CALL MysqlCDriver::getMajorVersion()
 throw(RuntimeException)
 {
 OSL_TRACE(MysqlCDriver::getMajorVersion);
-return MYSQLC_VERSION_MAJOR;
+return MARIADBC_VERSION_MAJOR;
 }
 /* }}} */
 
@@ -287,7 +287,7 @@ sal_Int32 SAL_CALL MysqlCDriver::getMinorVersion()
 throw(RuntimeException)
 {
 OSL_TRACE(MysqlCDriver::getMinorVersion);
-return MYSQLC_VERSION_MINOR;
+return MARIADBC_VERSION_MINOR;
 }
 /* }}} */
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


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

2013-03-10 Thread Matthias Freund
 sw/source/ui/table/convert.cxx|2 
 sw/source/ui/table/instable.cxx   |3 
 sw/source/ui/table/swtablerep.cxx |8 +-
 sw/source/ui/table/tabledlg.cxx   |   51 +++-
 sw/source/ui/table/tablemgr.cxx   |   27 +++-
 sw/source/ui/table/tablepg.hxx|5 -
 sw/source/ui/table/tautofmt.cxx   |  119 ++
 7 files changed, 59 insertions(+), 156 deletions(-)

New commits:
commit d718d02c1e9f518c393fd9dd5a5c841dffacc696
Author: Matthias Freund matti...@yahoo.de
Date:   Sun Mar 10 00:09:15 2013 +0100

Comment translation german-english in sw/source/ui/table/

Corrections... :-D

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

diff --git a/sw/source/ui/table/convert.cxx b/sw/source/ui/table/convert.cxx
index 93e3624..d2ea4ca 100644
--- a/sw/source/ui/table/convert.cxx
+++ b/sw/source/ui/table/convert.cxx
@@ -147,7 +147,7 @@ SwConvertTableDlg::SwConvertTableDlg( SwView rView, bool 
bToTable )
 }
 else
 {
-//Einfuege-Optionen verstecken
+//hide insert options
 mpOptions-Hide();
 }
 mpKeepColumn-SaveValue();
diff --git a/sw/source/ui/table/instable.cxx b/sw/source/ui/table/instable.cxx
index 466acbc..440323b 100644
--- a/sw/source/ui/table/instable.cxx
+++ b/sw/source/ui/table/instable.cxx
@@ -70,9 +70,6 @@ void SwInsTableDlg::GetValues( String rName, sal_uInt16 
rRow, sal_uInt16 rCol
 rInsTblOpts.mnInsMode = nInsMode;
 }
 
-// CTOR / DTOR ---
-
-
 SwInsTableDlg::SwInsTableDlg( SwView rView )
 : SfxModalDialog(rView.GetWindow(), InsertTableDialog, 
modules/swriter/ui/inserttable.ui)
 , pShell(rView.GetWrtShell())
diff --git a/sw/source/ui/table/swtablerep.cxx 
b/sw/source/ui/table/swtablerep.cxx
index 96944b2..88d86a8 100644
--- a/sw/source/ui/table/swtablerep.cxx
+++ b/sw/source/ui/table/swtablerep.cxx
@@ -110,8 +110,8 @@ sal_Bool SwTableRep::FillTabCols( SwTabCols rTabCols ) 
const
 rTabCols.SetLeft(nLeft);
 if(bSingleLine)
 {
-// die unsichtbaren Trenner werden aus den alten TabCols genommen
-// die sichtbaren kommen aus pTColumns
+// The invisible separators are taken from the old TabCols,
+// the visible coming from pTColumns.
 TColumn*pOldTColumns = new TColumn[nAllCols + 1];
 SwTwips nStart = 0,
 nEnd;
@@ -150,7 +150,7 @@ sal_Bool SwTableRep::FillTabCols( SwTabCols rTabCols ) 
const
 break;
 }
 bFirst = false;
-// sie muessen sortiert eingefuegt werden
+// They have to be inserted sorted.
 bOld = nOld  nNew;
 nPos = sal_uInt16(bOld ? nOld : nNew);
 rTabCols[i] = nPos + nLeft;
@@ -172,7 +172,7 @@ sal_Bool SwTableRep::FillTabCols( SwTabCols rTabCols ) 
const
 }
 }
 
-// Rundungsfehler abfangen
+// intercept rounding errors
 if(Abs((long)nOldLeft - (long)rTabCols.GetLeft())  3)
 rTabCols.SetLeft(nOldLeft);
 
diff --git a/sw/source/ui/table/tabledlg.cxx b/sw/source/ui/table/tabledlg.cxx
index 3efc619..bdc45f9 100644
--- a/sw/source/ui/table/tabledlg.cxx
+++ b/sw/source/ui/table/tabledlg.cxx
@@ -140,8 +140,6 @@ void  SwFormatTablePage::Init()
 m_pRelWidthCB-SetClickHdl(LINK( this, SwFormatTablePage, RelWidthClickHdl 
));
 }
 
-/**/
-
 IMPL_LINK( SwFormatTablePage, RelWidthClickHdl, CheckBox *, pBtn )
 {
 OSL_ENSURE(pTblData, table data not available?);
@@ -157,7 +155,7 @@ IMPL_LINK( SwFormatTablePage, RelWidthClickHdl, CheckBox *, 
pBtn )
 m_aWidthMF.SetRefValue(pTblData-GetSpace());
 m_aLeftMF.SetRefValue(pTblData-GetSpace());
 m_aRightMF.SetRefValue(pTblData-GetSpace());
-m_aLeftMF.SetMetricFieldMin(0); // wird vom Percentfield ueberschrieben
+m_aLeftMF.SetMetricFieldMin(0); // will be overwritten by the 
Percentfield
 m_aRightMF.SetMetricFieldMin(0); // --
 m_aLeftMF.SetMetricFieldMax(99); //
 m_aRightMF.SetMetricFieldMax(99); //
@@ -165,7 +163,7 @@ IMPL_LINK( SwFormatTablePage, RelWidthClickHdl, CheckBox *, 
pBtn )
 m_aRightMF.SetPrcntValue(m_aRightMF.NormalizePercent(nRight ), 
FUNIT_TWIP );
 }
 else
-ModifyHdl(m_aLeftMF.get());// Werte wieder korrigieren
+ModifyHdl(m_aLeftMF.get());// correct values again
 
 if(m_pFreeBtn-IsChecked())
 {
@@ -234,8 +232,8 @@ IMPL_LINK( SwFormatTablePage, AutoClickHdl, CheckBox *, 
pBox )
 
 if(bFull  bRestore)
 {
-// nachdem auf autom. geschaltet wurde, wurde die Breite gemerkt,
-// um sie beim Zurueckschalten restaurieren zu koennen
+// After being switched on automatic, the width was 

[PATCH] fdo #61394 Change Template Manager Accept button labal to OK...

2013-03-10 Thread Rafael Dominguez (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2641

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/41/2641/1

fdo #61394 Change Template Manager Accept button labal to OK.

Change-Id: Ic8eddb1018330dd6432316e18c462352c85bbdd1
---
M sfx2/source/dialog/inputdlg.src
1 file changed, 1 insertion(+), 1 deletion(-)



diff --git a/sfx2/source/dialog/inputdlg.src b/sfx2/source/dialog/inputdlg.src
index f0b04b6..ab6caa1 100644
--- a/sfx2/source/dialog/inputdlg.src
+++ b/sfx2/source/dialog/inputdlg.src
@@ -36,7 +36,7 @@
 Size = MAP_APPFONT(40,15);
 TabStop = TRUE;
 DefButton = TRUE;
-Text [en-US] = Accept;
+Text [en-US] = OK;
 };
 
 PushButton BTN_INPUT_CANCEL

-- 
To view, visit https://gerrit.libreoffice.org/2641
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ic8eddb1018330dd6432316e18c462352c85bbdd1
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com

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


[PUSHED] Comment translation german-english in sw/source/ui/table/

2013-03-10 Thread Thomas Arnhold (via Code Review)
Hi,

Thank you for your patch!  It has been merged to LibreOffice.

If you are interested in details, please visit

https://gerrit.libreoffice.org/2625

Approvals:
  Thomas Arnhold: Verified; Looks good to me, approved


-- 
To view, visit https://gerrit.libreoffice.org/2625
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: merged
Gerrit-Change-Id: I486a0caac11786c8edb4dd8b6099771db075a336
Gerrit-PatchSet: 4
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Matthias Freund matti...@yahoo.de
Gerrit-Reviewer: Thomas Arnhold tho...@arnhold.org

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


Re: gerrit: can't use the draft queue

2013-03-10 Thread Korrawit Pruegsanusak
Hello David,

On Sun, Mar 10, 2013 at 5:22 PM, David Ostrovsky david.ostrov...@gmx.de wrote:
 my bad, sorry: I missed s in drafts. The correct path is:
 refs/drafts/master
 Note: you must add reviewer manually, otherwise he wouldn't see your patch.

Works fine with this. Thanks :-)

Best Regards,
-- 
Korrawit Pruegsanusak
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] fod#57950: Removed some chained appends from sw

2013-03-10 Thread Marcos Souza (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2643

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/43/2643/1

fod#57950: Removed some chained appends from sw

Change-Id: I5b78b4a8f2fc0fb0c4a67042ac4924e375c2d63a
---
M sw/source/core/attr/format.cxx
M sw/source/core/bastyp/swcache.cxx
M sw/source/core/frmedt/fetab.cxx
M sw/source/filter/html/css1atr.cxx
M sw/source/ui/envelp/envlop1.cxx
M sw/source/ui/envelp/label1.cxx
M sw/source/ui/fldui/changedb.cxx
M sw/source/ui/uiview/pview.cxx
M sw/source/ui/uiview/viewsrch.cxx
M sw/source/ui/utlui/content.cxx
M sw/source/ui/wrtsh/wrtundo.cxx
11 files changed, 81 insertions(+), 188 deletions(-)



diff --git a/sw/source/core/attr/format.cxx b/sw/source/core/attr/format.cxx
index 4524937..1530b5f 100644
--- a/sw/source/core/attr/format.cxx
+++ b/sw/source/core/attr/format.cxx
@@ -224,9 +224,8 @@
 SwFmt* pParentFmt = DerivedFrom();
 if( !pParentFmt )
 {
-OSL_FAIL(rtl::OStringBuffer(
-RTL_CONSTASCII_STRINGPARAM(~SwFmt: parent format missing 
from: )).
-append(rtl::OUStringToOString(GetName(), 
osl_getThreadTextEncoding())).getStr());
+OSL_FAIL(~SwFmt: parent format missing from:  +
+ OUStringToOString(GetName(), 
osl_getThreadTextEncoding()));
 }
 else
 {
diff --git a/sw/source/core/bastyp/swcache.cxx 
b/sw/source/core/bastyp/swcache.cxx
index 588d2ce..7fc8909 100644
--- a/sw/source/core/bastyp/swcache.cxx
+++ b/sw/source/core/bastyp/swcache.cxx
@@ -100,61 +100,20 @@
 {
 #ifdef DBG_UTIL
 {
-rtl::OStringBuffer sOut(m_aName);
-
-sOut.append('\n').
-append(RTL_CONSTASCII_STRINGPARAM(
-Number of new entries: )).
-append(static_castsal_Int32(m_nAppend)).
-append('\n').
-append(RTL_CONSTASCII_STRINGPARAM(
-Number of insert on free places:   )).
-append(static_castsal_Int32(m_nInsertFree)).
-append('\n').
-append(RTL_CONSTASCII_STRINGPARAM(
-Number of replacements:)).
-append(static_castsal_Int32(m_nReplace)).
-append('\n').
-append(RTL_CONSTASCII_STRINGPARAM(
-Number of successful Get's:)).
-append(static_castsal_Int32(m_nGetSuccess)).
-append('\n').
-append(RTL_CONSTASCII_STRINGPARAM(
-Number of failed Get's:)).
-append(static_castsal_Int32(m_nGetFail)).
-append('\n').
-append(RTL_CONSTASCII_STRINGPARAM(
-Number or reordering (LRU):)).
-append(static_castsal_Int32(m_nToTop)).
-append('\n').
-append(RTL_CONSTASCII_STRINGPARAM(
-Number of suppressions:)).
-append(static_castsal_Int32(m_nDelete)).
-append('\n').
-append(RTL_CONSTASCII_STRINGPARAM(
-Number of Get's without Index: )).
-append(static_castsal_Int32(m_nGetSeek)).
-append('\n').
-append(RTL_CONSTASCII_STRINGPARAM(
-Number of Seek for Get without Index:  )).
-append(static_castsal_Int32(m_nAverageSeekCnt)).
-append('\n').
-append(RTL_CONSTASCII_STRINGPARAM(
-Number of Flush calls:  )).
-append(static_castsal_Int32(m_nFlushCnt)).
-append('\n').
-append(RTL_CONSTASCII_STRINGPARAM(
-Number of flushed objects: )).
-append(static_castsal_Int32(m_nFlushedObjects)).
-append('\n').
-append(RTL_CONSTASCII_STRINGPARAM(
-Number of Cache expansions:)).
-append(static_castsal_Int32(m_nIncreaseMax)).
-append('\n').
-append(RTL_CONSTASCII_STRINGPARAM(
-Number of Cache reductions:)).
-append(static_castsal_Int32(m_nDecreaseMax)).
-append('\n');
+OString sOut(m_aName + \n +
+Number of new entries:  + 
OString::number(m_nAppend) + \n +
+Number of insert on free places:+ 
OString::number(m_nInsertFree) + \n +
+Number of replacements: + 
OString::number(m_nReplace) + \n +
+Number of successful Get's: + 
OString::number(m_nGetSuccess) + \n +
+Number of failed Get's: + 
OString::number(m_nGetFail) + \n +
+Number or reordering (LRU): + 
OString::number(m_nToTop) + \n +
+Number of suppressions: + 
OString::number(m_nDelete) + \n +
+Number of Get's 

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

2013-03-10 Thread Markus Mohrhard
 sc/source/ui/drawfunc/fusel.cxx  |   28 
 sc/source/ui/drawfunc/futext.cxx |   37 ++---
 2 files changed, 50 insertions(+), 15 deletions(-)

New commits:
commit ecfe151546e3c0bcea71c949b9fa35a327d71969
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun Mar 10 14:48:37 2013 +0100

changing the note handling was an error, fdo#55430

Change-Id: I1c18f33af2a1199fd9c5e54c0b0c4b52702ca0f6

diff --git a/sc/source/ui/drawfunc/futext.cxx b/sc/source/ui/drawfunc/futext.cxx
index 61fdf0a..02d086a 100644
--- a/sc/source/ui/drawfunc/futext.cxx
+++ b/sc/source/ui/drawfunc/futext.cxx
@@ -135,10 +135,6 @@ sal_Bool FuText::MouseButtonDown(const MouseEvent rMEvt)
 if( !IsSizingOrMovingNote(rMEvt) )
 {
 StopEditMode();// Danebengeklickt, Ende mit Edit
-pView-UnmarkAll();
-bStraightEnter = false;
-ScViewData rViewData = *pViewShell-GetViewData();
-rViewData.GetDispatcher().Execute(aSfxRequest.GetSlot(), 
SFX_CALLMODE_SLOT | SFX_CALLMODE_RECORD);
 }
 pView-SetCreateMode();
 }
commit e5e2405bbb81fe8700a11b015784649e29f8fe7f
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun Mar 10 14:46:05 2013 +0100

reverts d2157548221e28d8f702cc81991f7aef198b523e

diff --git a/sc/source/ui/drawfunc/fusel.cxx b/sc/source/ui/drawfunc/fusel.cxx
index 4968f15..a3568b0 100644
--- a/sc/source/ui/drawfunc/fusel.cxx
+++ b/sc/source/ui/drawfunc/fusel.cxx
@@ -53,6 +53,8 @@
 //  Maximal erlaubte Mausbewegung um noch DragDrop zu starten
 //! fusel,fuconstr,futext - zusammenfassen!
 #define SC_MAXDRAGMOVE  3
+// Min necessary mouse motion for normal dragging
+#define SC_MINDRAGMOVE 2
 
 // ---
 
@@ -381,11 +383,14 @@ sal_Bool FuSelection::MouseButtonUp(const MouseEvent 
rMEvt)
 sal_Bool bReturn = FuDraw::MouseButtonUp(rMEvt);
 sal_Bool bOle = pViewShell-GetViewFrame()-GetFrame().IsInPlace();
 
+SdrObject* pObj = NULL;
+SdrPageView* pPV = NULL;
 if (aDragTimer.IsActive() )
 {
 aDragTimer.Stop();
 }
 
+sal_uInt16 nDrgLog = sal_uInt16 ( 
pWindow-PixelToLogic(Size(SC_MINDRAGMOVE,0)).Width() );
 Point aPnt( pWindow-PixelToLogic( rMEvt.GetPosPixel() ) );
 
 bool bCopy = false;
@@ -416,7 +421,7 @@ sal_Bool FuSelection::MouseButtonUp(const MouseEvent rMEvt)
 for ( sal_uLong i = 0; i  nMarkCount; ++i )
 {
 SdrMark* pMark = rSdrMarkList.GetMark( i );
-SdrObject* pObj = ( pMark ? pMark-GetMarkedSdrObj() : 
NULL );
+pObj = ( pMark ? pMark-GetMarkedSdrObj() : NULL );
 if ( pObj )
 {
 ScChartHelper::AddRangesIfProtectedChart( 
aProtectedChartRangesVector, pDocument, pObj );
@@ -426,6 +431,21 @@ sal_Bool FuSelection::MouseButtonUp(const MouseEvent 
rMEvt)
 bCopy = true;
 }
 
+if (!rMEvt.IsShift()  !rMEvt.IsMod1()  !rMEvt.IsMod2() 
+Abs(aPnt.X() - aMDPos.X())  nDrgLog 
+Abs(aPnt.Y() - aMDPos.Y())  nDrgLog)
+{
+/*
+* If a user wants to click on an object in front of a marked
+* one, he releases the mouse button immediately
+**/
+if (pView-PickObj(aMDPos, pView-getHitTolLog(), pObj, pPV, 
SDRSEARCH_ALSOONMASTER | SDRSEARCH_BEFOREMARK))
+{
+pView-UnmarkAllObj();
+pView-MarkObj(pObj,pPV,false,false);
+return (sal_True);
+}
+}
 pView-EndDragObj( rMEvt.IsMod1() );
 pView-ForceMarkedToAnotherPage();
 
@@ -433,7 +453,7 @@ sal_Bool FuSelection::MouseButtonUp(const MouseEvent rMEvt)
 if (rMarkList.GetMarkCount() == 1)
 {
   SdrMark* pMark = rMarkList.GetMark(0);
-  SdrObject* pObj = pMark-GetMarkedSdrObj();
+  pObj = pMark-GetMarkedSdrObj();
   FuPoor* pPoor = 
pViewShell-GetViewData()-GetView()-GetDrawFuncPtr();
   FuText* pText = static_castFuText*(pPoor);
 pText-StopDragMode(pObj );
@@ -458,7 +478,7 @@ sal_Bool FuSelection::MouseButtonUp(const MouseEvent rMEvt)
 bool bFound = false;
 for( sal_uLong nIdx = 0; !bFound  (nIdx  nCount); 
++nIdx )
 {
-SdrObject* pObj = rMarkList.GetMark( nIdx 
)-GetMarkedSdrObj();
+pObj = rMarkList.GetMark( nIdx )-GetMarkedSdrObj();
 bFound = ScDrawLayer::IsNoteCaption( pObj );

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

2013-03-10 Thread Markus Mohrhard
 sc/source/filter/xml/XMLExportIterator.cxx |   19 ---
 1 file changed, 19 deletions(-)

New commits:
commit 89331b3b4f3798d44ac8bfcf129b24ab8714a8dd
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Sun Mar 10 15:27:31 2013 +0100

this method is now unused

Change-Id: I53f216836f1d8d8ff185c90ccdeda018bbb5dbe0

diff --git a/sc/source/filter/xml/XMLExportIterator.cxx 
b/sc/source/filter/xml/XMLExportIterator.cxx
index 1662db7..520ff51 100644
--- a/sc/source/filter/xml/XMLExportIterator.cxx
+++ b/sc/source/filter/xml/XMLExportIterator.cxx
@@ -837,25 +837,6 @@ void ScMyNotEmptyCellsIterator::SkipTable(SCTAB nSkip)
 pDetectiveOp-SkipTable(nSkip);
 }
 
-namespace {
-
-bool IsNoteBeforeNextCell(const SCCOL nCol, const SCROW nRow, const 
table::CellAddress rAddress)
-{
-if(nRow  rAddress.Row)
-return true;
-else if(nRow  rAddress.Row)
-return false;
-else
-{
-if(nCol  rAddress.Column)
-return true;
-else
-return false;
-}
-}
-
-}
-
 bool ScMyNotEmptyCellsIterator::GetNext(ScMyCell aCell, ScFormatRangeStyles* 
pCellStyles)
 {
 table::CellAddress  aAddress( nCurrentTable, MAXCOL + 1, MAXROW + 1 );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 54157] LibreOffice 4.0 most annoying bugs

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54157

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

   What|Removed |Added

 Depends on||62111

--- Comment #121 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
I add Bug 62111 - CRASH when FILESAVE particular .ods with links to other
documents .xlsx

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


[PATCH] remove remaining UTF bom

2013-03-10 Thread Borim (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2644

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/44/2644/1

remove remaining UTF bom

Change-Id: I3a24a7af782f538cdfad4cc58328c5ab7412c2cc
---
M basctl/uiconfig/basicide/toolbar/dialogbar.xml
M basctl/uiconfig/basicide/toolbar/macrobar.xml
M extensions/test/ole/EventListenerSample/EventListener/EventListener.sln
M extensions/test/ole/VisualBasic/Project1.sln
M extensions/test/ole/VisualBasic/Project1.vbproj
M liborcus/vsprojects/liborcus-static-nozip/liborcus-static-nozip.vcxproj
M liborcus/vsprojects/liborcus/DefaultConfig.props
M liborcus/vsprojects/liborcus/zLib.props
M officecfg/registry/data/org/openoffice/Office/Compatibility.xcu
M officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu
M oox/source/drawingml/customshapes/presetShapeDefinitions.xml
11 files changed, 9 insertions(+), 11 deletions(-)



diff --git a/basctl/uiconfig/basicide/toolbar/dialogbar.xml 
b/basctl/uiconfig/basicide/toolbar/dialogbar.xml
index 850e74a..b6bd33b 100644
--- a/basctl/uiconfig/basicide/toolbar/dialogbar.xml
+++ b/basctl/uiconfig/basicide/toolbar/dialogbar.xml
@@ -1,4 +1,4 @@
-?xml version=1.0 encoding=UTF-8?
+?xml version=1.0 encoding=UTF-8?
 !DOCTYPE toolbar:toolbar PUBLIC -//OpenOffice.org//DTD OfficeDocument 
1.0//EN toolbar.dtd
 !--
  * This file is part of the LibreOffice project.
diff --git a/basctl/uiconfig/basicide/toolbar/macrobar.xml 
b/basctl/uiconfig/basicide/toolbar/macrobar.xml
index 31349dd..96b2e7d 100644
--- a/basctl/uiconfig/basicide/toolbar/macrobar.xml
+++ b/basctl/uiconfig/basicide/toolbar/macrobar.xml
@@ -1,4 +1,4 @@
-?xml version=1.0 encoding=UTF-8?
+?xml version=1.0 encoding=UTF-8?
 !DOCTYPE toolbar:toolbar PUBLIC -//OpenOffice.org//DTD OfficeDocument 
1.0//EN toolbar.dtd
 !--
  * This file is part of the LibreOffice project.
diff --git 
a/extensions/test/ole/EventListenerSample/EventListener/EventListener.sln 
b/extensions/test/ole/EventListenerSample/EventListener/EventListener.sln
index 8420bb4..3837163 100644
--- a/extensions/test/ole/EventListenerSample/EventListener/EventListener.sln
+++ b/extensions/test/ole/EventListenerSample/EventListener/EventListener.sln
@@ -1,4 +1,3 @@
-
 Microsoft Visual Studio Solution File, Format Version 10.00
 # Visual Studio 2008
 Project({8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}) = EventListener, 
EventListener.vcproj, {055137B6-A402-4913-AC11-9A096E866F5B}
diff --git a/extensions/test/ole/VisualBasic/Project1.sln 
b/extensions/test/ole/VisualBasic/Project1.sln
index 24e..bea3e0e 100644
--- a/extensions/test/ole/VisualBasic/Project1.sln
+++ b/extensions/test/ole/VisualBasic/Project1.sln
@@ -1,4 +1,3 @@
-
 Microsoft Visual Studio Solution File, Format Version 10.00
 # Visual Studio 2008
 Project({F184B08F-C81C-45F6-A57F-5ABD9991F28F}) = Project1, 
Project1.vbproj, {F62D440E-8976-4A6D-91A8-89F09701074F}
diff --git a/extensions/test/ole/VisualBasic/Project1.vbproj 
b/extensions/test/ole/VisualBasic/Project1.vbproj
index 213d592..4fd6174 100644
--- a/extensions/test/ole/VisualBasic/Project1.vbproj
+++ b/extensions/test/ole/VisualBasic/Project1.vbproj
@@ -1,4 +1,4 @@
-Project DefaultTargets=Build ToolsVersion=3.5 
xmlns=http://schemas.microsoft.com/developer/msbuild/2003;
+Project DefaultTargets=Build ToolsVersion=3.5 
xmlns=http://schemas.microsoft.com/developer/msbuild/2003;
   PropertyGroup
 ProjectTypeLocal/ProjectType
 MyTypeWindowsFormsWithCustomSubMain/MyType
diff --git 
a/liborcus/vsprojects/liborcus-static-nozip/liborcus-static-nozip.vcxproj 
b/liborcus/vsprojects/liborcus-static-nozip/liborcus-static-nozip.vcxproj
index c63af42..08caf055 100644
--- a/liborcus/vsprojects/liborcus-static-nozip/liborcus-static-nozip.vcxproj
+++ b/liborcus/vsprojects/liborcus-static-nozip/liborcus-static-nozip.vcxproj
@@ -1,4 +1,4 @@
-?xml version=1.0 encoding=utf-8?
+?xml version=1.0 encoding=utf-8?
 Project DefaultTargets=Build ToolsVersion=4.0 
xmlns=http://schemas.microsoft.com/developer/msbuild/2003;
   ItemGroup Label=ProjectConfigurations
 ProjectConfiguration Include=Debug|Win32
diff --git a/liborcus/vsprojects/liborcus/DefaultConfig.props 
b/liborcus/vsprojects/liborcus/DefaultConfig.props
index 7eb7b1b..743f443 100644
--- a/liborcus/vsprojects/liborcus/DefaultConfig.props
+++ b/liborcus/vsprojects/liborcus/DefaultConfig.props
@@ -1,4 +1,4 @@
-?xml version=1.0 encoding=utf-8?
+?xml version=1.0 encoding=utf-8?
 Project DefaultTargets=Build ToolsVersion=4.0 
xmlns=http://schemas.microsoft.com/developer/msbuild/2003;
   PropertyGroup
 _ProjectFileVersion10.0.40219.1/_ProjectFileVersion
diff --git a/liborcus/vsprojects/liborcus/zLib.props 
b/liborcus/vsprojects/liborcus/zLib.props
index 19e9219..191ce13 100644
--- a/liborcus/vsprojects/liborcus/zLib.props
+++ b/liborcus/vsprojects/liborcus/zLib.props
@@ -1,4 +1,4 @@
-?xml version=1.0 encoding=utf-8?
+?xml version=1.0 encoding=utf-8?
 Project 

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

2013-03-10 Thread Rene Engelhard
 RepositoryModule_host.mk |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b6e4c0e532d0b3b3291fd4b106d207370aa014cb
Author: Rene Engelhard r...@debian.org
Date:   Sun Mar 10 17:30:16 2013 +0100

another s/MYSQLC/MARIADBC/ - in RepositoryModule_host.mk

Change-Id: I656281844c625bb9074ac2d5b7384eaf71d84e74

diff --git a/RepositoryModule_host.mk b/RepositoryModule_host.mk
index 40773ba..6cf2e04 100644
--- a/RepositoryModule_host.mk
+++ b/RepositoryModule_host.mk
@@ -133,7 +133,7 @@ $(eval $(call gb_Module_add_moduledirs,libreoffice,\
Mesa \
$(call gb_Helper_optional,MORE_FONTS,more_fonts) \
$(call gb_Helper_optional,MOZ,moz) \
-   $(call gb_Helper_optional,MYSQLC,mysqlc) \
+   $(call gb_Helper_optional,MARIADBC,mysqlc) \
$(call gb_Helper_optional,MYSQLCPPCONN,mysqlcppconn) \
$(call gb_Helper_optional,MYTHES,mythes) \
$(call gb_Helper_optional,NEON,neon) \
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Question on call to IsCrookAllowed in SdrDragView::BegDragObj

2013-03-10 Thread Philippe Jung
Hello,

Trying to implement crop Image in writer, I reached the case
SDRDRAG_CROP code in  SdrDragView::BegDragObj.

This part of code calls new SdrDragCrop if and only if
IsCrookAllowed(true) or IsCrookAllowed(false)

This basically means that the cropped object must be RotateFreeAllowed
or ContortionPossible.

If I create a IsCropAllowed for the SDRDRAG_CROP case (not changing
anything for SDRDRAG_CROOK case) and in IsCropAllowed I put only

ForcePossibilities();
return (!bMoveProtect  bMoveAllowed)
   || (!bResizeProtect  bContortionPossible);

this works and I can continue implementing the feature.

However, does it makes sense? Is there a risk of side effect in another
module?

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


[Libreoffice-commits] core.git: dbaccess/inc oox/inc sc/inc svtools/inc svx/inc sw/inc vcl/inc xmloff/inc

2013-03-10 Thread Peter Foley
 dbaccess/inc/pch/precompiled_dbu.hxx |1 +
 oox/inc/pch/precompiled_oox.hxx  |1 +
 sc/inc/pch/precompiled_sc.hxx|1 +
 svtools/inc/pch/precompiled_svt.hxx  |   13 -
 svx/inc/pch/precompiled_svxcore.hxx  |2 +-
 sw/inc/pch/precompiled_sw.hxx|4 +++-
 vcl/inc/pch/precompiled_vcl.hxx  |1 +
 xmloff/inc/pch/precompiled_xo.hxx|3 +++
 8 files changed, 19 insertions(+), 7 deletions(-)

New commits:
commit b56e53f1358ab48173aa8f17acc6d40352320d9c
Author: Peter Foley pefol...@verizon.net
Date:   Sun Mar 10 14:31:18 2013 -0400

update pch files

Change-Id: I07c1acc9f9e788f1165b3e241008aa944485790d

diff --git a/dbaccess/inc/pch/precompiled_dbu.hxx 
b/dbaccess/inc/pch/precompiled_dbu.hxx
index c886ead..1d358ef 100644
--- a/dbaccess/inc/pch/precompiled_dbu.hxx
+++ b/dbaccess/inc/pch/precompiled_dbu.hxx
@@ -343,6 +343,7 @@
 #include rtl/tencinfo.h
 #include rtl/ustrbuf.hxx
 #include rtl/ustring.hxx
+#include set
 #include sfx2/QuerySaveDocument.hxx
 #include sfx2/app.hxx
 #include sfx2/dispatch.hxx
diff --git a/oox/inc/pch/precompiled_oox.hxx b/oox/inc/pch/precompiled_oox.hxx
index fcd43be..c1831b3 100644
--- a/oox/inc/pch/precompiled_oox.hxx
+++ b/oox/inc/pch/precompiled_oox.hxx
@@ -202,6 +202,7 @@
 #include com/sun/star/frame/Desktop.hpp
 #include com/sun/star/frame/XFramesSupplier.hpp
 #include com/sun/star/frame/XModel.hpp
+#include com/sun/star/geometry/IntegerRectangle2D.hpp
 #include com/sun/star/graphic/GraphicObject.hpp
 #include com/sun/star/graphic/GraphicProvider.hpp
 #include com/sun/star/graphic/XGraphic.hpp
diff --git a/sc/inc/pch/precompiled_sc.hxx b/sc/inc/pch/precompiled_sc.hxx
index af11f0f..ebf64c1 100644
--- a/sc/inc/pch/precompiled_sc.hxx
+++ b/sc/inc/pch/precompiled_sc.hxx
@@ -414,6 +414,7 @@
 #include com/sun/star/ui/XAcceleratorConfiguration.hpp
 #include com/sun/star/ui/dialogs/ExecutableDialogResults.hpp
 #include com/sun/star/ui/dialogs/FilePicker.hpp
+#include com/sun/star/ui/dialogs/TemplateDescription.hpp
 #include com/sun/star/ui/dialogs/XExecutableDialog.hpp
 #include com/sun/star/uno/Any.hxx
 #include com/sun/star/uno/Exception.hpp
diff --git a/svtools/inc/pch/precompiled_svt.hxx 
b/svtools/inc/pch/precompiled_svt.hxx
index 17d6768..f1db95a 100644
--- a/svtools/inc/pch/precompiled_svt.hxx
+++ b/svtools/inc/pch/precompiled_svt.hxx
@@ -83,8 +83,10 @@
 #include com/sun/star/awt/grid/XGridColumn.hpp
 #include com/sun/star/awt/grid/XGridColumnListener.hpp
 #include com/sun/star/awt/grid/XSortableGridData.hpp
+#include com/sun/star/awt/tree/DefaultTreeDataModel.hpp
 #include com/sun/star/awt/tree/XMutableTreeNode.hpp
 #include com/sun/star/beans/NamedValue.hpp
+#include com/sun/star/beans/Property.hpp
 #include com/sun/star/beans/PropertyAttribute.hpp
 #include com/sun/star/beans/PropertyState.hpp
 #include com/sun/star/beans/PropertyValue.hpp
@@ -158,9 +160,6 @@
 #include com/sun/star/i18n/Weekdays.hpp
 #include com/sun/star/io/IOException.hpp
 #include com/sun/star/io/NotConnectedException.hpp
-#include com/sun/star/io/XActiveDataControl.hpp
-#include com/sun/star/io/XActiveDataSource.hpp
-#include com/sun/star/io/XOutputStream.hpp
 #include com/sun/star/io/XPersist.hpp
 #include com/sun/star/io/XSeekable.hpp
 #include com/sun/star/io/XStream.hpp
@@ -208,9 +207,11 @@
 #include com/sun/star/ucb/ContentCreationException.hpp
 #include com/sun/star/ucb/NumberedSortingInfo.hpp
 #include com/sun/star/ucb/SortedDynamicResultSetFactory.hpp
+#include com/sun/star/ucb/UniversalContentBroker.hpp
 #include com/sun/star/ucb/XAnyCompareFactory.hpp
 #include com/sun/star/ucb/XCommandEnvironment.hpp
 #include com/sun/star/ucb/XCommandInfo.hpp
+#include com/sun/star/ucb/XCommandProcessor2.hpp
 #include com/sun/star/ucb/XContent.hpp
 #include com/sun/star/ucb/XContentAccess.hpp
 #include com/sun/star/ucb/XDynamicResultSet.hpp
@@ -221,7 +222,9 @@
 #include com/sun/star/ui/ModuleUIConfigurationManagerSupplier.hpp
 #include com/sun/star/ui/XUIConfigurationManager.hpp
 #include com/sun/star/ui/XUIConfigurationManagerSupplier.hpp
+#include com/sun/star/ui/dialogs/AddressBookSourcePilot.hpp
 #include com/sun/star/ui/dialogs/FilePicker.hpp
+#include com/sun/star/ui/dialogs/TemplateDescription.hpp
 #include com/sun/star/ui/dialogs/WizardButton.hpp
 #include com/sun/star/ui/dialogs/WizardTravelType.hpp
 #include com/sun/star/ui/dialogs/XExecutableDialog.hpp
@@ -250,6 +253,7 @@
 #include com/sun/star/util/XNumberFormatTypes.hpp
 #include com/sun/star/util/XOfficeInstallationDirectories.hpp
 #include com/sun/star/util/XURLTransformer.hpp
+#include com/sun/star/util/theOfficeInstallationDirectories.hpp
 #include com/sun/star/view/SelectionType.hpp
 #include com/sun/star/view/XPrintable.hpp
 #include com/sun/star/view/XSelectionSupplier.hpp
@@ -337,7 +341,6 @@
 #include stdio.h
 #include stdlib.h
 #include string.h
-#include svl/cntwall.hxx
 #include svl/eitem.hxx
 #include svl/inettype.hxx
 #include svl/itempool.hxx
@@ -428,10 +431,10 @@
 

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

2013-03-10 Thread Lei De Bin
 sw/source/filter/inc/msfilter.hxx   |6 +
 sw/source/filter/ww8/writerwordglue.cxx |   36 ++--
 2 files changed, 40 insertions(+), 2 deletions(-)

New commits:
commit a2e964afc5187fc1e3b38720ec10ad9856b87020
Author: Lei De Bin le...@apache.org
Date:   Thu Aug 16 01:30:17 2012 +

Resolves: #i120158# fix Time format is different than MS Office issue

Reported by: Yan Ji
Patch by: Chen Zuo Jun
Review by: Lei De Bin (cherry picked from commit 
a535dd7eaa71a599b92c04eb9c6bab7678c30eb2)

Conflicts:
sw/source/filter/inc/msfilter.hxx
sw/source/filter/ww8/writerwordglue.cxx

Change-Id: Ie93d3755dfd230cea1914a67974e717c825c07a7

diff --git a/sw/source/filter/inc/msfilter.hxx 
b/sw/source/filter/inc/msfilter.hxx
index 1f807c02..00a0172 100644
--- a/sw/source/filter/inc/msfilter.hxx
+++ b/sw/source/filter/inc/msfilter.hxx
@@ -105,6 +105,12 @@ namespace sw
 */
 sal_uLong MSDateTimeFormatToSwFormat(String rParams, 
SvNumberFormatter *pFormatter, sal_uInt16 rLang, bool bHijri, sal_uInt16 
nDocLang);
 
+/*Used to identify if the previous token is AM time field*/
+sal_Bool IsPreviousAM(String rParams, xub_StrLen nPos);
+
+/*Used to identify if the next token is PM time field*/
+sal_Bool IsNextPM(String rParams, xub_StrLen nPos);
+
 /** Used by MSDateTimeFormatToSwFormat to identify AM time fields
 
 @author
diff --git a/sw/source/filter/ww8/writerwordglue.cxx 
b/sw/source/filter/ww8/writerwordglue.cxx
index c0149d5..b4afcff 100644
--- a/sw/source/filter/ww8/writerwordglue.cxx
+++ b/sw/source/filter/ww8/writerwordglue.cxx
@@ -807,8 +807,12 @@ namespace sw
 }
 if (nChar == '/')
 {
-// MM We have to escape '/' in case it's used as a char
-rParams.Replace(nI, 1, rtl::OUString(\\/));
+// MM: We have to escape '/' in case it's used as a 
char.
+// But not if it's a '/' inside AM/PM
+if (!(IsPreviousAM(rParams, nI)  IsNextPM(rParams, 
nI)))
+{
+rParams.Replace(nI, 1, rtl::OUString(\\/));
+}
 nI++;
 nLen++;
 }
@@ -950,6 +954,34 @@ namespace sw
 return nKey;
 }
 
+sal_Bool IsPreviousAM(String rParams, xub_StrLen nPos){
+xub_StrLen nPos1 = nPos - 1;
+xub_StrLen nPos2 = nPos - 2;
+
+if(nPos1  nPos || nPos2  nPos){
+return sal_False;
+}else{
+return (
+(rParams.GetChar(nPos1) == 'M'||rParams.GetChar(nPos1) == 
'm')
+(rParams.GetChar(nPos2) == 'A'||rParams.GetChar(nPos2) == 
'a')
+);
+}
+}
+sal_Bool IsNextPM(String rParams, xub_StrLen nPos){
+xub_StrLen nPos1 = nPos + 1;
+xub_StrLen nPos2 = nPos + 2;
+
+
+if(nPos1 = rParams.Len() - 1 || nPos2  rParams.Len() - 1){
+return sal_False;
+}else{
+return (
+(rParams.GetChar(nPos1) == 'P'||rParams.GetChar(nPos1) == 
'p')
+(rParams.GetChar(nPos2) == 'M'||rParams.GetChar(nPos2) == 
'm')
+);
+}
+
+}
 bool IsNotAM(String rParams, xub_StrLen nPos)
 {
 return (
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - a5/35dd7eaa71a599b92c04eb9c6bab7678c30eb2

2013-03-10 Thread Caolán McNamara
 a5/35dd7eaa71a599b92c04eb9c6bab7678c30eb2 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 797f0c6dc3eadcece17f90075933cd0db349084b
Author: Caolán McNamara caol...@redhat.com
Date:   Sun Mar 10 18:59:27 2013 +

Notes added by 'git notes add'

diff --git a/a5/35dd7eaa71a599b92c04eb9c6bab7678c30eb2 
b/a5/35dd7eaa71a599b92c04eb9c6bab7678c30eb2
new file mode 100644
index 000..033ea97
--- /dev/null
+++ b/a5/35dd7eaa71a599b92c04eb9c6bab7678c30eb2
@@ -0,0 +1 @@
+merged as: a2e964afc5187fc1e3b38720ec10ad9856b87020
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] fdo#61726: rename report-builder package to org.libreoffice....

2013-03-10 Thread David Ostrovsky (via Code Review)
Hello Stephan Bergmann, LibreOffice gerrit bot,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/2578

to look at the new patch set (#5).

Change subject: fdo#61726: rename report-builder package to 
org.libreoffice.report
..

fdo#61726: rename report-builder package to org.libreoffice.report

To prevent future clashes with uno's name space rename the
com.sun.star.report package to org.libreoffice.report.

Bump the version to 1.2.4.

Change-Id: Ia06cb7ad8c1528c1d5b5eeb70f1e4b2aa854b70f
---
M Repository.mk
M connectivity/source/commontools/dbtools2.cxx
M dbaccess/source/ui/app/AppController.cxx
M reportbuilder/Configuration_reportbuilder.mk
M reportbuilder/Extension_reportbuilder.mk
M reportbuilder/Jar_reportbuilder.mk
D reportbuilder/java/com/sun/star/report/pentaho/configuration.properties
D reportbuilder/java/com/sun/star/report/pentaho/parser/selectors.properties
M reportbuilder/java/jfreereport.properties
M reportbuilder/java/libformula.properties
M reportbuilder/java/loader.properties
R reportbuilder/java/org/libreoffice/report/DataRow.java
R reportbuilder/java/org/libreoffice/report/DataSource.java
R reportbuilder/java/org/libreoffice/report/DataSourceException.java
R reportbuilder/java/org/libreoffice/report/DataSourceFactory.java
R reportbuilder/java/org/libreoffice/report/ImageService.java
R reportbuilder/java/org/libreoffice/report/InputRepository.java
R reportbuilder/java/org/libreoffice/report/JobDefinitionException.java
R reportbuilder/java/org/libreoffice/report/JobProgressIndicator.java
R reportbuilder/java/org/libreoffice/report/JobProperties.java
R reportbuilder/java/org/libreoffice/report/OfficeToken.java
R reportbuilder/java/org/libreoffice/report/OutputRepository.java
R reportbuilder/java/org/libreoffice/report/ParameterMap.java
R reportbuilder/java/org/libreoffice/report/ReportAddIn.java
R reportbuilder/java/org/libreoffice/report/ReportEngineMetaData.java
R reportbuilder/java/org/libreoffice/report/ReportEngineParameterNames.java
R reportbuilder/java/org/libreoffice/report/ReportExecutionException.java
R reportbuilder/java/org/libreoffice/report/ReportExpression.java
R reportbuilder/java/org/libreoffice/report/ReportExpressionMetaData.java
R reportbuilder/java/org/libreoffice/report/ReportFunction.java
R reportbuilder/java/org/libreoffice/report/ReportJob.java
R reportbuilder/java/org/libreoffice/report/ReportJobDefinition.java
R reportbuilder/java/org/libreoffice/report/ReportJobFactory.java
R reportbuilder/java/org/libreoffice/report/SDBCReportData.java
R reportbuilder/java/org/libreoffice/report/SDBCReportDataFactory.java
R reportbuilder/java/org/libreoffice/report/SOImageService.java
R reportbuilder/java/org/libreoffice/report/StorageRepository.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/Author-Function.properties
R 
reportbuilder/java/org/libreoffice/report/function/metadata/Author-Function_en_US.properties
R 
reportbuilder/java/org/libreoffice/report/function/metadata/AuthorFunction.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/AuthorFunctionDescription.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/MetaDataFunctionCategory.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/Title-Function.properties
R 
reportbuilder/java/org/libreoffice/report/function/metadata/Title-Function_en_US.properties
R reportbuilder/java/org/libreoffice/report/function/metadata/TitleFunction.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/TitleFunctionDescription.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/category.properties
R 
reportbuilder/java/org/libreoffice/report/function/metadata/category_en_US.properties
R reportbuilder/java/org/libreoffice/report/pentaho/DefaultNameGenerator.java
R reportbuilder/java/org/libreoffice/report/pentaho/Manifest.mf
R reportbuilder/java/org/libreoffice/report/pentaho/OfficeNamespaces.java
R reportbuilder/java/org/libreoffice/report/pentaho/PentahoFormulaContext.java
R reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportAddIn.java
R reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngine.java
R 
reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngineMetaData.java
R reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportJob.java
R reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaOpCodeMapper.java
R reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaParser.java
R reportbuilder/java/org/libreoffice/report/pentaho/SOFunctionManager.java
R reportbuilder/java/org/libreoffice/report/pentaho/SOReportJobFactory.java
R reportbuilder/java/org/libreoffice/report/pentaho/StarFunctionCategory.java
R reportbuilder/java/org/libreoffice/report/pentaho/StarFunctionDescription.java
R reportbuilder/java/org/libreoffice/report/pentaho/StarReportData.java
R 

[PATCH] fdo#61726: rename report-builder package to org.libreoffice....

2013-03-10 Thread David Ostrovsky (via Code Review)
Hello Stephan Bergmann, LibreOffice gerrit bot,

I'd like you to reexamine a rebased change.  Please visit

https://gerrit.libreoffice.org/2578

to look at the new rebased patch set (#6).

Change subject: fdo#61726: rename report-builder package to 
org.libreoffice.report
..

fdo#61726: rename report-builder package to org.libreoffice.report

To prevent future clashes with uno's name space rename the
com.sun.star.report package to org.libreoffice.report.

Bump the version to 1.2.4.

Change-Id: Ia06cb7ad8c1528c1d5b5eeb70f1e4b2aa854b70f
---
M Repository.mk
M connectivity/source/commontools/dbtools2.cxx
M dbaccess/source/ui/app/AppController.cxx
M reportbuilder/Configuration_reportbuilder.mk
M reportbuilder/Extension_reportbuilder.mk
M reportbuilder/Jar_reportbuilder.mk
D reportbuilder/java/com/sun/star/report/pentaho/configuration.properties
D reportbuilder/java/com/sun/star/report/pentaho/parser/selectors.properties
M reportbuilder/java/jfreereport.properties
M reportbuilder/java/libformula.properties
M reportbuilder/java/loader.properties
R reportbuilder/java/org/libreoffice/report/DataRow.java
R reportbuilder/java/org/libreoffice/report/DataSource.java
R reportbuilder/java/org/libreoffice/report/DataSourceException.java
R reportbuilder/java/org/libreoffice/report/DataSourceFactory.java
R reportbuilder/java/org/libreoffice/report/ImageService.java
R reportbuilder/java/org/libreoffice/report/InputRepository.java
R reportbuilder/java/org/libreoffice/report/JobDefinitionException.java
R reportbuilder/java/org/libreoffice/report/JobProgressIndicator.java
R reportbuilder/java/org/libreoffice/report/JobProperties.java
R reportbuilder/java/org/libreoffice/report/OfficeToken.java
R reportbuilder/java/org/libreoffice/report/OutputRepository.java
R reportbuilder/java/org/libreoffice/report/ParameterMap.java
R reportbuilder/java/org/libreoffice/report/ReportAddIn.java
R reportbuilder/java/org/libreoffice/report/ReportEngineMetaData.java
R reportbuilder/java/org/libreoffice/report/ReportEngineParameterNames.java
R reportbuilder/java/org/libreoffice/report/ReportExecutionException.java
R reportbuilder/java/org/libreoffice/report/ReportExpression.java
R reportbuilder/java/org/libreoffice/report/ReportExpressionMetaData.java
R reportbuilder/java/org/libreoffice/report/ReportFunction.java
R reportbuilder/java/org/libreoffice/report/ReportJob.java
R reportbuilder/java/org/libreoffice/report/ReportJobDefinition.java
R reportbuilder/java/org/libreoffice/report/ReportJobFactory.java
R reportbuilder/java/org/libreoffice/report/SDBCReportData.java
R reportbuilder/java/org/libreoffice/report/SDBCReportDataFactory.java
R reportbuilder/java/org/libreoffice/report/SOImageService.java
R reportbuilder/java/org/libreoffice/report/StorageRepository.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/Author-Function.properties
R 
reportbuilder/java/org/libreoffice/report/function/metadata/Author-Function_en_US.properties
R 
reportbuilder/java/org/libreoffice/report/function/metadata/AuthorFunction.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/AuthorFunctionDescription.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/MetaDataFunctionCategory.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/Title-Function.properties
R 
reportbuilder/java/org/libreoffice/report/function/metadata/Title-Function_en_US.properties
R reportbuilder/java/org/libreoffice/report/function/metadata/TitleFunction.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/TitleFunctionDescription.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/category.properties
R 
reportbuilder/java/org/libreoffice/report/function/metadata/category_en_US.properties
R reportbuilder/java/org/libreoffice/report/pentaho/DefaultNameGenerator.java
R reportbuilder/java/org/libreoffice/report/pentaho/Manifest.mf
R reportbuilder/java/org/libreoffice/report/pentaho/OfficeNamespaces.java
R reportbuilder/java/org/libreoffice/report/pentaho/PentahoFormulaContext.java
R reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportAddIn.java
R reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngine.java
R 
reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngineMetaData.java
R reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportJob.java
R reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaOpCodeMapper.java
R reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaParser.java
R reportbuilder/java/org/libreoffice/report/pentaho/SOFunctionManager.java
R reportbuilder/java/org/libreoffice/report/pentaho/SOReportJobFactory.java
R reportbuilder/java/org/libreoffice/report/pentaho/StarFunctionCategory.java
R reportbuilder/java/org/libreoffice/report/pentaho/StarFunctionDescription.java
R reportbuilder/java/org/libreoffice/report/pentaho/StarReportData.java
R 

[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 18/16e39ae9a7dac9566ad9f6b53e2be545ea7902

2013-03-10 Thread Caolán McNamara
 18/16e39ae9a7dac9566ad9f6b53e2be545ea7902 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 28bc7e60a18eda220980755d1d31005ce17e1879
Author: Caolán McNamara caol...@redhat.com
Date:   Sun Mar 10 19:08:57 2013 +

Notes added by 'git notes add'

diff --git a/18/16e39ae9a7dac9566ad9f6b53e2be545ea7902 
b/18/16e39ae9a7dac9566ad9f6b53e2be545ea7902
new file mode 100644
index 000..368db74
--- /dev/null
+++ b/18/16e39ae9a7dac9566ad9f6b53e2be545ea7902
@@ -0,0 +1 @@
+prefer: b90ac7d682fd65f75eff4225d871130c0ae9f185
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] fdo#43157 - Clean up OSL_ASSERT, DBG_ASSERT

2013-03-10 Thread Ioan Radu (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2651

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/51/2651/1

fdo#43157 - Clean up OSL_ASSERT, DBG_ASSERT

- replaced OSL_TRACE with SAL_INFO
- replaced OSL_ENSURE with SAL_WARN_IF

Change-Id: Ie30fbc9c720d8b93d6093e2c95f61dceea8aae2f
---
M oox/source/ppt/animationspersist.cxx
M oox/source/ppt/commonbehaviorcontext.cxx
M oox/source/ppt/pptshape.cxx
M sw/source/filter/ww8/ww8toolbar.cxx
4 files changed, 56 insertions(+), 57 deletions(-)



diff --git a/oox/source/ppt/animationspersist.cxx 
b/oox/source/ppt/animationspersist.cxx
index 74a9208..9917b60 100644
--- a/oox/source/ppt/animationspersist.cxx
+++ b/oox/source/ppt/animationspersist.cxx
@@ -27,6 +27,7 @@
 #include com/sun/star/presentation/ShapeAnimationSubType.hpp
 
 #include oox/drawingml/shape.hxx
+#include sal/log.hxx
 
 using namespace ::com::sun::star::uno;
 using namespace ::com::sun::star::presentation;
@@ -60,12 +61,12 @@
 {
 case XML_charRg:
 // TODO calculate the corresponding paragraph for the text 
range
-OSL_TRACE( OOX: TODO calculate the corresponding 
paragraph for the text range... );
+SAL_INFO(oox.ppt, OOX: TODO calculate the corresponding 
paragraph for the text range... );
 break;
 case XML_pRg:
 aParaTarget.Paragraph = static_cast sal_Int16 ( 
maRange.start );
 // TODO what to do with more than one.
-OSL_TRACE( OOX: TODO what to do with more than one );
+SAL_INFO(oox.ppt, OOX: TODO what to do with more than 
one );
 break;
 }
 rTarget = makeAny( aParaTarget );
@@ -86,11 +87,11 @@
 {
 case XML_inkTgt:
 // TODO
-OSL_TRACE( OOX: TODO inkTgt );
+SAL_INFO(oox.ppt, OOX: TODO inkTgt );
 break;
 case XML_sldTgt:
 // TODO
-OSL_TRACE( OOX: TODO sldTgt );
+SAL_INFO(oox.ppt, OOX: TODO sldTgt );
 break;
 case XML_sndTgt:
 aTarget = makeAny(msValue);
@@ -99,11 +100,11 @@
 {
 Any rTarget;
 ::oox::drawingml::ShapePtr pShape = pSlide-getShape(msValue);
-OSL_ENSURE( pShape, failed to locate Shape);
+SAL_WARN_IF( !pShape, oox.ppt, failed to locate Shape);
 if( pShape )
 {
 Reference XShape  xShape( pShape-getXShape() );
-OSL_ENSURE( xShape.is(), fail to get XShape from shape );
+SAL_WARN_IF( !xShape.is(), oox.ppt, fail to get XShape from 
shape );
 if( xShape.is() )
 {
 rTarget = xShape;
diff --git a/oox/source/ppt/commonbehaviorcontext.cxx 
b/oox/source/ppt/commonbehaviorcontext.cxx
index 14c6c6b..d0f24a5 100644
--- a/oox/source/ppt/commonbehaviorcontext.cxx
+++ b/oox/source/ppt/commonbehaviorcontext.cxx
@@ -19,7 +19,7 @@
 
 #include comphelper/anytostring.hxx
 #include cppuhelper/exc_hlp.hxx
-#include osl/diagnose.h
+#include sal/log.hxx
 #include rtl/ustrbuf.hxx
 
 #include com/sun/star/animations/XTimeContainer.hpp
@@ -98,9 +98,7 @@
  
RTL_TEXTENCODING_ASCII_US );
 attr.type = attrConv-meAttribute;
 maAttributes.push_back( attr );
-OSL_TRACE( OOX: attrName is %s - %s,
-   OUSTRING_TO_CSTR( msCurrentAttribute ),
-   attrConv-mpAPIName );
+SAL_INFO(oox.ppt, OOX: attrName is   
OUSTRING_TO_CSTR( msCurrentAttribute )   -   attrConv-mpAPIName );
 break;
 }
 attrConv++;
@@ -143,7 +141,7 @@
 }
 else
 {
-OSL_TRACE( OOX: Attribute Name outside an Attribute List );
+SAL_INFO(oox.ppt, OOX: Attribute Name outside an Attribute 
List );
 }
 return this;
 }
diff --git a/oox/source/ppt/pptshape.cxx b/oox/source/ppt/pptshape.cxx
index 6da39d3..326ab76 100644
--- a/oox/source/ppt/pptshape.cxx
+++ b/oox/source/ppt/pptshape.cxx
@@ -28,6 +28,7 @@
 #include com/sun/star/text/XText.hpp
 #include basegfx/matrix/b2dhommatrix.hxx
 #include oox/ppt/slidepersist.hxx
+#include sal/log.hxx
 
 using namespace ::oox::core;
 using namespace ::oox::drawingml;
@@ -84,7 +85,7 @@
 {
 oox::drawingml::TextListStylePtr pTextListStyle;
 
-OSL_TRACE( subtype style: %s, lclDebugSubType( nSubType ) );
+SAL_INFO(oox.ppt, subtype style:   lclDebugSubType( nSubType ) );
 
 switch( nSubType )
 {
@@ -116,7 +117,7 @@
 const awt::Rectangle* pShapeRect,
 ::oox::drawingml::ShapeIdMap* 

Re: [PUSHED] Fixes fdo#60701 by escaping uri-encode path correctly

2013-03-10 Thread Stephan Bergmann

On 03/09/2013 12:05 PM, Stephan Bergmann wrote:

On 03/08/2013 08:47 PM, Arnaud Versini wrote:

My mistake, the good way I think is %q, not %b, is it correct or not ?


While that would solve the second part of the problem at least for Linux
(as %q is not Posix) I guess,


Ach, come to think of it, even %q would not work---the backslashes it 
introduces into the value of URI_ENCODE would not be considered as 
quoting when expanding $URI_ENCODE.  Developing a working intuition for 
how the shell works is admittedly difficult.


Stephan

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


Re: --enable-pch option is broken?

2013-03-10 Thread David Ostrovsky

Hi Peter,

On 10.03.2013 22:05, Peter Foley wrote:

David,

Should be fixed now.

thank you! I never used that option.
The problem is that some tinderboxes use that option. And these 
tinderboxes are driven in dual mode:
master  gerrit-buildbot - so that we have false negative for 
gerrit-buildbot-verification.


you can just run ./solenv/bin/update_pch.sh to auto-regenerate all the 
pch files.
Maybe a note should be added somewhere to run it whenever header files 
are moved around?


I wonder if we can somehow pass that event: regenerate all pch files in 
some special case to tinderbox?


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


[PATCH] add pch support to gcc

2013-03-10 Thread Peter Foley (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2653

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/53/2653/1

add pch support to gcc

Change-Id: I58c11477c1ce48185528db3a8013b5dccf3947c6
---
M configure.ac
M solenv/gbuild/TargetLocations.mk
M solenv/gbuild/platform/com_GCC_class.mk
M sw/source/ui/dbui/swdbtoolsclient.cxx
4 files changed, 17 insertions(+), 11 deletions(-)



diff --git a/configure.ac b/configure.ac
index d43892c..61eb8ac 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4394,9 +4394,7 @@
 if test $_os = WINNT -a $WITH_MINGW != yes; then
 ENABLE_PCH=TRUE
 AC_MSG_RESULT([yes])
-# GCC PCH support is reportedly a hack that's not very reliable,
-# so support only Clang.
-elif test $GCC = yes -a $COM_GCC_IS_CLANG = TRUE; then
+elif test $GCC = yes; then
 ENABLE_PCH=TRUE
 AC_MSG_RESULT([yes])
 else
diff --git a/solenv/gbuild/TargetLocations.mk b/solenv/gbuild/TargetLocations.mk
index 6fa782b..68a3c67 100644
--- a/solenv/gbuild/TargetLocations.mk
+++ b/solenv/gbuild/TargetLocations.mk
@@ -157,8 +157,8 @@
 gb_Module_get_slowcheck_target = $(WORKDIR)/Module/slowcheck/$(1)
 gb_Module_get_subsequentcheck_target = $(WORKDIR)/Module/subsequentcheck/$(1)
 gb_Module_get_target = $(WORKDIR)/Module/$(1)
-gb_NoexPrecompiledHeader_get_dep_target = 
$(WORKDIR)/Dep/NoexPrecompiledHeader/$(gb_NoexPrecompiledHeader_DEBUGDIR)/$(1).hxx.pch.d
-gb_NoexPrecompiledHeader_get_target = 
$(WORKDIR)/NoexPrecompiledHeader/$(gb_NoexPrecompiledHeader_DEBUGDIR)/$(1).hxx.pch
+gb_NoexPrecompiledHeader_get_dep_target = 
$(WORKDIR)/Dep/NoexPrecompiledHeader/$(gb_NoexPrecompiledHeader_DEBUGDIR)/$(1).hxx.gch.d
+gb_NoexPrecompiledHeader_get_target = 
$(WORKDIR)/NoexPrecompiledHeader/$(gb_NoexPrecompiledHeader_DEBUGDIR)/$(1).hxx.gch
 gb_NoexPrecompiledHeader_get_timestamp = 
$(WORKDIR)/NoexPrecompiledHeader/$(gb_NoexPrecompiledHeader_DEBUGDIR)/Timestamps/$(1)
 gb_ObjCxxObject_get_target = $(WORKDIR)/ObjCxxObject/$(1).o
 gb_ObjCObject_get_target = $(WORKDIR)/ObjCObject/$(1).o
@@ -167,8 +167,8 @@
 gb_Package_get_target = $(WORKDIR)/Package/$(1)
 gb_Package_get_target_for_build = $(WORKDIR_FOR_BUILD)/Package/$(1)
 gb_Postprocess_get_target = $(WORKDIR)/Postprocess/$(1)
-gb_PrecompiledHeader_get_dep_target = 
$(WORKDIR)/Dep/PrecompiledHeader/$(gb_PrecompiledHeader_DEBUGDIR)/$(1).hxx.pch.d
-gb_PrecompiledHeader_get_target = 
$(WORKDIR)/PrecompiledHeader/$(gb_PrecompiledHeader_DEBUGDIR)/$(1).hxx.pch
+gb_PrecompiledHeader_get_dep_target = 
$(WORKDIR)/Dep/PrecompiledHeader/$(gb_PrecompiledHeader_DEBUGDIR)/$(1).hxx.gch.d
+gb_PrecompiledHeader_get_target = 
$(WORKDIR)/PrecompiledHeader/$(gb_PrecompiledHeader_DEBUGDIR)/$(1).hxx.gch
 gb_PrecompiledHeader_get_timestamp = 
$(WORKDIR)/PrecompiledHeader/$(gb_PrecompiledHeader_DEBUGDIR)/Timestamps/$(1)
 gb_Pyuno_get_target = $(WORKDIR)/Pyuno/$(1).zip
 gb_Pyuno_get_outdir_target = $(OUTDIR)/bin/$(1).zip
diff --git a/solenv/gbuild/platform/com_GCC_class.mk 
b/solenv/gbuild/platform/com_GCC_class.mk
index b51a723..b177dae 100644
--- a/solenv/gbuild/platform/com_GCC_class.mk
+++ b/solenv/gbuild/platform/com_GCC_class.mk
@@ -182,12 +182,16 @@
-o $(call gb_SrsPartTarget_get_dep_target,$(1)))
 endef
 
-ifeq ($(COM_GCC_IS_CLANG),TRUE)
 # PrecompiledHeader class
 
+ifeq ($(COM_GCC_IS_CLANG),TRUE)
 gb_PrecompiledHeader_get_enableflags = -include-pch $(call 
gb_PrecompiledHeader_get_target,$(1))
+else
+gb_PrecompiledHeader_get_enableflags = -include $(notdir $(subst .gch,,$(call 
gb_PrecompiledHeader_get_target,$(1 \
+  -I $(dir $(call 
gb_PrecompiledHeader_get_target,$(1)))
+endif
 
-# Clang does not need any extra .o file for PCH
+# Clang and gcc do not need any extra .o file for PCH
 gb_PrecompiledHeader_get_objectfile =
 
 define gb_PrecompiledHeader__command
@@ -209,7 +213,12 @@
 
 # NoexPrecompiledHeader class
 
+ifeq ($(COM_GCC_IS_CLANG),TRUE)
 gb_NoexPrecompiledHeader_get_enableflags = -include-pch $(call 
gb_NoexPrecompiledHeader_get_target,$(1))
+else
+gb_NoexPrecompiledHeader_get_enableflags = -include $(notdir $(subst 
.gch,,$(call gb_NoexPrecompiledHeader_get_target,$(1 \
+  -I $(dir $(call 
gb_NoexPrecompiledHeader_get_target,$(1)))
+endif
 
 gb_NoexPrecompiledHeader_get_objectfile =
 
@@ -229,7 +238,6 @@
$(call gb_cxx_dep_copy,$(call 
gb_NoexPrecompiledHeader_get_dep_target,$(2))) \
)
 endef
-endif
 
 # YaccTarget class
 
diff --git a/sw/source/ui/dbui/swdbtoolsclient.cxx 
b/sw/source/ui/dbui/swdbtoolsclient.cxx
index beddf6a..fcb6728 100644
--- a/sw/source/ui/dbui/swdbtoolsclient.cxx
+++ b/sw/source/ui/dbui/swdbtoolsclient.cxx
@@ -204,7 +204,7 @@
 sal_Int32 SwDbtoolsClient::getDefaultNumberFormat(
 const Reference XPropertySet  rxColumn,
 const Reference XNumberFormatTypes  rxTypes,
-const Locale rLocale
+const 

[PATCH] fdo#57362 Cannot save document after editing footer backgrou...

2013-03-10 Thread Christopher Copits (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2654

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/54/2654/1

fdo#57362 Cannot save document after editing footer background and border

In HeaderFooterWin.cxx's SwHeaderFooterWin::ExecuteCommand(): after changes are 
made to the header's background, box, or shadow, I call SetModified(true) to 
signal that the document was modified.

Change-Id: I2be5710dde9d7a6f5d4373484d52ece71c91cdd4
---
M sw/source/ui/docvw/HeaderFooterWin.cxx
1 file changed, 9 insertions(+), 3 deletions(-)



diff --git a/sw/source/ui/docvw/HeaderFooterWin.cxx 
b/sw/source/ui/docvw/HeaderFooterWin.cxx
index 25e2913..7b0f5bf 100644
--- a/sw/source/ui/docvw/HeaderFooterWin.cxx
+++ b/sw/source/ui/docvw/HeaderFooterWin.cxx
@@ -465,14 +465,20 @@
 if ( svx::ShowBorderBackgroundDlg( this, aSet, true ) )
 {
 const SfxPoolItem* pItem;
-if ( SFX_ITEM_SET == aSet.GetItemState( RES_BACKGROUND, 
sal_False, pItem ) )
+if ( SFX_ITEM_SET == aSet.GetItemState( RES_BACKGROUND, 
sal_False, pItem ) ) {
 pHFFmt-SetFmtAttr( *pItem );
+rView.GetDocShell()-SetModified(true);
+}
 
-if ( SFX_ITEM_SET == aSet.GetItemState( RES_BOX, 
sal_False, pItem ) )
+if ( SFX_ITEM_SET == aSet.GetItemState( RES_BOX, 
sal_False, pItem ) ) {
 pHFFmt-SetFmtAttr( *pItem );
+rView.GetDocShell()-SetModified(true);
+}
 
-if ( SFX_ITEM_SET == aSet.GetItemState( RES_SHADOW, 
sal_False, pItem ) )
+if ( SFX_ITEM_SET == aSet.GetItemState( RES_SHADOW, 
sal_False, pItem ) ) {
 pHFFmt-SetFmtAttr( *pItem );
+rView.GetDocShell()-SetModified(true);
+}
 }
 }
 break;

-- 
To view, visit https://gerrit.libreoffice.org/2654
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I2be5710dde9d7a6f5d4373484d52ece71c91cdd4
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Christopher Copits chrisc...@live.com

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


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

2013-03-10 Thread Stephan Bergmann
 mysqlc/source/mysqlc_connection.cxx |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f3c618e46e92bc906de6452c2889cf8fb42a8015
Author: Stephan Bergmann sberg...@redhat.com
Date:   Sun Mar 10 23:14:27 2013 +0100

Adapt to removed MYSQL_LIB

...from cad422afb7a4dcd7592c502641b41a832703e536 Adding libmariadb module 
for
internal mariadb (work in progress).

Change-Id: Iba803a26be6f62589191122d4defc959cb3248eb

diff --git a/mysqlc/source/mysqlc_connection.cxx 
b/mysqlc/source/mysqlc_connection.cxx
index 717adf9..fe93623 100644
--- a/mysqlc/source/mysqlc_connection.cxx
+++ b/mysqlc/source/mysqlc_connection.cxx
@@ -195,7 +195,7 @@ void OConnection::construct(const OUString url, const 
Sequence PropertyValue 
 }
 
 #ifndef SYSTEM_MARIADB
-::rtl::OUString sMySQLClientLib( MYSQL_LIB  );
+::rtl::OUString sMySQLClientLib( libmariadb SAL_DLLEXTENSION );
 
 ::rtl::OUString moduleBase;
 OSL_VERIFY( ::osl::Module::getUrlFromAddress( thisModule, 
moduleBase ) );
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] fdo#61726: rename report-builder package to org.libreoffice....

2013-03-10 Thread David Ostrovsky (via Code Review)
Hello Stephan Bergmann, LibreOffice gerrit bot,

I'd like you to reexamine a change.  Please visit

https://gerrit.libreoffice.org/2578

to look at the new patch set (#7).

Change subject: fdo#61726: rename report-builder package to 
org.libreoffice.report
..

fdo#61726: rename report-builder package to org.libreoffice.report

To prevent future clashes with uno name space rename the
com.sun.star.report package to org.libreoffice.report.

Bump the version to 1.2.4.

Change-Id: Ia06cb7ad8c1528c1d5b5eeb70f1e4b2aa854b70f
---
M Repository.mk
M connectivity/source/commontools/dbtools2.cxx
M dbaccess/source/core/dataaccess/documentdefinition.cxx
M dbaccess/source/ui/app/AppController.cxx
M reportbuilder/Configuration_reportbuilder.mk
M reportbuilder/Extension_reportbuilder.mk
M reportbuilder/Jar_reportbuilder.mk
D reportbuilder/java/com/sun/star/report/pentaho/configuration.properties
D reportbuilder/java/com/sun/star/report/pentaho/parser/selectors.properties
M reportbuilder/java/jfreereport.properties
M reportbuilder/java/libformula.properties
M reportbuilder/java/loader.properties
R reportbuilder/java/org/libreoffice/report/DataRow.java
R reportbuilder/java/org/libreoffice/report/DataSource.java
R reportbuilder/java/org/libreoffice/report/DataSourceException.java
R reportbuilder/java/org/libreoffice/report/DataSourceFactory.java
R reportbuilder/java/org/libreoffice/report/ImageService.java
R reportbuilder/java/org/libreoffice/report/InputRepository.java
R reportbuilder/java/org/libreoffice/report/JobDefinitionException.java
R reportbuilder/java/org/libreoffice/report/JobProgressIndicator.java
R reportbuilder/java/org/libreoffice/report/JobProperties.java
R reportbuilder/java/org/libreoffice/report/OfficeToken.java
R reportbuilder/java/org/libreoffice/report/OutputRepository.java
R reportbuilder/java/org/libreoffice/report/ParameterMap.java
R reportbuilder/java/org/libreoffice/report/ReportAddIn.java
R reportbuilder/java/org/libreoffice/report/ReportEngineMetaData.java
R reportbuilder/java/org/libreoffice/report/ReportEngineParameterNames.java
R reportbuilder/java/org/libreoffice/report/ReportExecutionException.java
R reportbuilder/java/org/libreoffice/report/ReportExpression.java
R reportbuilder/java/org/libreoffice/report/ReportExpressionMetaData.java
R reportbuilder/java/org/libreoffice/report/ReportFunction.java
R reportbuilder/java/org/libreoffice/report/ReportJob.java
R reportbuilder/java/org/libreoffice/report/ReportJobDefinition.java
R reportbuilder/java/org/libreoffice/report/ReportJobFactory.java
R reportbuilder/java/org/libreoffice/report/SDBCReportData.java
R reportbuilder/java/org/libreoffice/report/SDBCReportDataFactory.java
R reportbuilder/java/org/libreoffice/report/SOImageService.java
R reportbuilder/java/org/libreoffice/report/StorageRepository.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/Author-Function.properties
R 
reportbuilder/java/org/libreoffice/report/function/metadata/Author-Function_en_US.properties
R 
reportbuilder/java/org/libreoffice/report/function/metadata/AuthorFunction.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/AuthorFunctionDescription.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/MetaDataFunctionCategory.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/Title-Function.properties
R 
reportbuilder/java/org/libreoffice/report/function/metadata/Title-Function_en_US.properties
R reportbuilder/java/org/libreoffice/report/function/metadata/TitleFunction.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/TitleFunctionDescription.java
R 
reportbuilder/java/org/libreoffice/report/function/metadata/category.properties
R 
reportbuilder/java/org/libreoffice/report/function/metadata/category_en_US.properties
R reportbuilder/java/org/libreoffice/report/pentaho/DefaultNameGenerator.java
R reportbuilder/java/org/libreoffice/report/pentaho/Manifest.mf
R reportbuilder/java/org/libreoffice/report/pentaho/OfficeNamespaces.java
R reportbuilder/java/org/libreoffice/report/pentaho/PentahoFormulaContext.java
R reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportAddIn.java
R reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngine.java
R 
reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportEngineMetaData.java
R reportbuilder/java/org/libreoffice/report/pentaho/PentahoReportJob.java
R reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaOpCodeMapper.java
R reportbuilder/java/org/libreoffice/report/pentaho/SOFormulaParser.java
R reportbuilder/java/org/libreoffice/report/pentaho/SOFunctionManager.java
R reportbuilder/java/org/libreoffice/report/pentaho/SOReportJobFactory.java
R reportbuilder/java/org/libreoffice/report/pentaho/StarFunctionCategory.java
R reportbuilder/java/org/libreoffice/report/pentaho/StarFunctionDescription.java
R 

[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 06/d20e3f342f8b41eaa70234cb271c81f404b6b9

2013-03-10 Thread Caolán McNamara
 06/d20e3f342f8b41eaa70234cb271c81f404b6b9 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 8cfd14cf8120a483f1eba4087170eebf47b84b0c
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Mar 11 00:59:39 2013 +

Notes added by 'git notes add'

diff --git a/06/d20e3f342f8b41eaa70234cb271c81f404b6b9 
b/06/d20e3f342f8b41eaa70234cb271c81f404b6b9
new file mode 100644
index 000..b0a20f1
--- /dev/null
+++ b/06/d20e3f342f8b41eaa70234cb271c81f404b6b9
@@ -0,0 +1 @@
+prefer: 6e67c03dc0225fc66343546b14e902b9d238b1a3
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - 7d/cea9c7dde686825442102757858463b6297f73

2013-03-10 Thread Caolán McNamara
 7d/cea9c7dde686825442102757858463b6297f73 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit bf0e15c7f74566771f8f1dce9e1c6746fe10dba0
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Mar 11 01:02:09 2013 +

Notes added by 'git notes add'

diff --git a/7d/cea9c7dde686825442102757858463b6297f73 
b/7d/cea9c7dde686825442102757858463b6297f73
new file mode 100644
index 000..ac801c7
--- /dev/null
+++ b/7d/cea9c7dde686825442102757858463b6297f73
@@ -0,0 +1 @@
+prefer: 7080d629c82422a419d38051536c7711f8abe53e
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - d9/a81e07110bfb02d6c13cb17444e4bb7f6ebcaf

2013-03-10 Thread Caolán McNamara
 d9/a81e07110bfb02d6c13cb17444e4bb7f6ebcaf |1 +
 1 file changed, 1 insertion(+)

New commits:
commit a9e928c461cfce21d5b9b635789a84c49537fe00
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Mar 11 01:05:07 2013 +

Notes added by 'git notes add'

diff --git a/d9/a81e07110bfb02d6c13cb17444e4bb7f6ebcaf 
b/d9/a81e07110bfb02d6c13cb17444e4bb7f6ebcaf
new file mode 100644
index 000..61957b7
--- /dev/null
+++ b/d9/a81e07110bfb02d6c13cb17444e4bb7f6ebcaf
@@ -0,0 +1 @@
+prefer: 51216852e0431d679d2bcfb428f2a2dd32fda3b0
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] core.git: Branch 'refs/notes/commits' - ff/eba46ae02330cc8b727288814c69d4f8e69704

2013-03-10 Thread Caolán McNamara
 ff/eba46ae02330cc8b727288814c69d4f8e69704 |1 +
 1 file changed, 1 insertion(+)

New commits:
commit 78f8c9b330c40fccb505ed87a14d5649c58b82f8
Author: Caolán McNamara caol...@redhat.com
Date:   Mon Mar 11 01:07:19 2013 +

Notes added by 'git notes add'

diff --git a/ff/eba46ae02330cc8b727288814c69d4f8e69704 
b/ff/eba46ae02330cc8b727288814c69d4f8e69704
new file mode 100644
index 000..18485d4
--- /dev/null
+++ b/ff/eba46ae02330cc8b727288814c69d4f8e69704
@@ -0,0 +1 @@
+prefer: 08773910b162ada57ad10310f294a8b68ddcd1b5
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: New laptop

2013-03-10 Thread Marc-André Laverdière
Hello,


I recently had some problems of a laptop crashing randomly. I put a
widget on my desktop that shows the CPU temperature and it allowed me
to diagnose the problem. My system was at 75 degrees without doing
anything heavy.

The BIOS update did wonders. I would suggest to do that right away if
there is one released.

I also purposefully slow down the build, by running with nice -n19,
the lowest priority. You can also set some settings in autogen.sh to
limit the number of concurrent processes, but I found the solution to
work well. Also, you can get a fan to put under your laptop for a few
euros/dollars to help it cool down (My personal experience with those
wasn't very satisfactory, but your mileage may vary).

Much cheaper than buying a computer :)


Marc-André LAVERDIÈRE
Perseverance must finish its work so that you may be mature and complete,
not lacking anything. -James 1:4
http://asimplediscipleslife.blogspot.com/
mlaverd.theunixplace.com



On Fri, Mar 8, 2013 at 5:29 AM, Michael Meeks michael.me...@suse.com wrote:
 Hi José,

 On Fri, 2013-03-08 at 00:02 +0100, Christian Lohmaier wrote:
 On Thu, Mar 7, 2013 at 11:16 PM, José Guilherme Vanz wrote:
  Well, I would like to ask a tip for you. I have a dell vostro laptop,
 but I cannot use it for contribute in the LO project. The laptop
 turns off because of the temperature.

 This should never happen with the current type of processors (they
 reduce frequency/switch to a low-performance mode triggered by
 temperature) - so it is a clear indicator that your fan/heatsink needs
 a little bit of love (cleaning).

 All of Christian's advice is excellent - hoovering can help; you might
 want to check if there is a BIOS update - they often have bugs in this
 area, or a setting to tweak the fan speed in there. I guess you're
 running Linux - and it's possible that it's not driving the hardware
 quite as the manufacturer intended (ie. for it to run Windows ;-).

 The LibreOffice code-base has quite a long history of killing hardware
 - particularly laptop hardware - and the gnumake / parallelism belting
 the CPU even more intensely and gcc's memory access patterns prolly make
 for some nice pathological test-case ;-)

 Previously sleeps were inserted to add some cooling-off period; 
 failing
 that you could install icecream and tweak it to only run on one CPU (or
 say three if you have four) - which might give some thermal head-room.

 HTH,

 Michael.

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

 ___
 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


[PATCH] fdo#61394 Change Template Manager Accept button label to OK.

2013-03-10 Thread Rafael Dominguez (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/2655

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/55/2655/1

fdo#61394 Change Template Manager Accept button label to OK.

Change-Id: Iffc0e55343f6da8acd921b944fcabdcaf6380dad
---
M sfx2/source/dialog/inputdlg.src
1 file changed, 1 insertion(+), 1 deletion(-)



diff --git a/sfx2/source/dialog/inputdlg.src b/sfx2/source/dialog/inputdlg.src
index f0b04b6..ab6caa1 100644
--- a/sfx2/source/dialog/inputdlg.src
+++ b/sfx2/source/dialog/inputdlg.src
@@ -36,7 +36,7 @@
 Size = MAP_APPFONT(40,15);
 TabStop = TRUE;
 DefButton = TRUE;
-Text [en-US] = Accept;
+Text [en-US] = OK;
 };
 
 PushButton BTN_INPUT_CANCEL

-- 
To view, visit https://gerrit.libreoffice.org/2655
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Iffc0e55343f6da8acd921b944fcabdcaf6380dad
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com

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


[ABANDONED] fdo #61394 Change Template Manager Accept button labal to OK...

2013-03-10 Thread Rafael Dominguez (via Code Review)
Rafael Dominguez has abandoned this change.

Change subject: fdo #61394 Change Template Manager Accept button labal to OK.
..


Patch Set 1: Abandoned

Wrong commit message, sent a new patch

-- 
To view, visit https://gerrit.libreoffice.org/2641
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: abandon
Gerrit-Change-Id: Ic8eddb1018330dd6432316e18c462352c85bbdd1
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rafael Dominguez venccsra...@gmail.com
Gerrit-Reviewer: Korrawit Pruegsanusak detective.conan.1...@gmail.com

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


[Libreoffice-qa] Community educational development

2013-03-10 Thread AP
PRESS RELEASE

The American Grants and Loans Catalog is now available. Our new and revised
2013 edition contains more than 2800 financial programs, subsidies, 
scholarships,
grants and loans offered by the US federal government.

In addition you will also have access to over 2400 programs funded by private
corporations and foundations. That is over 5200 programs available through
various sources of financial providing organizations.

NEW: You will also have access to our live Database that is updated on a daily
basis. This product also provides daily email alerts as programs are announced.

The Database is also available with IP recognition. This allows you to login
without a username or password (Great for libraries or educational institutions
who want their users to access the database).

Businesses, students, researchers, scientists, teachers, doctors, private 
individuals,
municipalities, government departments, educational institutions, law 
enforcement
agencies, nonprofits, foundations and associations will find a wealth of 
information
that will help them with their new ventures or existing projects.

The document is a fully searchable PDF file for easy access to your particular
needs and interests. Simply enter your keywords to search through the 
publication.

It is the perfect tool for libraries and educational institutions to use as a
reference guide for students who require funds to pursue their education.


Contents of the Directory:

-Web link to program announcement page
-Web link to Federal agency or foundation administering the program
-Authorization upon which a program is based
-Objectives and goals of the program
-Types of financial assistance offered under a program
-Uses and restrictions placed upon a program
-Eligibility requirements
-Application and award process
-Regulations, guidelines and literature relevant to a program
-Information contacts at the headquarters, regional, and local offices
-Programs that are related based upon program objectives and uses


Programs in the Catalog provide a wide range of benefits and services
for categories such as:

Agriculture
Business and Commerce
Community Development
Consumer Protection
Cultural Affairs
Disaster Prevention and Relief
Education
Employment, Labor and Training
Energy
Environmental Quality
Food and Nutrition
Health
Housing
Income Security and Social Services
Information and Statistics
Law, Justice, and Legal Services
Natural Resources
Regional Development
Science and Technology
Transportation


CD version: $69.95
Printed version: $149.95

To order please call: 1 (800) 610-4543


Please do not reply to the sender's email address as this address is only for 
outgoing mail.

If you do not wish to receive information from us in the future please reply 
here:
rem...@mail.com

This is a CANSPAM ACT compliant advertising broadcast sent by:
American Publishing Inc. , 7025 County Rd. 46A, Suite 1071, Lake Mary, FL, 
32746-4753
___
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 61982] Make the remote useful for presenations containing animations

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61982

--- Comment #1 from Michal Sylwester msylwes...@gmail.com ---
It is actually possible to advance by animation using volume buttons. Still, I
think it should be possible also using the screen (touch current slide to
advance or similar).

-- 
You are receiving this mail because:
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 45705] UI: Shortcuts for Zoom in, Zoom out and Zoom to 100 %

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45705

--- Comment #8 from brian.bj.parke...@gmail.com ---
In Mac OS X, CMD+ and CMD- are the standard keyboard commands for zooming
across all applications, and it is quite disorienting to have otherwise in
LibreOffice. 
As a special case for OS X, these shortcuts should be used (I believe they do
not clash with anything else). (In particular, Draw currently
counter-intuitively uses shift-+ and - to zoom).

-- 
You are receiving this mail because:
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 62089] New: Insert | Name - Range Option label on bottom is overlapping

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62089

  Priority: medium
Bug ID: 62089
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Insert | Name - Range Option label on bottom is
overlapping
  Severity: trivial
Classification: Unclassified
OS: All
  Reporter: grof...@hotmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.0.1.2 release
 Component: UI
   Product: LibreOffice

Created attachment 76258
  -- https://bugs.freedesktop.org/attachment.cgi?id=76258action=edit
overlapping label

Insert | Name - Range Option label is bottom overlapping

In LibreOffice v4.0.1.2 on Windows XP sp3:
1. Insert | Names | Define
2. See the Range Option label it is overlapping the line bellow.

The same problem:
1. Insert | Name | Manage
2. See the Range Option label it is overlapping the Add and Delete buttons.

-- 
You are receiving this mail because:
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 62089] Insert | Name - Range Option label on bottom is overlapping

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62089

grofaty grof...@hotmail.com changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 62041] CRASH when UNDO drag and drop picture from Webpage in browser

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62041

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

   What|Removed |Added

Summary|CRASH when UNDO insert |CRASH when UNDO drag and
   |picture|drop picture from Webpage
   ||in browser

--- Comment #3 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
(In reply to comment #2)
 3. You'll see that the result will be randomly 

for me with Seamonkey 2.1.16 no random. Drag and drop small preview will show
link, drag and drop big preview (after having clicked the thumbnail on the web
page) shows (distorted) picture.

I tried 10 times, no crash.

I still recommend to be much more precise in the report, for example to tell
what picture you dragged, ...

-- 
You are receiving this mail because:
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 62090] New: : Mid statement doesn't work as expected

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62090

  Priority: medium
Bug ID: 62090
  Keywords: regression
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: : Mid statement doesn't work as expected
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: zza...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.0.1.1 rc
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 76259
  -- https://bugs.freedesktop.org/attachment.cgi?id=76259action=edit
Document ilustrating wrong Mid statement behaviour

Problem description: 
In LibreOffice 3, for this Basic code:

s = The lightbrown fox
Mid(s,5,10,lazy) 

the resulting string was The lazy fox. In LibreOffice 4, string replacement
isn't done correctly and works ONLY if replacement string is long EXACTLY as
the part it replaces.

Steps to reproduce:
1. Try included ods file

Current behavior:
Mid statement replacement produces string with wong characters

Expected behavior:
Mid statement should replace string as in LibreOffice 3
Operating System: Ubuntu
Version: 4.0.1.1 rc
Last worked in: 3.5.4 release

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


[Libreoffice-bugs] [Bug 62090] : Mid statement doesn't work as expected

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62090

--- Comment #1 from Zarko Zivanov zza...@gmail.com ---
Created attachment 76260
  -- https://bugs.freedesktop.org/attachment.cgi?id=76260action=edit
The result of using Mid(s,5,10,lazy)

-- 
You are receiving this mail because:
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 62090] : Mid statement doesn't work as expected

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62090

Zarko Zivanov zza...@gmail.com changed:

   What|Removed |Added

   Hardware|Other   |x86-64 (AMD64)
   Severity|normal  |major
   Priority|medium  |high

-- 
You are receiving this mail because:
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 62090] : Mid statement doesn't work as expected

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62090

Zarko Zivanov zza...@gmail.com changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 62091] New: Impress crashes while trying to add video in avi format (MPEG-4 codec)

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62091

  Priority: medium
Bug ID: 62091
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Impress crashes while trying to add video in avi
format (MPEG-4 codec)
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: alekse...@list.ru
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.0.1.2 release
 Component: Presentation
   Product: LibreOffice

Greetings.

When I try in insert into presentation video file in avi format (MPEG-4 codec)
LO Impress crashed. Terminal output:


LibreOffice(29706) KSambaSharePrivate::testparmParamValue: We got some errors
while running testparm Load smb config files from /etc/samba/smb.conf
Loaded services file OK.
ERROR: pid directory /var/run/samba does not exist
 
libva: VA-API version 0.33.0
libva: va_getDriverName() returns 0
libva: Trying to open /usr/lib64/dri/i965_drv_video.so
libva: Found init function __vaDriverInit_0_33
libva error: /usr/lib64/dri/i965_drv_video.so init failed
libva: va_openDriver() returns -1

ERROR: Caught a segmentation fault while loading plugin file:
/usr/lib64/gstreamer-0.10/libgstffmpeg.so

Please either:
- remove it and restart.
- run with --gst-disable-segtrap --gst-disable-registry-fork and debug.


I have both versions of gstreamer (both 0.10 and 1.0) installed. I also have
both gstreamer-0_10-plugins-ffmpeg and gstreamer-plugins-libav packages
installed.

OS: OpenSUSE 12.2 64 bit
Source of LO installation:
http://download.opensuse.org/repositories/LibreOffice:/Stable/openSUSE_12.2/


Best regards,
Aleksey

-- 
You are receiving this mail because:
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 60268] FORMATTING: Square root and cdot are not correct displayed under Windows 8

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60268

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

It seems that Opensymbol font, which is used for all signs, was changed by
Liberation only for Windows 8. This is confirmed on several machines on qa-fr
lists and bug 61622 I mark as a Duplicate of this one.

Jacques Guilleron

-- 
You are receiving this mail because:
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 62093] New: VIEWING of preview in Print Dialog destroyed after resize.

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62093

  Priority: medium
Bug ID: 62093
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: VIEWING of preview in Print Dialog destroyed after
resize.
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: libreoff...@bielefeldundbuss.de
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.0.1.2 release
 Component: UI
   Product: LibreOffice

Created attachment 76262
  -- https://bugs.freedesktop.org/attachment.cgi?id=76262action=edit
Screenshot shows damages

It seems we have a redraw there.

Steps how to reproduce [Reproducible] with server installation of LibO 
4.0.1.2 release   -  German UI / German Locale  [Build ID:
84102822e3d61eb989ddd325abf1ac077904985)]  {tinderbox: @6, pull time 
2013-02-28 08:53(?)} on German WIN7 Home Premium (64bit) with newly created
user profile ….\LibreOffice\4012\

1. open new Presentation from LibO Start Center
2. Menu 'File - Print'
Print dialog appears, shwoing previes
3. Increase size by drag and drop bottom border of dialog down quickly
   Bug: redraw problem with artifacts in preview area (see screenshot)

Also reproducible with Writer, calc, Draw

With some first quick tests I did no see a dependency to Hardware acceleration,
experimental features or similar

-- 
You are receiving this mail because:
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 61622] Problem scaling symbol in Math

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61622

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |DUPLICATE

--- Comment #20 from Jacques Guilleron guillero...@aol.com ---


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

-- 
You are receiving this mail because:
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 60268] FORMATTING: Square root and cdot are not correct displayed under Windows 8

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60268

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

   What|Removed |Added

 CC||si...@libero.it

--- Comment #6 from Jacques Guilleron guillero...@aol.com ---
*** Bug 61622 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 57414] File Recovery: Don't save read-only and empty files for recovery

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57414

Kumāra kumara.bhik...@gmail.com changed:

   What|Removed |Added

 CC||kumara.bhik...@gmail.com

--- Comment #4 from Kumāra kumara.bhik...@gmail.com ---
I've sort of accepted (or tolerated with) this behaviour, but I must say that
it makes LibO seem rather unpolished. In that sense too there is an impact. So,
it would be a good idea to (carefully) resolve this.

-- 
You are receiving this mail because:
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 62094] New: CRASH when trying shortcuts in PRINTING dialog

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62094

  Priority: medium
Bug ID: 62094
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: CRASH when trying shortcuts in PRINTING dialog
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: libreoff...@bielefeldundbuss.de
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.0.1.2 release
 Component: UI
   Product: LibreOffice

My intention was to find out whether there might be hidden keyboard shortcuts
in that dialog.

Steps how to reproduce with server installation of LibO  4.0.1.2 release   - 
German UI / German Locale  [Build ID:
84102822e3d61eb989ddd325abf1ac077904985)]  {tinderbox: @6, pull time 
2013-02-28 08:53(?)} on German WIN7 Home Premium (64bit) with newly created
user profile ….\LibreOffice\4012\

1. Open new Writer document
2. Menu 'File - Print_
Dialog appears
3. Click 'Umgekehrte Reihenfolge' (reverse order)
4. try typing a letter - uparrow - downarrow - next letter typed,
   from time to time again Click 'Umgekehrte Reihenfolge'

I see a lots of hangs, LibO becomes unresponsive, has to be closed.

I am still working on a step by step instruction how to make the crash
reproducible reliably.

I did not test other dialogs, languages, versions until now.

-- 
You are receiving this mail because:
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 62080] Style dropdown doesn't preview font effects

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62080

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever confirmed|0   |1

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
To be honest, I have no idea what we are talking about. 
Styles selector in Formatting Toolbar?

-- 
You are receiving this mail because:
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 62082] Consolidate buttons in the animation pane into a single toolbar

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62082

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

   What|Removed |Added

 Whiteboard|ProposedEasyHack|
 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
What are we talking about? Presentation animations? Ane why do you think that
can be an EasyHack? I remove suggestion for now

@mazelm
Please explain more carefully what exactly you suggest.

-- 
You are receiving this mail because:
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 62081] Add menus to items in the style dropdown

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62081

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Whiteboard|ProposedEasyHack|
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever confirmed|0   |1

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
I do not agree with that proposal. Compared to the very few cases where I want
to adapt a style it requires an additional click for every occasion where I
want to apply a style.

And I doubt that that is an EasyHack. Do we already have such a sub-selector?
Remove proposal for now.

@mazelm:
Why is Version 4.0.1.2? What is new in that version that we now need your
proposed enhancement?

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


[Libreoffice-bugs] [Bug 60412] CONFIGURATION: Add ability to show labels next to some icons

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=60412

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

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #4 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
I havn't a clue what problem we are talking about here. I even don't know what
kind of icons ... . Form fields?

@mazelm:
Please contribute a careful description concerning the problem and your
suggestion due to http://wiki.documentfoundation.org/BugReport

-- 
You are receiving this mail because:
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

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39674

--- Comment #6 from Thomas Arnhold tho...@arnhold.org ---
Good point to start: sc/source/core/tool/interpr2.cxx

void ScInterpreter::ScLaufz()
double ScInterpreter::ScGetZinsZ()
void ScInterpreter::ScKapz()

And many more German words, like Rest, Faktor, Zins, Effektiv, Nominal...

Some more:

DeleteAktPara() [sw/source/core/edit/autofmt.cxx]
NeueTabelle() [sc/source/filter/excel/impop.cxx]

And common German words which don't occur in English:

Objekt, Klasse, Fenster, Graphik, Grafik, Menue, Charakter, Komma, PLZ,
ObjectMenue

akt, isch, ae, oe, ue, ä, ü, ö

-- 
You are receiving this mail because:
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 38356] Saving formula in Excel XML format is invalid

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38356

--- Comment #3 from A stgohi-lob...@yahoo.de ---
reproducible with LO 4.0.1.2 (Win7 Home, 64bit)

the formula is broken

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


[Libreoffice-bugs] [Bug 45424] FILEOPEN: IMPORT XSLT Filter imports nothing from MSO OFFICE 2003 XML

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45424

--- Comment #2 from A stgohi-lob...@yahoo.de ---
reproducible with LO 4.0.1.2 (Win7 Home, 64bit)

Result:
Read-Error.
Error reading file.

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


[Libreoffice-bugs] [Bug 62061] FORMATTING: Changing the font before typing Arabic text is not applied

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62061

Pje335 pje...@hotmail.com changed:

   What|Removed |Added

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

--- Comment #1 from Pje335 pje...@hotmail.com ---


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

-- 
You are receiving this mail because:
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 62063] FORMATTING: Changing the font before typing Arabic text doesn't work

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62063

--- Comment #1 from Pje335 pje...@hotmail.com ---
*** Bug 62061 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 62063] FORMATTING: Changing the font before typing Arabic text doesn't work

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62063

Pje335 pje...@hotmail.com changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 62061] FORMATTING: Changing the font before typing Arabic text is not applied

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62061

Pje335 pje...@hotmail.com changed:

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 61993] doc/docx auto font color inverted in LibreOffice

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61993

--- Comment #6 from Luke l...@deller.id.au ---
Created attachment 76263
  -- https://bugs.freedesktop.org/attachment.cgi?id=76263action=edit
examples of what is considered dark across a range of colours

Adding an example showing visually what is considered dark across a range of
colours

-- 
You are receiving this mail because:
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 62095] New: FILEOPEN: Simple xlsx file causes calc hang

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62095

  Priority: medium
Bug ID: 62095
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FILEOPEN: Simple xlsx file  causes calc hang
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: ori...@mail.ru
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.0.1.2 release
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 76264
  -- https://bugs.freedesktop.org/attachment.cgi?id=76264action=edit
xlsx file in Russian with several spreadsheets (It was made in MS Office 2007)

Problem description: xlsx file is not opened by calc

Steps to reproduce:
1. Try to open attachment
2. 
3. 

Current behavior: LO4 hangs

Expected behavior: Open file


Operating System: Debian
Version: 4.0.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 62083] ASKLIBREOFFICE: AskLibO: Upvote and downvote arrows don't have tool tips poping up

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62083

--- Comment #2 from bugquestcon...@online.de ---
Thanks for the link and support to the request. 

I don't understand enough on the entire situation to comment on Asksite to
wiki.

-- 
You are receiving this mail because:
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 62096] New: Replace O(U)String compareTo with ==

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62096

  Priority: medium
Bug ID: 62096
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Replace O(U)String compareTo with ==
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: tho...@arnhold.org
  Hardware: Other
Status: UNCONFIRMED
   Version: unspecified
 Component: Libreoffice
   Product: LibreOffice

There are many uses of compareTo, like str1.compareTo(str2) == 0 which can be
replaced with there better understandable equivalents str1 == str2 or
str1.equals(str2).

Here are two grep statements to find some of them:

git grep '\.compareTo\s*([^)]*)\s*==\s\(0\|COMPARE_EQUAL\)'

- lhs.Name.compareTo(rhs) == 0


git grep '\(0\|COMPARE_EQUAL\)\s*==\s*[a-zA-Z0-9]\+\.compareTo\s*([^)]*)'

- 0 == url.compareTo( EXPAND_PROTOCOL : )

Those could be replaced with str1 == str2. There are many other uses like
with != and more. If you need help to find them or to adapt the grep statements
please ask me!

-- 
You are receiving this mail because:
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 62096] Replace O(U)String compareTo with ==

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62096

Thomas Arnhold tho...@arnhold.org changed:

   What|Removed |Added

 Whiteboard||EasyHack,SkillCpp,TopicClea
   ||nup,DifficultyBeginner
   ||target:4.1.0
   Severity|normal  |enhancement
 CC||sberg...@redhat.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 61429] FORMATTING: LibreOffice doesn't remember the setting Hierarchy of the templates list

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=61429

--- Comment #2 from Elgo elgos...@hotmail.com ---
I can reproduce this bug too, with LO 4.0.1.2 on Win 7.

No need to restart LibO though. If you choose Hierarchy and double-press F11,
the list is automatically set up to the last setting you used that is not
Hierarchy.

-- 
You are receiving this mail because:
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 56163] EDITING: Paste missing in context menu

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56163

A stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #1 from A stgohi-lob...@yahoo.de ---
for me this is not reproducible with LO 4.0.1.2 (Win7 Home, 64bit)

Did you still experience this behavior later or can you give the steps to
reproduce it?  Otherwise, I would propose to close this issue as
Resolved/WorksForMe.

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


[Libreoffice-bugs] [Bug 62097] New: UI: More intuitive text for menu 'Insert - File'

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62097

  Priority: medium
Bug ID: 62097
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: UI: More intuitive text for menu 'Insert - File'
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: libreoff...@bielefeldundbuss.de
  Hardware: Other
Status: NEW
   Version: 3.3.0 Beta2
 Component: Writer
   Product: LibreOffice

Created attachment 76265
  -- https://bugs.freedesktop.org/attachment.cgi?id=76265action=edit
Mockup

Writer menu 'Insert - File ...' allows to insert contents of a text file
contents from existing .odt, .doc and similar at the cursor position. No other
file type will be accepted (see help), and so the menu item text should be more
specific Text file ... instead of file 

Of course also Help and Documentation has to be adapted.

Inherited from OOo and still in current Master

-- 
You are receiving this mail because:
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 62098] New: RTL EDITING: Strange table width on resizing cells or pasting a table included vertical text flow

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62098

  Priority: medium
Bug ID: 62098
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: RTL EDITING: Strange table width on resizing cells or
pasting a table included vertical text flow
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: mbno...@gmail.com
  Hardware: All
Status: UNCONFIRMED
   Version: 4.0.1.2 release
 Component: Writer
   Product: LibreOffice

Created attachment 76266
  -- https://bugs.freedesktop.org/attachment.cgi?id=76266action=edit
How the table appears in case of copy and pasting it or even resize it

Any table has vertical text flow appears ugly in any cell appears incorrectly
in case of pasting it or resizing any cell as shown in the screenshot. While it
works fine in case modifying it into LTR mode.

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


[Libreoffice-bugs] [Bug 56126] EDITING: Conditional field and vertical separator

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56126

A stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from A stgohi-lob...@yahoo.de ---
reproducible with LO 4.0.1.2 (Win7 Home, 64bit)

The text after the character | disappears.

-- 
You are receiving this mail because:
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 62099] New: UI: More intuitive text for menu 'Insert - File'

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62099

  Priority: medium
Bug ID: 62099
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: UI: More intuitive text for menu 'Insert - File'
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: libreoff...@bielefeldundbuss.de
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.3.0 Beta2
 Component: Drawing
   Product: LibreOffice

Writer menu 'Insert - File ...' allows to insert contents of a drawing file
contents from existing .odg (and may be others, I do not know). No other file
type will be accepted (see help), and so the menu item text should be more
specific Drawing file ... instead of file 

So this one should be proceeded exactly like Writer enhancement Bug 62097 -
UI: More intuitive text for menu 'Insert - File'

Very same with Presentation.

-- 
You are receiving this mail because:
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 62099] UI: More intuitive text for menu 'Insert - File'

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62099

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

   What|Removed |Added

 Whiteboard||ProposedEasyHack
   ||DifficultyBeginner
   ||SkillDebug TopicUI
 CC||LibreOffice@bielefeldundbus
   ||s.de
   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=62097

-- 
You are receiving this mail because:
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 62097] UI: More intuitive text for menu 'Insert - File'

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62097

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

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 62099] UI: More intuitive text for menu 'Insert - File'

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62099

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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


[Libreoffice-bugs] [Bug 62098] RTL EDITING: Strange table width on resizing cells or pasting a table included vertical text flow

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62098

--- Comment #1 from Muhammad Bashir Al-Noimi mbno...@gmail.com ---
Created attachment 76267
  -- https://bugs.freedesktop.org/attachment.cgi?id=76267action=edit
The original file of the screenshot

-- 
You are receiving this mail because:
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 62078] WIKI: Exception when Serbian is preferred in Accept-Language

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62078

Florian Effenberger flo...@documentfoundation.org changed:

   What|Removed |Added

 CC||floeff@documentfoundation.o
   ||rg

--- Comment #2 from Florian Effenberger flo...@documentfoundation.org ---
This MWException is a famous MediaWiki bug I've already filed with them, it
happened last time for Japanese. I'll try a MediaWiki upgrade tomorrow,
otherwise I'll file a bug with them and temporarily try to rewrite the header
to have a workaround.

-- 
You are receiving this mail because:
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 56123] ISO paper size information is lost if saving in xls format.

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56123

--- Comment #1 from A stgohi-lob...@yahoo.de ---
not reproducible with LO 4.0.1.2 (Win7 Home, 64bit)

Does this issue still persist for you with the latest release of LO?

Can anybody else confirm this?

-- 
You are receiving this mail because:
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 62100] New: UI: More intuitive file type limitation for menu 'Insert - File'

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62100

  Priority: medium
Bug ID: 62100
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: UI: More intuitive file type limitation for  menu
'Insert - File'
  Severity: enhancement
Classification: Unclassified
OS: All
  Reporter: libreoff...@bielefeldundbuss.de
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.3.0 Beta2
 Component: Writer
   Product: LibreOffice

Writer menu 'Insert - File ...' allows to insert contents of a text file
contents from existing .odt, .doc and similar at the cursor position. No other
file type will be accepted (see help), and so the file type selector in
Fileopen dialog (LibO and OS) should suggest Text Documents instead of All
Files

Of course also Help and Documentation has to be adapted.

Inherited from OOo and still in current Master

-- 
You are receiving this mail because:
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 62101] New: UI: More intuitive file type limitation for menu 'Insert - File'

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62101

  Priority: medium
Bug ID: 62101
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: UI: More intuitive file type limitation for menu
'Insert - File'
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: libreoff...@bielefeldundbuss.de
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.3.0 Beta2
 Component: Drawing
   Product: LibreOffice

Draw menu 'Insert - File ...' allows to insert contents of a drawing file
contents from existing .odg (and may be others, I do not know). No other file
type will be accepted (see help) The file type selector in Fileopen dialog
(LibO and OS) should suggest Draw Documents instead of All Files

All the rest as in related Bug 62100 - UI: More intuitive file type limitation
for menu 'Insert - File', and also for Presentation

-- 
You are receiving this mail because:
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 38751] Asian-text breaks when paste into comment.

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38751

438753924 spa...@gmx.net changed:

   What|Removed |Added

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

--- Comment #4 from 438753924 spa...@gmx.net ---
This is not reproducible for me on OS X 10.8.2 and LO 4.0.1.2.

Setting to RESOLVED FIXED.

@Jun, if you still can reproduce this problem in LO 4.0.1.2 feel free to
re-open 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 62100] UI: More intuitive file type limitation for menu 'Insert - File'

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62100

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Whiteboard||ProposedEasyHack
   ||DifficultyInteresting
   ||SkillDebug TopicUI
 CC||LibreOffice@bielefeldundbus
   ||s.de
   See Also||https://bugs.freedesktop.or
   ||g/show_bug.cgi?id=62101
 Ever confirmed|0   |1

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
Should not be too difficult, but I can't remember a similar context sensitive
start suggestion in a file dialog, so difficulty=interesting

-- 
You are receiving this mail because:
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 62101] UI: More intuitive file type limitation for menu 'Insert - File'

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62101

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

   What|Removed |Added

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

-- 
You are receiving this mail because:
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 62101] UI: More intuitive file type limitation for menu 'Insert - File'

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62101

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Whiteboard||ProposedEasyHack
   ||DifficultyInteresting
   ||SkillDebug TopicUI
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever confirmed|0   |1

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
Should not be too difficult, but I can't remember a similar context sensitive
start suggestion in a file dialog, so difficulty=interesting

-- 
You are receiving this mail because:
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 35151] Print comments at the end of the page doesn't work

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35151

--- Comment #3 from 438753924 spa...@gmx.net ---
This is still valid for 4.0.1.2. Would be great if someone could have look.
Maybe this is expected. But if File  Printing options  options  comments is
set to end of page I assume LO printing a second page for the comments if
there's still room on page 1 is indeed a 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 56156] : Saving document to a CMIS AtomPub server causes LibreOffice to crash

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56156

438753924 spa...@gmx.net changed:

   What|Removed |Added

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

--- Comment #2 from 438753924 spa...@gmx.net ---
No feedback for a month from Will. Setting to RESOLVED WORKSFORME.

@Will: If you still can reproduce this problem with LO 4.0.1.2 please re-open
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 56105] FILEOPEN Importing excel file changes column width

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56105

A stgohi-lob...@yahoo.de changed:

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de,
   ||stgohi-lob...@yahoo.de

--- Comment #1 from A stgohi-lob...@yahoo.de ---
I tested it with LO 4.0.1.2 (Win7 Home, 64bit) and it shows for all columns the
column width = 0.67 cm.
This is related to the merged cells at the top.  If I split these cells, then I
get the column width = 4.17 cm for column F.

@Rainer: Can you maybe confirm this issue?

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


[Libreoffice-bugs] [Bug 56112] FORMATTING: fonts are not displayed correctly

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56112

--- Comment #3 from A stgohi-lob...@yahoo.de ---
Unfortunately, this bug has not been confirmed for a relatively long time and I
cannot check/confirm it with LO 4.0.1.2 (Win7 Home, 64bit, German).
Does this issue still persist for you with the latest release of LO?

Can anybody else confirm this?

-- 
You are receiving this mail because:
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 62080] Style dropdown doesn't preview font effects

2013-03-10 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=62080

--- Comment #2 from maz...@gmail.com ---
(In reply to comment #1)
 To be honest, I have no idea what we are talking about. 
 Styles selector in Formatting Toolbar?

Yes.

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


  1   2   3   >