[Libreoffice-commits] .: Branch 'libreoffice-3-6' - l10ntools/source

2012-08-12 Thread Andras Timar
 l10ntools/source/help/HelpCompiler.cxx |9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

New commits:
commit cd656ac11743a6472f5a5fafe9b97d3fe5d11e0e
Author: Ivan Timofeev timofeev@gmail.com
Date:   Tue Aug 7 10:06:04 2012 +0400

fix crash on start

Change-Id: Ieee907d38711761f4770b802f54bd38c4e807807

diff --git a/l10ntools/source/help/HelpCompiler.cxx 
b/l10ntools/source/help/HelpCompiler.cxx
index e28ac92..2a5fda5 100644
--- a/l10ntools/source/help/HelpCompiler.cxx
+++ b/l10ntools/source/help/HelpCompiler.cxx
@@ -55,9 +55,12 @@ HelpCompiler::HelpCompiler(StreamTable in_streamTable, 
const fs::path in_input
 {
 xmlKeepBlanksDefaultValue = 0;
 char* guitmp = getenv(GUI);
-gui = (strcmp(guitmp, UNX) ? gui : UNIX);
-gui = (strcmp(guitmp, MAC) ? gui : MAC);
-gui = (strcmp(guitmp, WNT) ? gui : WIN);
+if (guitmp)
+{
+gui = (strcmp(guitmp, UNX) ? gui : UNIX);
+gui = (strcmp(guitmp, MAC) ? gui : MAC);
+gui = (strcmp(guitmp, WNT) ? gui : WIN);
+}
 }
 
 xmlDocPtr HelpCompiler::getSourceDocument(const fs::path filePath)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 44446] LibreOffice 3.6 most annoying bugs

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=6

ape os...@yandex.ru changed:

   What|Removed |Added

 Depends on||53113, 53175

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


[Libreoffice-commits] .: slideshow/source

2012-08-12 Thread Tor Lillqvist
 slideshow/source/engine/OGLTrans/mac/aquaOpenGLView.m |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 07a33fd7db64a873203166e68216c79c8ce42587
Author: Tor Lillqvist t...@iki.fi
Date:   Sat Aug 11 10:44:36 2012 +0300

Check MACOSX_SDK_VERSION, not MAC_OS_X_VERSION_MIN_REQUIRED

Change-Id: I7b24c218d45cdcd743d0b56ae94e604c72c59ebf

diff --git a/slideshow/source/engine/OGLTrans/mac/aquaOpenGLView.m 
b/slideshow/source/engine/OGLTrans/mac/aquaOpenGLView.m
index 7d23b17..3dd2fa0 100644
--- a/slideshow/source/engine/OGLTrans/mac/aquaOpenGLView.m
+++ b/slideshow/source/engine/OGLTrans/mac/aquaOpenGLView.m
@@ -81,10 +81,10 @@ typedef int NSColorRenderingIntent;
 - (void)prepareOpenGL
 {
 // for overriding to initialize OpenGL state, occurs after context creation
-#if MAC_OS_X_VERSION_MIN_REQUIRED  1050
+#if MACOSX_SDK_VERSION  1050
 long swapInt = 1;
 #else
-NSInteger swapInt = 1;
+GLint swapInt = 1;
 #endif
 
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [REVIEW 3-6 (but only 3.6.2?)] No more prereg, no more unopkg sync

2012-08-12 Thread Tor Lillqvist
59 files changed, 44 insertions(+), 2247 deletions(-)

I love it when git log --stat has stuff like this!

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


Remove some dead assignements in sal/cipher.cxx

2012-08-12 Thread Gerrit
From Olivier Hallot olivier.hal...@alta.org.br:

Olivier Hallot has abandoned this change.

Change subject: Remove some dead assignements in sal/cipher.cxx
..


Patch Set 1: Abandoned

will do better soon

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

Gerrit-MessageType: abandon
Gerrit-Change-Id: I18dbac2bba3d62ef08ed4b972314532df7fbfc3a
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Olivier Hallot olivier.hal...@alta.org.br
Gerrit-Reviewer: Stephan Bergmann sberg...@redhat.com

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


[PATCH] Remove some dead assignements in sal/cipher.cxx

2012-08-12 Thread Gerrit
From Olivier Hallot olivier.hal...@alta.org.br:

Olivier Hallot has uploaded a new change for review.

Change subject: Remove some dead assignements in sal/cipher.cxx
..

Remove some dead assignements in sal/cipher.cxx

Remove some dead assignements indicated by clang scan-build report.
Thanks to John Smith clang investigation
Patch corrected

Change-Id: Icbee3a65b6753d45433f1a4ca30567675e27e6d9
---
M sal/rtl/source/cipher.cxx
1 file changed, 0 insertions(+), 4 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/91/391/1
--
To view, visit https://gerrit.libreoffice.org/391
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Icbee3a65b6753d45433f1a4ca30567675e27e6d9
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Olivier Hallot olivier.hal...@alta.org.br

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


[Libreoffice-commits] .: dbaccess/source

2012-08-12 Thread Philipp Riemer
 dbaccess/source/ui/inc/DExport.hxx   |   22 ++---
 dbaccess/source/ui/inc/FieldDescControl.hxx  |7 +---
 dbaccess/source/ui/inc/HtmlReader.hxx|   12 +++
 dbaccess/source/ui/inc/JoinExchange.hxx  |2 -
 dbaccess/source/ui/inc/JoinTableView.hxx |   30 ++
 dbaccess/source/ui/inc/QEnumTypes.hxx|3 +
 dbaccess/source/ui/inc/QueryTableView.hxx|   37 ---
 dbaccess/source/ui/inc/RelationTableView.hxx |4 +-
 dbaccess/source/ui/inc/RtfReader.hxx |   10 +++---
 dbaccess/source/ui/inc/TableConnection.hxx   |9 +++--
 dbaccess/source/ui/inc/TableConnectionData.hxx   |   10 +++---
 dbaccess/source/ui/inc/TableDesignControl.hxx|4 +-
 dbaccess/source/ui/inc/TableDesignHelpBar.hxx|5 +--
 dbaccess/source/ui/inc/TableFieldDescription.hxx |4 +-
 14 files changed, 84 insertions(+), 75 deletions(-)

New commits:
commit 401a454c2da7560d5ec41ef07ac116403956c55a
Author: Daniel Herde dan...@dher.de
Date:   Fri Aug 10 21:24:32 2012 +0200

fdo#39468: Translate German comments in dbaccess/source/ui/inc

Change-Id: Ibf6993a5b935d4ca4e0c792e8676b293ab224d68

diff --git a/dbaccess/source/ui/inc/DExport.hxx 
b/dbaccess/source/ui/inc/DExport.hxx
index 9b1fa8b..974d7c3 100644
--- a/dbaccess/source/ui/inc/DExport.hxx
+++ b/dbaccess/source/ui/inc/DExport.hxx
@@ -60,8 +60,8 @@ namespace dbaui
 typedef ::std::vector ::std::pairsal_Int32,sal_Int32TPositions;
 
 protected:
-TPositions  m_vColumns; // Welche Spalten 
ubernommen werden sollen
-::std::vectorsal_Int32m_vColumnTypes; // FeldTypen fur 
schnelleren Zugriff
+TPositions  m_vColumns; // columns to be used
+::std::vectorsal_Int32m_vColumnTypes; // ColumnTypes for 
faster access
 ::std::vectorsal_Int32m_vColumnSize;
 ::std::vectorsal_Int16m_vNumberFormat;
 ::com::sun::star::lang::Locale  m_aLocale;
@@ -84,20 +84,20 @@ namespace dbaui
 //for save the selected tablename
 ::rtl::OUString m_sDefaultTableName;
 
-String  m_sTextToken;   // Zellen Inhalt
+String  m_sTextToken;   /// cell content
 String  m_sNumToken;/// SDNUM value
 String  m_sValToken;/// SDVAL value
 TOTypeInfoSPm_pTypeInfo;// contains the default type
 const TColumnVector* m_pColumnList;
 const OTypeInfoMap* m_pInfoMap;
-sal_Int32   m_nColumnPos;   // aktuelle Spaltenposition
-sal_Int32   m_nRows;// Anzahl der Zeilen die 
durchsucht werden sollen
+sal_Int32   m_nColumnPos;   // current column position
+sal_Int32   m_nRows;// number of rows to be searched
 sal_Int32   m_nRowCount;// current count of rows
-rtl_TextEncodingm_nDefToken;// Sprache
-sal_Boolm_bError;   // Fehler und Abbruchstatus
-sal_Boolm_bInTbl;   // Ist gesetzt, wenn der 
Parser sich in der RTF Tabelle befindet
-sal_Boolm_bHead;// ist true, wenn die Kopfzeile 
noch nicht gelesen wurde
-sal_Boolm_bDontAskAgain;// Falls beim Einfugen ein Fehler 
auftritt, soll die Fehlermeldung nicht
+rtl_TextEncodingm_nDefToken;// language
+sal_Boolm_bError;   // error and termination code
+sal_Boolm_bInTbl;   // true, if parser is in RTF 
table
+sal_Boolm_bHead;// true, if the header hasn't been 
read yet
+sal_Boolm_bDontAskAgain;// if there is an error when 
pasting, don't show it again
 sal_Boolm_bIsAutoIncrement; // if PKey is set by user
 sal_Boolm_bFoundTable;  // set to true when a table 
was found
 sal_Boolm_bCheckOnly;
@@ -139,7 +139,7 @@ namespace dbaui
 SvStream _rInputStream
 );
 
-// wird fur auto. Typ-Erkennung gebraucht
+// required for automatic type recognition
 ODatabaseExport(
 sal_Int32 nRows,
 const TPositions _rColumnPositions,
diff --git a/dbaccess/source/ui/inc/FieldDescControl.hxx 
b/dbaccess/source/ui/inc/FieldDescControl.hxx
index 69c6bc8..e19baf1 100644
--- a/dbaccess/source/ui/inc/FieldDescControl.hxx
+++ b/dbaccess/source/ui/inc/FieldDescControl.hxx
@@ -26,7 +26,7 @@
 #include TypeInfo.hxx
 
 //--
-// die Spalten einer Feld-Beschreibung einer Tabelle
+// field description columns of a table
 #define FIELD_NAME  1
 #define FIELD_TYPE  2
 #define HELP_TEXT   3
@@ 

[PUSHED][PATCH] more german translations in dbaccess

2012-08-12 Thread Philipp Riemer
2012/8/10 Daniel Herde dan...@dher.de:
 Hi, here are some more translations of german comments.

 Have a nice friday evening, Daniel.

Thank you very much!

However, I had to clean up your patch before applying it since it
contained trailing whitespaces. Please take care about this when
preparing the next patch (git should warn you when adding a file,
maybe try git add -p FILE)!

Looking forward to see more of such great patches from you!

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


same id twice in dbaccess/source/ui/inc/FieldDescControl.hxx ?

2012-08-12 Thread Philipp Riemer
Hello,

When integrating a translation patch (see
http://cgit.freedesktop.org/libreoffice/core/commit/?id=401a454c2da7560d5ec41ef07ac116403956c55a)
I realized that in dbaccess/source/ui/inc/FieldDescControl.hxx there
is twice the same number assigned to two different constants. Should
this be that way or is it a mistake/bug/... ? If it is a wished
behavior, maybe a short comment behind the constant declaration of
someone knowing the code better than me would help here.

--- snip ---
#define COLUMN_DESCRIPTION  4

#define FIELD_FIRST_VIRTUAL_COLUMN  5

#define FIELD_PROPERTY_REQUIRED 5
#define FIELD_PROPERTY_NUMTYPE  6
--- snip ---

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


[Bug 37361] LibreOffice 3.5 most annoying bugs

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

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

   What|Removed |Added

 Depends on||42939

--- Comment #355 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-08-12 15:36:22 UTC ---
Add Bug 42939 - SVG Export ignores line width, currently SVG export is
completely unusable.

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


[Libreoffice-commits] .: dbaccess/source

2012-08-12 Thread Philipp Riemer
 dbaccess/source/ui/inc/DExport.hxx   |   47 +-
 dbaccess/source/ui/inc/HtmlReader.hxx|6 -
 dbaccess/source/ui/inc/JoinTableView.hxx |  104 +++
 dbaccess/source/ui/inc/QueryTableView.hxx|   44 -
 dbaccess/source/ui/inc/RelationTableView.hxx |   13 +-
 dbaccess/source/ui/inc/RtfReader.hxx |4 
 dbaccess/source/ui/inc/TableConnection.hxx   |   19 ++--
 dbaccess/source/ui/inc/TableConnectionData.hxx   |   22 ++--
 dbaccess/source/ui/inc/TableDesignControl.hxx|5 -
 dbaccess/source/ui/inc/TableFieldDescription.hxx |8 -
 10 files changed, 139 insertions(+), 133 deletions(-)

New commits:
commit 5c293bfa9023fcc4fbb104c49e9ef28d23b38594
Author: Philipp Riemer ruderphil...@gmail.com
Date:   Sun Aug 12 18:22:40 2012 +0200

convert comments into doxygen style + reformat some existing ones

Change-Id: Ia9580f8d6ef19025654b5486816e5a75f76f1174

diff --git a/dbaccess/source/ui/inc/DExport.hxx 
b/dbaccess/source/ui/inc/DExport.hxx
index 974d7c3..5b6c72f 100644
--- a/dbaccess/source/ui/inc/DExport.hxx
+++ b/dbaccess/source/ui/inc/DExport.hxx
@@ -60,46 +60,46 @@ namespace dbaui
 typedef ::std::vector ::std::pairsal_Int32,sal_Int32TPositions;
 
 protected:
-TPositions  m_vColumns; // columns to be used
-::std::vectorsal_Int32m_vColumnTypes; // ColumnTypes for 
faster access
+TPositions  m_vColumns; /// columns to be used
+::std::vectorsal_Int32m_vColumnTypes; /// ColumnTypes for 
faster access
 ::std::vectorsal_Int32m_vColumnSize;
 ::std::vectorsal_Int16m_vNumberFormat;
 ::com::sun::star::lang::Locale  m_aLocale;
 
-TColumnsm_aDestColumns; // container for new 
created columns
+TColumnsm_aDestColumns; /// container for new 
created columns
 TColumnVector   m_vDestVector;
 
-::com::sun::star::uno::Reference 
::com::sun::star::beans::XPropertySetm_xTable;   // dest table
-::com::sun::star::uno::Reference 
::com::sun::star::container::XNameAccess m_xTables;  // container
-SharedConnection   
 m_xConnection;  // dest conn
+::com::sun::star::uno::Reference 
::com::sun::star::beans::XPropertySetm_xTable;   /// dest table
+::com::sun::star::uno::Reference 
::com::sun::star::container::XNameAccess m_xTables;  /// container
+SharedConnection   
 m_xConnection;  /// dest conn
 
 ::boost::shared_ptrIUpdateHelper 
 m_pUpdateHelper;
-::com::sun::star::uno::Reference ::com::sun::star::sdbc::XResultSet  
 m_xResultSet;   //
-::com::sun::star::uno::Reference 
::com::sun::star::util::XNumberFormatter m_xFormatter;   // a number 
formatter working with the connection's NumberFormatsSupplier
+::com::sun::star::uno::Reference ::com::sun::star::sdbc::XResultSet  
 m_xResultSet;
+::com::sun::star::uno::Reference 
::com::sun::star::util::XNumberFormatter m_xFormatter;   /// a number 
formatter working with the connection's NumberFormatsSupplier
 ::com::sun::star::uno::Reference 
::com::sun::star::lang::XMultiServiceFactory m_xFactory;
 ::com::sun::star::util::Date   
 m_aNullDate;
 
 SvNumberFormatter*  m_pFormatter;
 SvStream   m_rInputStream;
-//for save the selected tablename
+/// for saving the selected tablename
 ::rtl::OUString m_sDefaultTableName;
 
-String  m_sTextToken;   /// cell content
-String  m_sNumToken;/// SDNUM value
-String  m_sValToken;/// SDVAL value
-TOTypeInfoSPm_pTypeInfo;// contains the default type
+String  m_sTextToken;   /// cell content
+String  m_sNumToken;/// SDNUM value
+String  m_sValToken;/// SDVAL value
+TOTypeInfoSPm_pTypeInfo;/// contains the default type
 const TColumnVector* m_pColumnList;
 const OTypeInfoMap* m_pInfoMap;
-sal_Int32   m_nColumnPos;   // current column position
-sal_Int32   m_nRows;// number of rows to be searched
-sal_Int32   m_nRowCount;// current count of rows
-rtl_TextEncodingm_nDefToken;// language
-sal_Boolm_bError;   // error and termination code
-sal_Boolm_bInTbl;   // true, if parser is in RTF 
table
-sal_Boolm_bHead;// true, if the 

[Libreoffice-commits] .: 5 commits - dbaccess/source

2012-08-12 Thread Philipp Riemer
 dbaccess/source/ui/inc/DExport.hxx   |   37 +++
 dbaccess/source/ui/inc/FieldDescControl.hxx  |   11 --
 dbaccess/source/ui/inc/HtmlReader.hxx|   15 --
 dbaccess/source/ui/inc/JoinExchange.hxx  |   13 --
 dbaccess/source/ui/inc/JoinTableView.hxx |   72 +++---
 dbaccess/source/ui/inc/QEnumTypes.hxx|4 
 dbaccess/source/ui/inc/QueryTableView.hxx|   18 +--
 dbaccess/source/ui/inc/RelationTableView.hxx |   17 +--
 dbaccess/source/ui/inc/RtfReader.hxx |4 
 dbaccess/source/ui/inc/TableConnection.hxx   |3 
 dbaccess/source/ui/inc/TableConnectionData.hxx   |   22 +---
 dbaccess/source/ui/inc/TableDesignControl.hxx|   19 +--
 dbaccess/source/ui/inc/TableDesignHelpBar.hxx|8 -
 dbaccess/source/ui/inc/TableFieldDescription.hxx |  117 +++
 14 files changed, 170 insertions(+), 190 deletions(-)

New commits:
commit 6bf0ea22d6198def6b59f45a93960842a3198bf9
Author: Philipp Riemer ruderphil...@gmail.com
Date:   Sun Aug 12 18:55:05 2012 +0200

formatted a missed comment into doxygen style

This is a follow-up patch of 401a454c2da7560d5ec41ef07ac116403956c55a.

Change-Id: I33d995fd195b6f40644ce124de2578bde7a2c85c

diff --git a/dbaccess/source/ui/inc/JoinTableView.hxx 
b/dbaccess/source/ui/inc/JoinTableView.hxx
index e554095..8c97240 100644
--- a/dbaccess/source/ui/inc/JoinTableView.hxx
+++ b/dbaccess/source/ui/inc/JoinTableView.hxx
@@ -232,13 +232,18 @@ namespace dbaui
 /** @note can be used for special ui handling after dd */
 virtual void lookForUiActivities();
 
-/// called after moving/resizing TabWins
-/// (the standard implementation just passes the new data to the Wins)
+/** Hook that is called after moving/resizing TabWins
+
+The position is 'virtual': the container has a virtual area of
+which only a part - changeable by scroll bar - is visible.
+Therefore: ptOldPosition is always positive, even if it represents
+a point with a negative physical ordinate above the visible area
+
+@note The standard implementation just passes the new data to the
+  Wins
+ */
 virtual void TabWinMoved(OTableWindow* ptWhich, const Point 
ptOldPosition);
-// the position is 'virtual': the container has a virtual area
-// of which only a part - changeable by scroll bar - is visible
-// therefore: ptOldPosition is always positive, even if it 
represents
-// a point with a negative physical ordinate above the visible area
+
 virtual void TabWinSized(OTableWindow* ptWhich, const Point 
ptOldPosition, const Size szOldSize);
 
 void modified();
commit 5ffdd7803d302f240e749750d92dc36fe23ae9a5
Author: Philipp Riemer ruderphil...@gmail.com
Date:   Sun Aug 12 18:48:35 2012 +0200

change indentation

This is a follow-up patch of 401a454c2da7560d5ec41ef07ac116403956c55a.

Change-Id: Idf2c7da3e449dec1afcc0aa3683ea46c6172420a

diff --git a/dbaccess/source/ui/inc/DExport.hxx 
b/dbaccess/source/ui/inc/DExport.hxx
index 8eda75f..e1c4068 100644
--- a/dbaccess/source/ui/inc/DExport.hxx
+++ b/dbaccess/source/ui/inc/DExport.hxx
@@ -153,9 +153,9 @@ namespace dbaui
 SvStream _rInputStream
 );
 
-voidSetColumnTypes(const TColumnVector* rList,const OTypeInfoMap* 
_pInfoMap);
+void SetColumnTypes(const TColumnVector* rList,const OTypeInfoMap* 
_pInfoMap);
 
-inline voidSetTableName(const ::rtl::OUString 
_sTableName){ m_sDefaultTableName = _sTableName ; }
+inline void SetTableName(const ::rtl::OUString _sTableName){ 
m_sDefaultTableName = _sTableName ; }
 
 virtual void release() = 0;
 
diff --git a/dbaccess/source/ui/inc/HtmlReader.hxx 
b/dbaccess/source/ui/inc/HtmlReader.hxx
index a1c14f8..f00d25c 100644
--- a/dbaccess/source/ui/inc/HtmlReader.hxx
+++ b/dbaccess/source/ui/inc/HtmlReader.hxx
@@ -66,8 +66,8 @@ namespace dbaui
 const OTypeInfoMap* _pInfoMap,
 sal_Bool _bAutoIncrementEnabled);
 
-virtual SvParserState CallParser();// base class
-virtual void  release();
+virtual SvParserState CallParser();// base class
+virtual void release();
 /// @attention recovers only valid data if 1. CTOR has been used
 };
 
diff --git a/dbaccess/source/ui/inc/JoinTableView.hxx 
b/dbaccess/source/ui/inc/JoinTableView.hxx
index 40aefff..e554095 100644
--- a/dbaccess/source/ui/inc/JoinTableView.hxx
+++ b/dbaccess/source/ui/inc/JoinTableView.hxx
@@ -137,7 +137,7 @@ namespace dbaui
 virtual void RemoveTabWin( OTableWindow* pTabWin );
 
 // hide all TabWins (does NOT delete them; they are put in an UNDO 
action)
-virtual voidHideTabWins();
+virtual void HideTabWins();
 
 virtual void 

[PATCH] Reformatted existing comments

2012-08-12 Thread Gerrit
From Philipp Riemer ruderphil...@gmail.com:

Philipp Riemer has uploaded a new change for review.

Change subject: Reformatted existing comments
..

Reformatted existing comments

This is a follow-up patch of 401a454c2da7560d5ec41ef07ac116403956c55a.

Change-Id: If7739768ee0f90c6beb71cb56843fbbc98947873
---
M dbaccess/source/ui/inc/FieldDescControl.hxx
M dbaccess/source/ui/inc/JoinTableView.hxx
M dbaccess/source/ui/inc/TableConnectionData.hxx
3 files changed, 9 insertions(+), 8 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/93/393/1
--
To view, visit https://gerrit.libreoffice.org/393
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: If7739768ee0f90c6beb71cb56843fbbc98947873
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Philipp Riemer ruderphil...@gmail.com

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


[PATCH] removed commented out calls

2012-08-12 Thread Gerrit
From Philipp Riemer ruderphil...@gmail.com:

Philipp Riemer has uploaded a new change for review.

Change subject: removed commented out calls
..

removed commented out calls

This is a follow-up patch of 401a454c2da7560d5ec41ef07ac116403956c55a.

Change-Id: I5304467333c9d1554ed4426962e42d7c0ce58b9f
---
M dbaccess/source/ui/inc/FieldDescControl.hxx
M dbaccess/source/ui/inc/RtfReader.hxx
2 files changed, 0 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/97/397/1
--
To view, visit https://gerrit.libreoffice.org/397
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I5304467333c9d1554ed4426962e42d7c0ce58b9f
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Philipp Riemer ruderphil...@gmail.com

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


[PATCH] Moved method declaration in class definition

2012-08-12 Thread Gerrit
From Philipp Riemer ruderphil...@gmail.com:

Philipp Riemer has uploaded a new change for review.

Change subject: Moved method declaration in class definition
..

Moved method declaration in class definition

The following method was added at the bottom and is now moved to all
other methods marked as protected.

This is a follow-up patch of 401a454c2da7560d5ec41ef07ac116403956c55a.

Change-Id: Ib536f93f1565a128a3bb5dff12496005c51acb83
---
M dbaccess/source/ui/inc/FieldDescControl.hxx
1 file changed, 2 insertions(+), 2 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/98/398/1
--
To view, visit https://gerrit.libreoffice.org/398
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib536f93f1565a128a3bb5dff12496005c51acb83
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Philipp Riemer ruderphil...@gmail.com

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


[PATCH] formatted a missed comment into doxygen style

2012-08-12 Thread Gerrit
From Philipp Riemer ruderphil...@gmail.com:

Philipp Riemer has uploaded a new change for review.

Change subject: formatted a missed comment into doxygen style
..

formatted a missed comment into doxygen style

This is a follow-up patch of 401a454c2da7560d5ec41ef07ac116403956c55a.

Change-Id: I33d995fd195b6f40644ce124de2578bde7a2c85c
---
M dbaccess/source/ui/inc/JoinTableView.hxx
1 file changed, 11 insertions(+), 6 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/96/396/1
--
To view, visit https://gerrit.libreoffice.org/396
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I33d995fd195b6f40644ce124de2578bde7a2c85c
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Philipp Riemer ruderphil...@gmail.com

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


[PATCH] change indentation

2012-08-12 Thread Gerrit
From Philipp Riemer ruderphil...@gmail.com:

Philipp Riemer has uploaded a new change for review.

Change subject: change indentation
..

change indentation

This is a follow-up patch of 401a454c2da7560d5ec41ef07ac116403956c55a.

Change-Id: Idf2c7da3e449dec1afcc0aa3683ea46c6172420a
---
M dbaccess/source/ui/inc/DExport.hxx
M dbaccess/source/ui/inc/HtmlReader.hxx
M dbaccess/source/ui/inc/JoinTableView.hxx
M dbaccess/source/ui/inc/QueryTableView.hxx
M dbaccess/source/ui/inc/RelationTableView.hxx
M dbaccess/source/ui/inc/TableDesignControl.hxx
M dbaccess/source/ui/inc/TableFieldDescription.hxx
7 files changed, 79 insertions(+), 81 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/95/395/1
--
To view, visit https://gerrit.libreoffice.org/395
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Idf2c7da3e449dec1afcc0aa3683ea46c6172420a
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Philipp Riemer ruderphil...@gmail.com

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


Re: same id twice in dbaccess/source/ui/inc/FieldDescControl.hxx ?

2012-08-12 Thread Terrence Enger




--
View this message in context: 
http://nabble.documentfoundation.org/same-id-twice-in-dbaccess-source-ui-inc-FieldDescControl-hxx-tp4000772p4000819.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Bug 37361] LibreOffice 3.5 most annoying bugs

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

--- Comment #356 from ape os...@yandex.ru 2012-08-12 18:54:12 UTC ---
Nominate bug 53113 (DOCX filter loses shape containing text) and bug 53175
(Error reading “Content (TOC)” from a DOCX).
These bugs are not regression but they make unusable re-import OOXML text
documents (DOCX, ISO) by Writer. As result we need to use Microsoft Office for
this purpose.

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


[Libreoffice-commits] .: vcl/source

2012-08-12 Thread Gökcen Eraslan
 vcl/source/gdi/pdfwriter_impl.cxx |  139 +-
 1 file changed, 94 insertions(+), 45 deletions(-)

New commits:
commit a18db88afb82ff83e5ca69758a25d679abe9f0b4
Author: Gökçen Eraslan gokcen.eras...@gmail.com
Date:   Sun Aug 12 21:46:39 2012 +0300

Use new CMS API of NSS instead of old PKCS7 API.

Change-Id: Iad5edb2ea02d2a5e4144b9a6f72b9fcd99b56f73

diff --git a/vcl/source/gdi/pdfwriter_impl.cxx 
b/vcl/source/gdi/pdfwriter_impl.cxx
index 6104d55..026f1a6 100644
--- a/vcl/source/gdi/pdfwriter_impl.cxx
+++ b/vcl/source/gdi/pdfwriter_impl.cxx
@@ -87,8 +87,8 @@
 #include cert.h
 #include hasht.h
 #include sechash.h
-#include pkcs7t.h
-#include secpkcs7.h
+#include cms.h
+#include cmst.h
 
 using namespace vcl;
 
@@ -6160,21 +6160,9 @@ bool PDFWriterImpl::emitSignature()
 return true;
 }
 
-void PDFSigningPKCS7Callback(void *arg, const char *buf, unsigned long len)
+char *PDFSigningPKCS7PasswordCallback(PK11SlotInfo * /*slot*/, PRBool 
/*retry*/, void *arg)
 {
-OStringBuffer outbuffer;
-
-for (unsigned int i = 0; i  len ; i++)
-appendHex(buf[i], outbuffer);
-
-sal_uInt64 nWritten = 0;
-
-osl_writeFile((oslFileHandle)arg, outbuffer.getStr(), 
outbuffer.getLength(), nWritten);
-}
-
-void *PDFSigningPKCS7PasswordCallback(void *arg, void * /*handle*/)
-{
-return arg;
+return (char *)arg;
 }
 
 bool PDFWriterImpl::finalizeSignature()
@@ -6203,8 +6191,6 @@ bool PDFWriterImpl::finalizeSignature()
 }
 
 // 3- create the PKCS#7 object using NSS
-// use  m_aContext.SignCertificate and m_aContext.SignPassword as 
certificate and private key password
-// SignCertificate-getEncoded is DER encoded certificate
 com::sun::star::uno::Sequence sal_Int8  derEncoded = 
m_aContext.SignCertificate-getEncoded();
 
 if (!derEncoded.hasElements())
@@ -6215,14 +6201,6 @@ bool PDFWriterImpl::finalizeSignature()
 
 NSS_NoDB_Init(.);
 
-/* An alternate method for certificate reconstruction
-SECItem certitem;
-certitem.data = reinterpret_castunsigned char *(n_derArray);
-certitem.len = n_derLength;
-certitem.type = siDERCertBuffer;
-CERTCertificate *cert = CERT_NewTempCertificate(CERT_GetDefaultCertDB(), 
certitem, NULL, PR_FALSE, PR_TRUE);
-*/
-
 CERTCertificate *cert = CERT_DecodeCertFromPackage(reinterpret_castchar 
*(n_derArray), n_derLength);
 
 if (!cert)
@@ -6233,7 +6211,6 @@ bool PDFWriterImpl::finalizeSignature()
 
 SAL_WARN(vcl.gdi, PDF Signing: Certificate Subject:
cert-subjectName  \n\tCertificate Issuer:   cert-issuerName);
 
-
 // Prepare buffer and calculate PDF file digest
 CHECK_RETURN( (osl_File_E_None == osl_setFilePos( m_aFile, 
osl_Pos_Absolut, 0) ) );
 
@@ -6252,11 +6229,11 @@ bool PDFWriterImpl::finalizeSignature()
 
 //FIXME: Check if SHA1 is calculated from the correct byterange
 
-CHECK_RETURN( (osl_File_E_None == osl_readFile( m_aFile, buffer, 
m_nSignatureContentOffset, bytesRead ) ) );
-if (bytesRead != (sal_uInt64)m_nSignatureContentOffset)
+CHECK_RETURN( (osl_File_E_None == osl_readFile( m_aFile, buffer, 
m_nSignatureContentOffset - 1 , bytesRead ) ) );
+if (bytesRead != (sal_uInt64)m_nSignatureContentOffset - 1)
 SAL_WARN(vcl.gdi, PDF Signing: First buffer read failed!);
 
-HASH_Update(hc, reinterpret_castconst unsigned char*(buffer), 
m_nSignatureContentOffset);
+HASH_Update(hc, reinterpret_castconst unsigned char*(buffer), bytesRead);
 delete[] buffer;
 
 buffer = new char[nLastByteRangeNo + 1];
@@ -6265,7 +6242,7 @@ bool PDFWriterImpl::finalizeSignature()
 if (bytesRead != (sal_uInt64) nLastByteRangeNo)
 SAL_WARN(vcl.gdi, PDF Signing: Second buffer read failed!);
 
-HASH_Update(hc, reinterpret_castconst unsigned char*(buffer), 
nLastByteRangeNo);
+HASH_Update(hc, reinterpret_castconst unsigned char*(buffer), bytesRead);
 delete[] buffer;
 
 SECItem digest;
@@ -6276,36 +6253,108 @@ bool PDFWriterImpl::finalizeSignature()
 
 const char *pass = OUStringToOString( m_aContext.SignPassword, 
RTL_TEXTENCODING_UTF8 ).getStr();
 
-//FIXME: Check if password is passed correctly to 
SEC_PKCS7CreateSignedData function
-//TODO: Create PKCS7 object even if the certificate is invalid
-SEC_PKCS7ContentInfo *ci = SEC_PKCS7CreateSignedData(cert, 
certUsageEmailSigner, NULL, SEC_OID_SHA1, digest, 
(SECKEYGetPasswordKey)::PDFSigningPKCS7PasswordCallback, (void *)pass);
+NSSCMSMessage *cms_msg = NSS_CMSMessage_Create(NULL);
+if (!cms_msg)
+{
+SAL_WARN(vcl.gdi, PDF signing: can't create new CMS message.);
+return false;
+}
 
-if (!ci)
+NSSCMSSignedData *cms_sd = NSS_CMSSignedData_Create(cms_msg);
+if (!cms_sd)
 {
-SAL_WARN(vcl.gdi, PDF Signing: PKCS7 Creation failed:   
PORT_GetError());
+SAL_WARN(vcl.gdi, PDF signing: can't create CMS SignedData.);
+return false;
+}
+
+NSSCMSContentInfo *cms_cinfo = 

[Bug 37361] LibreOffice 3.5 most annoying bugs

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

ape os...@yandex.ru changed:

   What|Removed |Added

 Depends on||53113, 53175

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


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

2012-08-12 Thread Rafael Dominguez
 sfx2/inc/sfx2/templateabstractview.hxx   |4 +
 sfx2/inc/sfx2/templateonlineview.hxx |2 
 sfx2/source/control/templateabstractview.cxx |   12 +++
 sfx2/source/control/templateonlineview.cxx   |9 ++
 sfx2/source/doc/templatedlg.cxx  |   96 +--
 sfx2/source/doc/templatedlg.hrc  |7 +
 sfx2/source/doc/templatedlg.src  |   30 
 7 files changed, 154 insertions(+), 6 deletions(-)

New commits:
commit c49fbe94d4f704ea0c574047e9b6cc03992835b4
Author: Rafael Dominguez venccsra...@gmail.com
Date:   Sun Aug 12 13:32:12 2012 -0430

Dont let user create a repository with a duplicated name.

Change-Id: I4175515b72f0e9aac8e4cf2905757381539cab1e

diff --git a/sfx2/inc/sfx2/templateonlineview.hxx 
b/sfx2/inc/sfx2/templateonlineview.hxx
index 0d88d0b..78f6233 100644
--- a/sfx2/inc/sfx2/templateonlineview.hxx
+++ b/sfx2/inc/sfx2/templateonlineview.hxx
@@ -40,7 +40,7 @@ public:
 
 const std::vectorTemplateOnlineViewItem* getRepositories () const { 
return maRepositories; }
 
-void insertRepository (const OUString rName, const OUString rURL);
+bool insertRepository (const OUString rName, const OUString rURL);
 
 bool deleteRepository (const sal_uInt16 nRepositoryId);
 
diff --git a/sfx2/source/control/templateonlineview.cxx 
b/sfx2/source/control/templateonlineview.cxx
index 2133752..de74ab5 100644
--- a/sfx2/source/control/templateonlineview.cxx
+++ b/sfx2/source/control/templateonlineview.cxx
@@ -259,8 +259,14 @@ bool TemplateOnlineView::loadRepository (const sal_uInt16 
nRepositoryId, bool bR
 return true;
 }
 
-void TemplateOnlineView::insertRepository(const OUString rName, const 
OUString rURL)
+bool TemplateOnlineView::insertRepository(const OUString rName, const 
OUString rURL)
 {
+for (size_t i = 0, n = maRepositories.size(); i  n; ++i)
+{
+if (maRepositories[i]-maTitle == rName)
+return false;
+}
+
 TemplateOnlineViewItem *pItem = new TemplateOnlineViewItem(*this,this);
 
 pItem-mnId = maRepositories.size()+1;
@@ -270,6 +276,7 @@ void TemplateOnlineView::insertRepository(const OUString 
rName, const OUString
 maRepositories.push_back(pItem);
 
 mbIsSynced = false;
+return true;
 }
 
 bool TemplateOnlineView::deleteRepository(const sal_uInt16 nRepositoryId)
diff --git a/sfx2/source/doc/templatedlg.cxx b/sfx2/source/doc/templatedlg.cxx
index a025427..b0461e7 100644
--- a/sfx2/source/doc/templatedlg.cxx
+++ b/sfx2/source/doc/templatedlg.cxx
@@ -583,10 +583,17 @@ IMPL_LINK(SfxTemplateManagerDlg, RepositoryMenuSelectHdl, 
Menu*, pMenu)
 {
 boost::shared_ptrPlace pPlace = dlg.GetPlace();
 
-mpOnlineView-insertRepository(pPlace-GetName(),pPlace-GetUrl());
-
-// update repository list menu.
-createRepositoryMenu();
+if 
(mpOnlineView-insertRepository(pPlace-GetName(),pPlace-GetUrl()))
+{
+// update repository list menu.
+createRepositoryMenu();
+}
+else
+{
+OUString 
aMsg(SfxResId(STR_MSG_ERROR_REPOSITORY_NAME).toString());
+aMsg = aMsg.replaceFirst($1,pPlace-GetName());
+ErrorBox(this,WB_OK,aMsg).Execute();
+}
 }
 }
 else
diff --git a/sfx2/source/doc/templatedlg.hrc b/sfx2/source/doc/templatedlg.hrc
index a5d361e..0b82219 100644
--- a/sfx2/source/doc/templatedlg.hrc
+++ b/sfx2/source/doc/templatedlg.hrc
@@ -61,6 +61,7 @@
 #define STR_MSG_ERROR_EXPORT281
 #define STR_MSG_ERROR_DELETE_TEMPLATE   282
 #define STR_MSG_ERROR_DELETE_FOLDER 283
+#define STR_MSG_ERROR_REPOSITORY_NAME   284
 
 #define IMG_ACTION_SORT 304
 #define IMG_ACTION_REFRESH  305
diff --git a/sfx2/source/doc/templatedlg.src b/sfx2/source/doc/templatedlg.src
index c0bc39c..9024851 100644
--- a/sfx2/source/doc/templatedlg.src
+++ b/sfx2/source/doc/templatedlg.src
@@ -70,6 +70,11 @@ String STR_MSG_ERROR_DELETE_FOLDER
 Text [ en-US ] = The following folders cannot be deleted:\n$1;
 };
 
+String STR_MSG_ERROR_REPOSITORY_NAME
+{
+Text [ en-US ] = Failed to create repository \$1\.\nA repository with 
this name may already exist.;
+};
+
 ModelessDialog DLG_TEMPLATE_MANAGER
 {
 OutputSize = TRUE;
commit 26502c4f51a22e2aaea25c10d484b1c163c4f004
Author: Rafael Dominguez venccsra...@gmail.com
Date:   Sun Aug 12 12:16:25 2012 -0430

Display error message for failed operations with templates.

- Move, export and delete templates.
- Delete template folder.

Change-Id: I0c9f5ad299182ce0038695d78eb2e5e09afee1c5

diff --git a/sfx2/source/doc/templatedlg.cxx b/sfx2/source/doc/templatedlg.cxx
index bc83ecf..a025427 100644
--- a/sfx2/source/doc/templatedlg.cxx
+++ b/sfx2/source/doc/templatedlg.cxx
@@ -788,6 +788,7 @@ void SfxTemplateManagerDlg::OnTemplateExport()
 
 if( nResult == 

[Libreoffice-commits] .: Branch 'feature/unitymenus' - vcl/inc vcl/unx

2012-08-12 Thread Antonio Fernandez
 vcl/inc/unx/gtk/gtksalmenu.hxx|   37 +--
 vcl/unx/gtk/window/gtksalmenu.cxx |  177 +-
 2 files changed, 85 insertions(+), 129 deletions(-)

New commits:
commit b3fb9d3fb27cae173604c7a97a3034e3914b13d0
Author: Antonio Fernandez antonio.fernan...@aentos.es
Date:   Sun Aug 12 20:17:23 2012 +0100

Menu model hierarchy is now updated everytime a menu item is changed.

Change-Id: I8d591902405ae84ee8758da0ace6680b0516dbc6

diff --git a/vcl/inc/unx/gtk/gtksalmenu.hxx b/vcl/inc/unx/gtk/gtksalmenu.hxx
index 3e30323..3d1073b 100644
--- a/vcl/inc/unx/gtk/gtksalmenu.hxx
+++ b/vcl/inc/unx/gtk/gtksalmenu.hxx
@@ -33,7 +33,10 @@
 #include vcl/bitmap.hxx
 #include unx/gtk/gtkframe.hxx
 #include unx/salmenu.h
+
 #include gio/gio.h
+
+#include glomenu.h
 #include gloactiongroup.h
 
 #include vector
@@ -41,8 +44,6 @@
 
 class GtkSalMenuItem;
 
-typedef std::vector GtkSalMenuItem*  GtkSalMenuSection;
-
 class GtkSalMenu : public SalMenu
 {
 private:
@@ -53,17 +54,25 @@ private:
 GtkSalMenuItem* GetSalMenuItem( sal_uInt16 nId );
 
 public:
-std::vector GtkSalMenuSection*maSections;
-GtkSalMenuSection*  mpCurrentSection;
-
-Menu*   mpVCLMenu;
-GtkSalMenu* mpParentSalMenu;
-const GtkSalFrame*  mpFrame;
-gchar*  aDBusMenubarPath;
-GDBusConnection*pSessionBus;
-sal_Int32   mBusId;
-sal_Int32   mMenubarId;
-sal_Int32   mActionGroupId;
+std::vector GMenuModel*   maSections;
+std::vector GtkSalMenuItem*   maItems;
+
+Menu*   mpVCLMenu;
+GtkSalMenu* mpParentSalMenu;
+const GtkSalFrame*  mpFrame;
+
+// DBus variables
+gchar*  aDBusMenubarPath;
+GDBusConnection*pSessionBus;
+sal_Int32   mBusId;
+sal_Int32   mMenubarId;
+sal_Int32   mActionGroupId;
+
+// GMenuModel attributes
+GMenuModel* mpMenuModel;
+GMenuModel* mpCurrentSection;
+//GLOMenu*mpParentMenuModel;
+//std::vector GLOMenu*  maSectionMenus;
 
 GtkSalMenu( sal_Bool bMenuBar );
 virtual ~GtkSalMenu();
@@ -95,9 +104,11 @@ public:
 virtual ~GtkSalMenuItem();
 
 sal_uInt16  mnId; // Item ID
+sal_uInt16  mnPos;// Item position
 Menu*   mpVCLMenu;// VCL Menu into which this 
MenuItem is inserted
 GtkSalMenu* mpParentMenu; // The menu in which this menu 
item is inserted
 GtkSalMenu* mpSubMenu;// Sub menu of this item (if 
defined)
+GMenuModel* mpParentSection;  // Section where this item is 
added.
 GMenuItem*  mpMenuItem;   // The GMenuItem
 GAction*mpAction; // The GAction associated with 
this item
 };
diff --git a/vcl/unx/gtk/window/gtksalmenu.cxx 
b/vcl/unx/gtk/window/gtksalmenu.cxx
index 74ad97a..08aa521 100644
--- a/vcl/unx/gtk/window/gtksalmenu.cxx
+++ b/vcl/unx/gtk/window/gtksalmenu.cxx
@@ -68,104 +68,20 @@ dispatchAction (GSimpleAction   *action,
 }
 }
 
-//GMenuModel* generateMenuModel2( Menu *pVCLMenu )
-//{
-//if (!pVCLMenu)
-//return NULL;
-
-//GMenu *pMenuModel = g_menu_new();
-//GMenu *pSectionMenuModel = g_menu_new();
-
-//for (int i = 0; i  pVCLMenu-GetItemCount(); i++) {
-//MenuItemType itemType = pVCLMenu-GetItemType( i );
-
-//if ( itemType == MENUITEM_SEPARATOR ) {
-//g_menu_append_section( pMenuModel, NULL, G_MENU_MODEL( 
pSectionMenuModel ) );
-//pSectionMenuModel = g_menu_new();
-//} else {
-//sal_Int16 nId = pVCLMenu-GetItemId( i );
-
-//// Menu item label
-//rtl::OUString aTextLabel = pVCLMenu-GetItemText( nId );
-//rtl::OUString aText = aTextLabel.replace( '~', '_' );
-//rtl::OString aConvertedText = OUStringToOString(aText, 
RTL_TEXTENCODING_UTF8);
-
-//// Menu item accelerator key
-KeyCode accelKey = pVCLMenu-GetAccelKey( nId );
-
-//GMenuItem *menuItem = g_menu_item_new( (char*) 
aConvertedText.getStr(), NULL);
-
-//GMenuModel *pSubmenu = generateMenuModel2( 
pVCLMenu-GetPopupMenu( nId ) );
-
-//g_menu_item_set_submenu( menuItem, pSubmenu );
-
-//g_menu_append_item( pSectionMenuModel, menuItem );
-//}
-//}
-
-//g_menu_append_section( pMenuModel, NULL, G_MENU_MODEL( pSectionMenuModel 
) );
-
-//return G_MENU_MODEL( pMenuModel );
-//}
-
-
-GMenuModel *generateMenuModelAndActions( GtkSalMenu*, GLOActionGroup* );
-
-GMenuModel 

Re: same id twice in dbaccess/source/ui/inc/FieldDescControl.hxx ?

2012-08-12 Thread Philipp Riemer
 opengrok shows FIELD_FIRST_VIRTUAL_COLUMN used only in
 dbaccess/source/ui/tabledesign/TEditControl.cxx, where two
 lines read ...
 if( nColId  FIELD_FIRST_VIRTUAL_COLUMN )

 My conclusion is that the definitions are reasonable.

 HTH,
 Terry.

Ok. Sorry, I did not grok for it but asked directly... Next time I
will hopefully do it upfront before asking embarrassing questions
again..!

Thank you very much for the fast answer!

Philipp

PS1: So I will write a little explanatory comment at this line, ok?
PS2: I had to read your comment at Nabble since it was not forwarded by mail:

2012/8/12 Terrence Enger ten...@iseries-guru.com:




 --
 View this message in context: 
 http://nabble.documentfoundation.org/same-id-twice-in-dbaccess-source-ui-inc-FieldDescControl-hxx-tp4000772p4000819.html
 Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: [PATCH] fdo#39468 translate German comments in core/tools

2012-08-12 Thread Philipp Riemer
Hey Oliver,

2012/8/12 Oliver Günther m...@oliverguenther.de:
 Hi,
 I finished translation all german comments in the core/tools folder.

 Please find the patch attached.
 Sorry for messing up with the whitespace, I was simply missing the approriate 
 Vim highlights and git warnings.
 I hope the new patch is more conformant.

 Cheers,
 Oliver

I tried applying your patch. While this worked like a charm, I
realized some stuff (also citing mmeeks here):

Some of the original German comments are sometimes a bit cute / un-necessary:


//   class FooBaa //


class FooBaa {
...
};

In that case you can delete the comment completely. If there is some
valueable info in the box than please remove all the ascii art and
just keep the pure commit content. Also the blank line between comment
and class definition is not needed.

In addition, feel free to clean-out redundant cruft like (can also be
completely removed):

// hole Beschreibung vom Objekt FooBaa
rtl::OUString FooBaa::getDescription()
{
}

A super plus would be if you could also format the patches to conform
to Doxygen style (see http://doxygen.org/) if they are in a header
(.hxx etc.) file. This means that one-liners have three slashes
(instead of two) and multi-line comments have a /** */ frame with
@param etc.

So, I am currently going through all the files and clean them up
as well before submitting your patch. Thus, please do not wonder why
it is still not integrated yet.

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


[PATCH] Set sizer color to dark grey; was dark black

2012-08-12 Thread Gerrit
From Jean-Tiare Le Bigot ad...@jtlebi.fr:

Jean-Tiare Le Bigot has uploaded a new change for review.

Change subject: Set sizer color to dark grey; was dark black
..

Set sizer color to dark grey; was dark black

The color setting was picked from SplitWindow::Paint()
for visual consistency with the sizers used in Impress
for example.

This commit also resurects presumably dead code.
In fact GDB let me see that only the short path
was taken.

Change-Id: I9a051fd894feccff4bbc7db7efe1160cb2c3a2c6
---
M vcl/source/window/split.cxx
1 file changed, 30 insertions(+), 35 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/99/399/1
--
To view, visit https://gerrit.libreoffice.org/399
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I9a051fd894feccff4bbc7db7efe1160cb2c3a2c6
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Jean-Tiare Le Bigot ad...@jtlebi.fr

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


Re: [PATCH] Set sizer color to dark grey; was dark black

2012-08-12 Thread Jean-Tiare LE BIGOT
Hi !

I forgot to mention in the commit message that it visually impacts
(enhances) Calc's window splitters and, more visibly, the Basic IDE
which now looks much nicer :)

If I have some time, I will see if it's possible to move Basic IDE to
SplitWindow instead of Split. 'SplitWindow' is the one used by Impress
and seems more powerful.

Regards,

On 12/08/2012 17:17, Gerrit wrote:
From Jean-Tiare Le Bigot ad...@jtlebi.fr:
 
 Jean-Tiare Le Bigot has uploaded a new change for review.
 
 Change subject: Set sizer color to dark grey; was dark black
 ..
 
 Set sizer color to dark grey; was dark black
 
 The color setting was picked from SplitWindow::Paint()
 for visual consistency with the sizers used in Impress
 for example.
 
 This commit also resurects presumably dead code.
 In fact GDB let me see that only the short path
 was taken.
 
 Change-Id: I9a051fd894feccff4bbc7db7efe1160cb2c3a2c6
 ---
 M vcl/source/window/split.cxx
 1 file changed, 30 insertions(+), 35 deletions(-)
 
 
   git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/99/399/1
 --
 To view, visit https://gerrit.libreoffice.org/399
 To unsubscribe, visit https://gerrit.libreoffice.org/settings
 
 Gerrit-MessageType: newchange
 Gerrit-Change-Id: I9a051fd894feccff4bbc7db7efe1160cb2c3a2c6
 Gerrit-PatchSet: 1
 Gerrit-Project: core
 Gerrit-Branch: master
 Gerrit-Owner: Jean-Tiare Le Bigot ad...@jtlebi.fr
 
 ___
 LibreOffice mailing list
 LibreOffice@lists.freedesktop.org
 http://lists.freedesktop.org/mailman/listinfo/libreoffice
 


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


[Libreoffice-commits] .: Branch 'feature/mork' - connectivity/Library_mork.mk connectivity/source

2012-08-12 Thread David Ostrovsky
 connectivity/Library_mork.mk   |2 
 connectivity/source/drivers/mork/MColumnAlias.cxx  |  184 
 connectivity/source/drivers/mork/MColumnAlias.hxx  |   79 +
 connectivity/source/drivers/mork/MConfigAccess.cxx |  259 +
 connectivity/source/drivers/mork/MConfigAccess.hxx |   32 ++
 connectivity/source/drivers/mork/MConnection.cxx   |1 
 connectivity/source/drivers/mork/MConnection.hxx   |4 
 connectivity/source/drivers/mork/MDatabaseMetaData.cxx |   17 -
 connectivity/source/drivers/mork/MExtConfigAccess.hxx  |   39 ++
 connectivity/source/drivers/mork/MResultSet.cxx|   17 -
 10 files changed, 615 insertions(+), 19 deletions(-)

New commits:
commit b075a9b9672198651c5bbf534944bcb227245887
Author: David Ostrovsky da...@ostrovsky.org
Date:   Mon Aug 13 00:09:59 2012 +0200

mork driver: add OColumnAlias

Change-Id: I85329469e92d51126f4e86bcafde7756277d7ddb

diff --git a/connectivity/Library_mork.mk b/connectivity/Library_mork.mk
index 388dd91..97eda03 100644
--- a/connectivity/Library_mork.mk
+++ b/connectivity/Library_mork.mk
@@ -34,6 +34,8 @@ $(eval $(call gb_Library_use_sdk_api,mork))
 
 $(eval $(call gb_Library_add_exception_objects,mork, \
 connectivity/source/drivers/mork/MColumns \
+connectivity/source/drivers/mork/MConfigAccess \
+connectivity/source/drivers/mork/MColumnAlias \
 connectivity/source/drivers/mork/MNSFolders \
 connectivity/source/drivers/mork/MNSINIParser \
 connectivity/source/drivers/mork/MNSProfileDiscover \
diff --git a/connectivity/source/drivers/mork/MColumnAlias.cxx 
b/connectivity/source/drivers/mork/MColumnAlias.cxx
new file mode 100644
index 000..d2c3ad1
--- /dev/null
+++ b/connectivity/source/drivers/mork/MColumnAlias.cxx
@@ -0,0 +1,184 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ *
+ * This file incorporates work covered by the following license notice:
+ *
+ *   Licensed to the Apache Software Foundation (ASF) under one or more
+ *   contributor license agreements. See the NOTICE file distributed
+ *   with this work for additional information regarding copyright
+ *   ownership. The ASF licenses this file to you under the Apache
+ *   License, Version 2.0 (the License); you may not use this file
+ *   except in compliance with the License. You may obtain a copy of
+ *   the License at http://www.apache.org/licenses/LICENSE-2.0 .
+ */
+
+#include sal/macros.h
+#include MColumnAlias.hxx
+#include MConnection.hxx
+#include MExtConfigAccess.hxx
+
+#include com/sun/star/beans/XPropertySet.hpp
+#include com/sun/star/container/XNameAccess.hpp
+
+#include tools/diagnose_ex.h
+
+#include algorithm
+#include functional
+
+using namespace ::connectivity;
+using namespace ::connectivity::mork;
+using namespace ::com::sun::star::uno;
+using namespace ::com::sun::star::lang;
+using namespace ::com::sun::star::beans;
+using namespace ::com::sun::star::container;
+
+//--
+OColumnAlias::OColumnAlias( const ::com::sun::star::uno::Reference 
::com::sun::star::lang::XMultiServiceFactory  _rxORB )
+{
+static const sal_Char* s_pProgrammaticNames[] =
+{
+FirstName,
+LastName,
+DisplayName,
+NickName,
+PrimaryEmail,
+SecondEmail,
+PreferMailFormat,
+WorkPhone,
+HomePhone,
+FaxNumber,
+PagerNumber,
+CellularNumber,
+HomeAddress,
+HomeAddress2,
+HomeCity,
+HomeState,
+HomeZipCode,
+HomeCountry,
+WorkAddress,
+WorkAddress2,
+WorkCity,
+WorkState,
+WorkZipCode,
+WorkCountry,
+JobTitle,
+Department,
+Company,
+WebPage1,
+WebPage2,
+BirthYear,
+BirthMonth,
+BirthDay,
+Custom1,
+Custom2,
+Custom3,
+Custom4,
+Notes,
+};
+
+for ( size_t i = 0; i  sizeof( s_pProgrammaticNames ) / sizeof( 
s_pProgrammaticNames[0] ); ++i )
+m_aAliasMap[ ::rtl::OUString::createFromAscii( s_pProgrammaticNames[i] 
) ] = AliasEntry( s_pProgrammaticNames[i], i );
+
+initialize( _rxORB );
+}
+
+//--
+void OColumnAlias::initialize( const ::com::sun::star::uno::Reference 
::com::sun::star::lang::XMultiServiceFactory  _rxORB )
+{
+// open our driver settings config node
+
+// the config path for our own driver's settings
+Reference XPropertySet  xDriverNode = createDriverConfigNode( _rxORB );
+if ( xDriverNode.is() )

Re: same id twice in dbaccess/source/ui/inc/FieldDescControl.hxx ?

2012-08-12 Thread Terrence Enger




--
View this message in context: 
http://nabble.documentfoundation.org/same-id-twice-in-dbaccess-source-ui-inc-FieldDescControl-hxx-tp4000772p4000862.html
Sent from the Dev mailing list archive at Nabble.com.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[Libreoffice-commits] .: 3 commits - android/experimental android/qa canvas/source fileaccess/source solenv/gbuild unusedcode.easy

2012-08-12 Thread Matus Kukan
 android/experimental/DocumentLoader/Makefile  |1 
 android/experimental/LibreOffice4Android/Makefile |1 
 android/qa/desktop/Makefile   |1 
 android/qa/sc/Makefile|1 
 canvas/source/null/null_spritecanvashelper.cxx|   23 ---
 canvas/source/null/null_spritecanvashelper.hxx|   32 --
 fileaccess/source/FileAccess.cxx  |6 ++--
 solenv/gbuild/extensions/pre_MergedLibsList.mk|   10 +-
 unusedcode.easy   |4 --
 9 files changed, 11 insertions(+), 68 deletions(-)

New commits:
commit d10b5d34a266f1e1793109a629804cd54f665258
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Sun Aug 12 14:56:36 2012 +0200

fileaccess: use anonymous namespace

Change-Id: I697850a43c9942833776c60752cf4639ec255768

diff --git a/fileaccess/source/FileAccess.cxx b/fileaccess/source/FileAccess.cxx
index 710050b..d6f2b14 100644
--- a/fileaccess/source/FileAccess.cxx
+++ b/fileaccess/source/FileAccess.cxx
@@ -70,7 +70,7 @@ using namespace ::com::sun::star::container;
 
 using ::std::vector;
 
-namespace io_FileAccess
+namespace
 {
 
 
@@ -858,8 +858,8 @@ SAL_DLLPUBLIC_EXPORT void * SAL_CALL 
fileacc_component_getFactory(
 Reference XSingleServiceFactory  xFactory( cppu::createSingleFactory(
 reinterpret_cast XMultiServiceFactory * ( pServiceManager ),
 rtl::OUString::createFromAscii( pImplName ),
-io_FileAccess::FileAccess_CreateInstance,
-io_FileAccess::FileAccess_getSupportedServiceNames() ) );
+FileAccess_CreateInstance,
+FileAccess_getSupportedServiceNames() ) );
 
 if (xFactory.is())
 {
commit 5f9774ed5fccfc3971736d899b11e24a8081442d
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Fri May 18 09:54:55 2012 +0200

merge these libraries only for android

Change-Id: Ibbb97782f3ec6aa774c4a32d8798a9729aee494f

diff --git a/android/experimental/DocumentLoader/Makefile 
b/android/experimental/DocumentLoader/Makefile
index 279f6a4..c7901a7 100644
--- a/android/experimental/DocumentLoader/Makefile
+++ b/android/experimental/DocumentLoader/Makefile
@@ -65,7 +65,6 @@ copy-stuff:
   evtattlo \
   expwrap.uno \
   fastsax.uno \
-  fileacc \
   forlo \
   foruilo \
   frmlo \
diff --git a/android/experimental/LibreOffice4Android/Makefile 
b/android/experimental/LibreOffice4Android/Makefile
index 1365407..3a49c7d 100644
--- a/android/experimental/LibreOffice4Android/Makefile
+++ b/android/experimental/LibreOffice4Android/Makefile
@@ -36,7 +36,6 @@ copy-stuff:
   evtattlo \
   expwrap.uno \
   fastsax.uno \
-  fileacc \
   forlo \
   foruilo \
   frmlo \
diff --git a/android/qa/desktop/Makefile b/android/qa/desktop/Makefile
index 799edc2..7ad9ac0 100644
--- a/android/qa/desktop/Makefile
+++ b/android/qa/desktop/Makefile
@@ -99,7 +99,6 @@ copy-stuff: buildrcs
  cppcanvaslo \
  embobj \
  expwrap.uno \
- fileacc \
  forlo \
  foruilo \
  fsstorage.uno \
diff --git a/android/qa/sc/Makefile b/android/qa/sc/Makefile
index 3b92d3b..f3e4795 100644
--- a/android/qa/sc/Makefile
+++ b/android/qa/sc/Makefile
@@ -65,7 +65,6 @@ copy-stuff:
  datelo \
  expwrap.uno \
  fastsax.uno \
- fileacc \
  forlo \
  foruilo \
  frmlo \
diff --git a/solenv/gbuild/extensions/pre_MergedLibsList.mk 
b/solenv/gbuild/extensions/pre_MergedLibsList.mk
index 7a05039..fe75c36 100644
--- a/solenv/gbuild/extensions/pre_MergedLibsList.mk
+++ b/solenv/gbuild/extensions/pre_MergedLibsList.mk
@@ -40,8 +40,6 @@ gb_MERGEDLIBS := \
fwe \
fwi \
fwk \
-   fwl \
-   fwm \
lng \
package2 \
sb \
@@ -60,6 +58,14 @@ gb_MERGEDLIBS := \
 
 gb_MERGEDLIBS += $(if $(filter TRUE,$(ENABLE_TELEPATHY)),tubes)
 
+ifeq ($(OS),ANDROID)
+gb_MERGEDLIBS += \
+   fileacc \
+   fwl \
+   fwm \
+
+endif
+
 endif
 
 # vim: set noet sw=4 ts=4:
commit 23461fcf801a8217e7eeefa93c44ec18c7a73088
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Sun Aug 12 13:26:58 2012 +0200

unusedcode: SpriteCanvasHelper's methods

Change-Id: I24021fa1495a9fb48c1cb5f107d119031a4d1e87

diff --git a/canvas/source/null/null_spritecanvashelper.cxx 
b/canvas/source/null/null_spritecanvashelper.cxx
index 5edd364..80ef73a 100644
--- a/canvas/source/null/null_spritecanvashelper.cxx
+++ b/canvas/source/null/null_spritecanvashelper.cxx
@@ -95,29 +95,6 @@ namespace nullcanvas
 // TODO
 return sal_True;
 }
-
-void 

[PATCH] merge these libraries only for android

2012-08-12 Thread Gerrit
From Matúš Kukan matus.ku...@gmail.com:

Matúš Kukan has uploaded a new change for review.

Change subject: merge these libraries only for android
..

merge these libraries only for android

Change-Id: Ibbb97782f3ec6aa774c4a32d8798a9729aee494f
---
M android/experimental/DocumentLoader/Makefile
M android/experimental/LibreOffice4Android/Makefile
M android/qa/desktop/Makefile
M android/qa/sc/Makefile
M solenv/gbuild/extensions/pre_MergedLibsList.mk
5 files changed, 8 insertions(+), 6 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/01/401/1
--
To view, visit https://gerrit.libreoffice.org/401
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ibbb97782f3ec6aa774c4a32d8798a9729aee494f
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Matúš Kukan matus.ku...@gmail.com

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


[PATCH] unusedcode: SpriteCanvasHelper's methods

2012-08-12 Thread Gerrit
From Matúš Kukan matus.ku...@gmail.com:

Matúš Kukan has uploaded a new change for review.

Change subject: unusedcode: SpriteCanvasHelper's methods
..

unusedcode: SpriteCanvasHelper's methods

Change-Id: I24021fa1495a9fb48c1cb5f107d119031a4d1e87
---
M canvas/source/null/null_spritecanvashelper.cxx
M canvas/source/null/null_spritecanvashelper.hxx
M unusedcode.easy
3 files changed, 0 insertions(+), 59 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/00/400/1
--
To view, visit https://gerrit.libreoffice.org/400
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I24021fa1495a9fb48c1cb5f107d119031a4d1e87
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Matúš Kukan matus.ku...@gmail.com

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


[PATCH] fileaccess: use anonymous namespace

2012-08-12 Thread Gerrit
From Matúš Kukan matus.ku...@gmail.com:

Matúš Kukan has uploaded a new change for review.

Change subject: fileaccess: use anonymous namespace
..

fileaccess: use anonymous namespace

Change-Id: I697850a43c9942833776c60752cf4639ec255768
---
M fileaccess/source/FileAccess.cxx
1 file changed, 3 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/02/402/1
--
To view, visit https://gerrit.libreoffice.org/402
To unsubscribe, visit https://gerrit.libreoffice.org/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I697850a43c9942833776c60752cf4639ec255768
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Matúš Kukan matus.ku...@gmail.com

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


problem

2012-08-12 Thread Molly Hafer
I opened a document in Libre office an not only can i edit the document but it 
wont let me close libre office AND I cant open Libre office until it gets 
closed thanks. 
  Molly


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


Re: Build LO for Android on Mac OS 10.8

2012-08-12 Thread James Chen
Thank you, tml!

I've pulled latest code and I'm trying to build it.

According to the location of Xcode.app, I recall it's kind of personal
preference. :P I thought it was misplaced so I move it back.
Luckily, xcode-select and xcrun are still in /usr/bin.

Thanks, again. I'll report in the result later.

James 





On 12/8/10 下午9:13, Tor Lillqvist t...@iki.fi wrote:

The root cause to your problem is that you are building the MacOSX
build-time software as 64-bit code, and LO (including the build-time
tools that it builds in order to use them later during the build)
needs to be built as 32-bit code on the Mac. (And Windows, BTW. It's
only for Linux that LO can be built as 64-bit code. Which is a bit
sad, but not really a crucial misfeature;)

I see that you have your Xcode 4 in /Developer/Applications/Xcode.app,
is that just a personal preference of yours, or is there some common
situation in which Xcode ends up in such a location? (I assume the
normal one is /Applications/Xcode.app.)

Anyway, just add -m32 to the CC_FOR_BUILD and CXX_FOR_BUILD to
indicate that 32-bit code should be produced. Or, since last night,
you should be able to drop the CC_FOR_BUILD and CXX_FOR_BUILD settings
from your autogen.lastrun, the intent is now that the configure script
should then find out automatically which Xcode and SDK to use and
which compiler. I hope that it will work also for you even if you use
that /Developer/Applications path, as long as xcode-select and xcrun
are still in /usr/bin for you, are they?

--tml


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


[Libreoffice-commits] .: 5 commits - sfx2/inc sfx2/source

2012-08-12 Thread Rafael Dominguez
 sfx2/inc/sfx2/templateabstractview.hxx|   16 ++
 sfx2/inc/sfx2/templatelocalview.hxx   |4 -
 sfx2/inc/sfx2/templatelocalviewitem.hxx   |2 
 sfx2/inc/sfx2/templateonlineview.hxx  |2 
 sfx2/inc/sfx2/templateviewitem.hxx|3 -
 sfx2/inc/sfx2/thumbnailviewitem.hxx   |5 -
 sfx2/source/control/templateabstractview.cxx  |   12 
 sfx2/source/control/templatelocalview.cxx |   41 +++
 sfx2/source/control/templatelocalviewitem.cxx |5 -
 sfx2/source/control/templateonlineview.cxx|   17 --
 sfx2/source/control/templateviewitem.cxx  |   15 ++---
 sfx2/source/control/thumbnailview.cxx |   16 --
 sfx2/source/control/thumbnailviewitem.cxx |   19 ++-
 sfx2/source/doc/templatedlg.cxx   |   69 +-
 sfx2/source/doc/templatedlg.src   |5 +
 15 files changed, 135 insertions(+), 96 deletions(-)

New commits:
commit e51dc25f456db8a2f0130b12ee3d5a90d2fd27a2
Author: Rafael Dominguez venccsra...@gmail.com
Date:   Sun Aug 12 21:51:18 2012 -0430

Check correct area when selecting a template by clicking its name.

Change-Id: Idfb4509327c2c9c52f5c736d513d35e3270d91b1

diff --git a/sfx2/inc/sfx2/thumbnailviewitem.hxx 
b/sfx2/inc/sfx2/thumbnailviewitem.hxx
index cb389b9..3b1aa95 100644
--- a/sfx2/inc/sfx2/thumbnailviewitem.hxx
+++ b/sfx2/inc/sfx2/thumbnailviewitem.hxx
@@ -106,8 +106,6 @@ public:
 
 void setSelectClickHdl (const Link link);
 
-bool isInsideTitle (const Point pt) const;
-
 virtual void Paint (drawinglayer::processor2d::BaseProcessor2D *pProcessor,
 const ThumbnailItemAttributes *pAttrs);
 
diff --git a/sfx2/source/control/thumbnailview.cxx 
b/sfx2/source/control/thumbnailview.cxx
index 89946b8..c9b4a13 100644
--- a/sfx2/source/control/thumbnailview.cxx
+++ b/sfx2/source/control/thumbnailview.cxx
@@ -566,7 +566,11 @@ void ThumbnailView::MouseButtonDown( const MouseEvent 
rMEvt )
 }
 else
 {
-if (pItem-isInsideTitle(rMEvt.GetPosPixel()))
+Rectangle aRect(pItem-getDrawArea());
+
aRect.setY(aRect.getY()+mnItemPadding+mnThumbnailHeight);
+
aRect.SetSize(Size(mnItemWidth,mnDisplayHeight+mnItemPadding));
+
+if (aRect.IsInside(rMEvt.GetPosPixel()))
 {
 pItem-setSelection(!pItem-isSelected());
 
diff --git a/sfx2/source/control/thumbnailviewitem.cxx 
b/sfx2/source/control/thumbnailviewitem.cxx
index dd79548..9db5cbd 100644
--- a/sfx2/source/control/thumbnailviewitem.cxx
+++ b/sfx2/source/control/thumbnailviewitem.cxx
@@ -156,14 +156,6 @@ void ThumbnailViewItem::setSelectClickHdl (const Link 
link)
 maClickHdl = link;
 }
 
-bool ThumbnailViewItem::isInsideTitle (const Point pt) const
-{
-Rectangle aRect(Point(maTextPos.X(),mpSelectBox-GetPosPixel().Y()),
-Point(maDrawArea.Right(),maDrawArea.Bottom()));
-
-return aRect.IsInside(pt);
-}
-
 void ThumbnailViewItem::Paint (drawinglayer::processor2d::BaseProcessor2D 
*pProcessor,
const ThumbnailItemAttributes *pAttrs)
 {
commit 3b709149e605c90eb16743b9b6907294a6cb198e
Author: Rafael Dominguez venccsra...@gmail.com
Date:   Sun Aug 12 21:38:24 2012 -0430

Perform dbl click action only if its inside the thumbnail area.

Change-Id: Ib60f5882fbe89e697ef0755d87474a84ce8d0fe7

diff --git a/sfx2/source/control/thumbnailview.cxx 
b/sfx2/source/control/thumbnailview.cxx
index df23f94..89946b8 100644
--- a/sfx2/source/control/thumbnailview.cxx
+++ b/sfx2/source/control/thumbnailview.cxx
@@ -580,7 +580,13 @@ void ThumbnailView::MouseButtonDown( const MouseEvent 
rMEvt )
 }
 }
 else if ( rMEvt.GetClicks() == 2 )
-OnItemDblClicked(pItem);
+{
+Rectangle aRect(pItem-getDrawArea());
+aRect.SetSize(Size(mnItemWidth,mnThumbnailHeight));
+
+if (!mbSelectionMode  
aRect.IsInside(rMEvt.GetPosPixel()))
+OnItemDblClicked(pItem);
+}
 }
 
 return;
commit a8b2083877894ffb19be0c95ae2aeb4373c0161a
Author: Rafael Dominguez venccsra...@gmail.com
Date:   Sun Aug 12 20:20:34 2012 -0430

Improve thumbnail items position calculation and size.

Change-Id: I7b22d4d858d82bd1e12ead3b723aad43118cf938

diff --git a/sfx2/inc/sfx2/templateabstractview.hxx 
b/sfx2/inc/sfx2/templateabstractview.hxx
index 1555ebb..eff8da5 100644
--- a/sfx2/inc/sfx2/templateabstractview.hxx
+++ b/sfx2/inc/sfx2/templateabstractview.hxx
@@ -12,6 +12,18 @@
 
 #include sfx2/thumbnailview.hxx
 
+//template thumbnail item defines
+#define TEMPLATE_ITEM_MAX_WIDTH 192
+#define TEMPLATE_ITEM_MAX_HEIGHT 160
+#define 

Re: Build LO for Android on Mac OS 10.8

2012-08-12 Thread James Chen
In my environment, Mac OS 10.8 and Xcode 4.4.1, without specifying Mac OS
X SDK version, it picks 10.6 as Mac OS X SDK.
And then it failed since it can't find gcc-4.2. So I tried to use option
--with-macosx-sdk with 10.8.
It's building now!

During applying --with-macosx-sdk option, I found some typos (maybe?), one
of them leads me to apply wrong option'--with-macox-sdk'.

I list them below just in case you are interested:

diff --git a/configure.in b/configure.in
index e060457..7633ea7 100644
--- a/configure.in
+++ b/configure.in
@@ -2472,7 +2472,7 @@ dnl Check / find MacOSX SDK and compiler, version
checks
 dnl ===
 if test $_os = Darwin; then
 
-# If no --with-macox-sdk option is given, first look for the 10.4u
+# If no --with-macosx-sdk option is given, first look for the 10.4u
 # SDK (which is distributed with the obsolete Xcode 3), then the
 # 10.6, 10.7 and 10.8 SDKs, in that order. (Don't bother looking
 # for the 10.5 SDK, unlikely somebody would have that but not
@@ -2513,7 +2513,7 @@ if test $_os = Darwin; then
 with_macosx_sdk=10.8
 fi
 fi
-if test -z with_$macosx_sdk; then
+if test -z $with_macosx_sdk; then
 AC_MSG_ERROR([Could not figure out the location of a Mac OS X
SDK and its version])
 fi
 Fi


And I also pass the --with-macosx-sdk option through to the BUILD
platform configuration to make it work:

@@ -3731,6 +3731,7 @@ if test $cross_compiling = yes; then
 --with-num-cpus=$with_num_cpus \
 --with-max-jobs=$with_max_jobs \
 --without-doxygen \
+--with-macosx-sdk=$with_macosx_sdk \
 $sub_conf_opts \
 21 | sed -e 's/^//'
 test -f ./config_host.mk 2/dev/null || exit


Not sure I'm doing it in a appropriate approach though (This is my first
time to get involved with auto-config/autogen stuff).

James


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


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

2012-08-12 Thread Rafael Dominguez
 sfx2/inc/sfx2/thumbnailviewitem.hxx   |   11 
 sfx2/source/control/templatelocalviewitem.cxx |   35 --
 sfx2/source/control/templateviewitem.cxx  |   22 ++--
 sfx2/source/control/thumbnailviewitem.cxx |   28 +++-
 4 files changed, 89 insertions(+), 7 deletions(-)

New commits:
commit 6050dad25fb34d6c7bf4feb0d850e9277d92c91e
Author: Rafael Dominguez venccsra...@gmail.com
Date:   Sun Aug 12 23:33:20 2012 -0430

Draw borders arounds thumbnail.

Change-Id: Icaf9485d20c8e747d08371a1db5f4d7bee2d37bb

diff --git a/sfx2/inc/sfx2/thumbnailviewitem.hxx 
b/sfx2/inc/sfx2/thumbnailviewitem.hxx
index 3b1aa95..aab7fe3 100644
--- a/sfx2/inc/sfx2/thumbnailviewitem.hxx
+++ b/sfx2/inc/sfx2/thumbnailviewitem.hxx
@@ -44,10 +44,18 @@ class Font;
 class Window;
 class ThumbnailView;
 
+namespace basegfx {
+class B2DPoint;
+}
+
 namespace drawinglayer {
 namespace processor2d {
 class BaseProcessor2D;
 }
+
+namespace primitive2d {
+class BorderLinePrimitive2D;
+}
 }
 
 struct ThumbnailItemAttributes
@@ -109,6 +117,9 @@ public:
 virtual void Paint (drawinglayer::processor2d::BaseProcessor2D *pProcessor,
 const ThumbnailItemAttributes *pAttrs);
 
+static drawinglayer::primitive2d::BorderLinePrimitive2D*
+createBorderLine (const basegfx::B2DPoint rStart, const 
basegfx::B2DPoint rEnd);
+
 private:
 
 DECL_LINK (OnClick, CheckBox *);
diff --git a/sfx2/source/control/templatelocalviewitem.cxx 
b/sfx2/source/control/templatelocalviewitem.cxx
index 765b544..f337df8 100644
--- a/sfx2/source/control/templatelocalviewitem.cxx
+++ b/sfx2/source/control/templatelocalviewitem.cxx
@@ -12,6 +12,7 @@
 #include basegfx/matrix/b2dhommatrixtools.hxx
 #include basegfx/polygon/b2dpolygon.hxx
 #include drawinglayer/attribute/fillbitmapattribute.hxx
+#include drawinglayer/primitive2d/borderlineprimitive2d.hxx
 #include drawinglayer/primitive2d/fillbitmapprimitive2d.hxx
 #include drawinglayer/primitive2d/polypolygonprimitive2d.hxx
 #include drawinglayer/primitive2d/textlayoutdevice.hxx
@@ -38,10 +39,10 @@ void TemplateLocalViewItem::Paint 
(drawinglayer::processor2d::BaseProcessor2D *p
 const ThumbnailItemAttributes *pAttrs)
 {
 int nCount = 0;
-int nSeqSize = 3;
+int nSeqSize = 7;
 
 if (!maPreview2.IsEmpty())
-++nSeqSize;
+nSeqSize += 5;
 
 BColor aFillColor = pAttrs-aFillColor;
 Primitive2DSequence aSeq(nSeqSize);
@@ -73,6 +74,21 @@ void TemplateLocalViewItem::Paint 
(drawinglayer::processor2d::BaseProcessor2D *p
 
B2DVector(aImageSize.Width(),aImageSize.Height()),
 false)
 ));
+
+// draw thumbnail borders
+float fWidth = aImageSize.Width()*fScaleX;
+float fHeight = aImageSize.Height()*fScaleY;
+float fPosX = aPos.getX()+35*fScaleX;
+float fPosY = aPos.getY()+20*fScaleY;
+
+aSeq[nCount++] = 
Primitive2DReference(createBorderLine(B2DPoint(fPosX,fPosY),
+   
B2DPoint(fPosX+fWidth,fPosY)));
+aSeq[nCount++] = 
Primitive2DReference(createBorderLine(B2DPoint(fPosX+fWidth,fPosY),
+   
B2DPoint(fPosX+fWidth,fPosY+fHeight)));
+aSeq[nCount++] = 
Primitive2DReference(createBorderLine(B2DPoint(fPosX+fWidth,fPosY+fHeight),
+   
B2DPoint(fPosX,fPosY+fHeight)));
+aSeq[nCount++] = 
Primitive2DReference(createBorderLine(B2DPoint(fPosX,fPosY+fHeight),
+   
B2DPoint(fPosX,fPosY)));
 }
 
 aSeq[nCount++] = Primitive2DReference( new FillBitmapPrimitive2D(
@@ -83,6 +99,21 @@ void TemplateLocalViewItem::Paint 
(drawinglayer::processor2d::BaseProcessor2D *p
 false)
 ));
 
+// draw thumbnail borders
+float fWidth = aImageSize.Width()*fScaleX;
+float fHeight = aImageSize.Height()*fScaleY;
+float fPosX = aPos.getX();
+float fPosY = aPos.getY();
+
+aSeq[nCount++] = 
Primitive2DReference(createBorderLine(B2DPoint(fPosX,fPosY),
+   
B2DPoint(fPosX+fWidth,fPosY)));
+aSeq[nCount++] = 
Primitive2DReference(createBorderLine(B2DPoint(fPosX+fWidth,fPosY),
+   
B2DPoint(fPosX+fWidth,fPosY+fHeight)));
+aSeq[nCount++] = 
Primitive2DReference(createBorderLine(B2DPoint(fPosX+fWidth,fPosY+fHeight),
+   
B2DPoint(fPosX,fPosY+fHeight)));
+aSeq[nCount++] = 

[Libreoffice-commits] .: configure.in

2012-08-12 Thread Tor Lillqvist
 configure.in |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 2a787251b24f93aa3998fb64afd1aa70096691f9
Author: Tor Lillqvist t...@iki.fi
Date:   Mon Aug 13 07:05:53 2012 +0300

Fir a couple of typos, thanks to James Chen for noticing

Change-Id: I56740934ec0fc488ec30a15de8b016466722793e

diff --git a/configure.in b/configure.in
index e060457..2fd333e 100644
--- a/configure.in
+++ b/configure.in
@@ -2472,7 +2472,7 @@ dnl Check / find MacOSX SDK and compiler, version checks
 dnl ===
 if test $_os = Darwin; then
 
-# If no --with-macox-sdk option is given, first look for the 10.4u
+# If no --with-macosx-sdk option is given, first look for the 10.4u
 # SDK (which is distributed with the obsolete Xcode 3), then the
 # 10.6, 10.7 and 10.8 SDKs, in that order. (Don't bother looking
 # for the 10.5 SDK, unlikely somebody would have that but not
@@ -2513,7 +2513,7 @@ if test $_os = Darwin; then
 with_macosx_sdk=10.8
 fi
 fi
-if test -z with_$macosx_sdk; then
+if test -z $with_macosx_sdk; then
 AC_MSG_ERROR([Could not figure out the location of a Mac OS X SDK 
and its version])
 fi
 fi
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Build LO for Android on Mac OS 10.8

2012-08-12 Thread Tor Lillqvist
 In my environment, Mac OS 10.8 and Xcode 4.4.1, without specifying Mac OS
 X SDK version, it picks 10.6 as Mac OS X SDK.
 And then it failed since it can't find gcc-4.2.

Ah, OK. Was there some Xcode that came with both a 10.6 SDK *and* a
gcc 4.2 then? Making this SDK and compiler selection work
automatically in all the combinations is a bit hard it seems.

 During applying --with-macosx-sdk option, I found some typos (maybe?), one
 of them leads me to apply wrong option'--with-macox-sdk'.

Eek, thanks, fixed now.

 And I also pass the --with-macosx-sdk option through to the BUILD
 platform configuration to make it work:

I don't think that's a good idea, it mixes up options for the build
and host platforms. (Consider the case of cross-compiling from an
Intel Mac to PowerPC-based Mac, in theory it should be possible to use
a current Xcode and SDK for the build platform code, and Xcode 3 +
10.4 SDK for the host platform. Not that there seems to be much
interest in trying out such cross-compilations.)

There is the --with-build-platform-configure-options switch for that,
you can pass --with-build-platform-configure-options=--with-macosx-sdk=10.6.

 Not sure I'm doing it in a appropriate approach though (This is my first
 time to get involved with auto-config/autogen stuff).

You seem to understand it quite nicely, thanks!

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


[Libreoffice-commits] .: android/Bootstrap

2012-08-12 Thread Tor Lillqvist
 android/Bootstrap/src/org/libreoffice/android/Bootstrap.java |9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

New commits:
commit 1060cd84591faa2093cfdadf87d7bdfcc11b8dfb
Author: Tor Lillqvist t...@iki.fi
Date:   Mon Aug 13 07:40:27 2012 +0300

Perform setup(Activity) just once

Change-Id: Icf77936c4307f816e85cb840d650a4c958a15995

diff --git a/android/Bootstrap/src/org/libreoffice/android/Bootstrap.java 
b/android/Bootstrap/src/org/libreoffice/android/Bootstrap.java
index 15b0f35..b2fc540 100644
--- a/android/Bootstrap/src/org/libreoffice/android/Bootstrap.java
+++ b/android/Bootstrap/src/org/libreoffice/android/Bootstrap.java
@@ -124,10 +124,17 @@ public class Bootstrap extends NativeActivity
 
 public static native void delete_byte_buffer_wrapper(long bbw);
 
+static boolean setup_done = false;
+
 // This setup() method is called 1) in apps that use *this* class as their 
activity from onCreate(),
 // and 2) should be called from other kinds of LO code using apps.
-public static void setup(Activity activity)
+public static synchronized void setup(Activity activity)
 {
+if (setup_done)
+return;
+
+setup_done = true;
+
 String dataDir = null;
 
 ApplicationInfo ai = activity.getApplicationInfo();
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: 2 commits - RepositoryExternal.mk sd/source vcl/Library_vcl.mk

2012-08-12 Thread David Tardon
 RepositoryExternal.mk |   26 +
 sd/source/ui/presenter/PresenterCanvasFactory.cxx |  309 --
 vcl/Library_vcl.mk|   36 --
 3 files changed, 29 insertions(+), 342 deletions(-)

New commits:
commit 2b9dbc8ad1640a62f71d75aede0250dc34d96224
Author: David Tardon dtar...@redhat.com
Date:   Mon Aug 13 06:57:51 2012 +0200

move selection of nss libs into RepositoryExternal

This should also unbreak Windows tinderboxes, because the internal nss
libs are now registered.

Change-Id: I801d7ebebf36eb1460fa4d626a893b5016115a79

diff --git a/RepositoryExternal.mk b/RepositoryExternal.mk
index 342f5fb..478bf25 100644
--- a/RepositoryExternal.mk
+++ b/RepositoryExternal.mk
@@ -1884,7 +1884,11 @@ endef
 
 ifeq ($(SYSTEM_NSS),YES)
 
-define gb_LinkTarget__use_plc4
+define gb_LinkTarget__use_nss3
+$(call gb_LinkTarget_add_defs,$(1),\
+   -DSYSTEM_MOZILLA \
+)
+
 $(call gb_LinkTarget_set_include,$(1),\
 $$(INCLUDE) \
 $(NSS_CFLAGS) \
@@ -1896,6 +1900,11 @@ $(call gb_LinkTarget_add_libs,$(1),\
 
 endef
 
+define gb_LinkTarget__use_plc4
+$(call gb_LinkTarget__use_nss3,$(1))
+
+endef
+
 else
 
 $(eval $(call gb_Helper_register_libraries,PLAINLIBS_OOO,\
@@ -1905,6 +1914,21 @@ $(eval $(call 
gb_Helper_register_libraries,PLAINLIBS_OOO,\
 plc4 \
 ))
 
+define gb_LinkTarget__use_nss3
+$(call gb_LinkTarget_set_include,$(1),\
+   $$(INCLUDE) \
+   -I$(OUTDIR)/inc/mozilla/nspr \
+   -I$(OUTDIR)/inc/mozilla/nss \
+)
+
+$(call gb_LinkTarget_use_libraries,$(1),\
+   nspr4 \
+   nss3 \
+   smime3 \
+)
+
+endef
+
 define gb_LinkTarget__use_plc4
 $(call gb_LinkTarget_use_libraries,$(1),\
 plc4 \
diff --git a/vcl/Library_vcl.mk b/vcl/Library_vcl.mk
index ebd1f56..e6abe34 100644
--- a/vcl/Library_vcl.mk
+++ b/vcl/Library_vcl.mk
@@ -67,6 +67,10 @@ $(eval $(call gb_Library_add_defs,vcl,\
 
 $(eval $(call gb_Library_use_sdk_api,vcl))
 
+$(eval $(call gb_Library_use_externals,vcl,\
+   nss3 \
+))
+
 $(eval $(call gb_Library_use_libraries,vcl,\
 svl \
 tl \
@@ -83,38 +87,6 @@ $(eval $(call gb_Library_use_libraries,vcl,\
 $(gb_STDLIBS) \
 ))
 
-ifeq ($(SYSTEM_NSS),YES)
-
-$(eval $(call gb_Library_set_include,vcl,\
-   $$(INCLUDE) \
-   $(NSS_CFLAGS) \
-))
-
-$(eval $(call gb_Library_add_defs,vcl,\
-   -DSYSTEM_MOZILLA \
-))
-
-$(eval $(call gb_Library_add_libs,vcl,\
-   $(NSS_LIBS) \
-))
-
-else
-
-$(eval $(call gb_Library_set_include,vcl,\
-   $$(INCLUDE) \
-   -I$(OUTDIR)/inc/mozilla/nspr \
-   -I$(OUTDIR)/inc/mozilla/nss \
-))
-
-$(eval $(call gb_Library_use_libraries,vcl,\
-   nspr4 \
-   nss3 \
-   smime3 \
-))
-
-endif # ifeq ($(SYSTEM_NSS),YES)
-
-
 ifneq ($(OS),IOS)
 $(eval $(call gb_Library_use_libraries,vcl,\
 jvmaccess \
commit b4079b0065767a0717a7f279511c0527fc8b994f
Author: David Tardon dtar...@redhat.com
Date:   Thu Aug 9 14:50:25 2012 +0200

remove unused file

Change-Id: I204e0d1401d2b9edaaf223c3e667a7ce090ff9b5

diff --git a/sd/source/ui/presenter/PresenterCanvasFactory.cxx 
b/sd/source/ui/presenter/PresenterCanvasFactory.cxx
deleted file mode 100644
index 1999f12..000
--- a/sd/source/ui/presenter/PresenterCanvasFactory.cxx
+++ /dev/null
@@ -1,309 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- *
- * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
- * Copyright 2000, 2010 Oracle and/or its affiliates.
- *
- * OpenOffice.org - a multi-platform office productivity suite
- *
- * This file is part of OpenOffice.org.
- *
- * OpenOffice.org is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License version 3
- * only, as published by the Free Software Foundation.
- *
- * OpenOffice.org is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU Lesser General Public License version 3 for more details
- * (a copy is included in the LICENSE file that accompanied this code).
- *
- * You should have received a copy of the GNU Lesser General Public License
- * version 3 along with OpenOffice.org.  If not, see
- * http://www.openoffice.org/license.html
- * for a copy of the LGPLv3 License.
- *
- /
-
-
-#include presenter/PresenterCanvasFactory.hxx
-#include PresenterCanvas.hxx
-
-#include com/sun/star/awt/Point.hpp
-#include com/sun/star/awt/WindowAttribute.hpp
-#include com/sun/star/awt/WindowClass.hpp
-#include com/sun/star/awt/WindowDescriptor.hpp
-#include com/sun/star/lang/XInitialization.hpp
-#include com/sun/star/rendering/CompositeOperation.hpp
-#include com/sun/star/drawing/CanvasFeature.hpp
-#include 

Re: Build LO for Android on Mac OS 10.8

2012-08-12 Thread James Chen

I don't think that's a good idea, it mixes up options for the build
and host platforms. (Consider the case of cross-compiling from an
Intel Mac to PowerPC-based Mac, in theory it should be possible to use
a current Xcode and SDK for the build platform code, and Xcode 3 +
10.4 SDK for the host platform. Not that there seems to be much
interest in trying out such cross-compilations.)

There is the --with-build-platform-configure-options switch for that,
you can pass 
--with-build-platform-configure-options=--with-macosx-sdk=10.6.

Thanks for the advice. Learned.

It encounters error for now:

ld: warning: ignoring file /opt/local/lib/libiconv.dylib, file was built
for unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3
0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being
linked (i386): /opt/local/lib/libiconv.dylib
ld: warning: ignoring file /opt/local/lib/libz.dylib, file was built for
unsupported file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x
0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being
linked (i386): /opt/local/lib/libz.dylib
ld: in /opt/local/lib/libiconv.2.dylib, file was built for unsupported
file format ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0
0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (i386):
/opt/local/lib/libiconv.2.dylib for architecture i386
clang: error: linker command failed with exit code 1 (use -v to see
invocation)
make[7]: *** [libgio-2.0.la] Error 1
make[6]: *** [all-recursive] Error 1
make[5]: *** [all] Error 2
make[4]: *** [all-recursive] Error 1
make[3]: *** [all] Error 2
dmake:  Error code 2, while making
'./unxmacxi.pro/misc/build/so_built_so_glib'


The complete error log is at http://pastebin.com/3PCh4yD6


James


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


[Libreoffice-bugs] [Bug 53394] New: the sections and numbering of footnotes by section are lost every time the document is closed

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53394

 Bug #: 53394
   Summary: the sections and numbering of footnotes by section are
lost every time the document is closed
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.0 release
  Platform: All
OS/Version: All
Status: UNCONFIRMED
  Severity: major
  Priority: medium
 Component: Libreoffice
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: mancilladr...@gmail.com


Created attachment 65452
  -- https://bugs.freedesktop.org/attachment.cgi?id=65452
this is the document that presents the problems

I am working on a big document (my thesis) and need to put sections and start
renumbering the footnotes for each of them. This works until I close the
document, but then reopen it again and all the sections are lost, and the
footnote numbering starts from the first chapter all the way to the last (see
attached document). This is very  inconvenient, and the only way to get around
it is by keeping the document opened all the time, and turn it into pdfs. I am
a neophyte in libreoffice, admire your work and want to keep using it, but this
is a major drawback. Thanks in advance and I hope you can give me a solution.

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


[Libreoffice-bugs] [Bug 53395] New: Changes in font when editing master document do not appear in the slides

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53395

 Bug #: 53395
   Summary: Changes in font when editing master document do not
appear in the slides
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.0 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Presentation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: mancilladr...@gmail.com


I change the font of the master document, but then apply it to the slides and
the changes do not appear, or appear only for the title section, but not for
the content section.

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


[Libreoffice-bugs] [Bug 53364] Crash cutting or dragging block

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53364

--- Comment #6 from Julien Nabet serval2...@yahoo.fr 2012-08-12 07:10:12 UTC 
---
(In reply to comment #5)
 Does not crash on Windows, just Mac

I still don't reproduce it on pc Debian x86-64 with 3.6 branch updated 3 days
ago.
Could you take a look at this page
https://bugs.freedesktop.org/show_bug.cgi?id=47368 to see if it could be linked
to accessibility ?
(by taking a quick look to your stacktrace, it doesn't seem so but...).

BTW, it's more practical to put stacktrace on a file attached rather than a
lenghty comment as you did first time.

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


[Libreoffice-bugs] [Bug 53388] Extension LibreLogo crashes LibreOffice

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53388

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||serval2...@yahoo.fr
 Ever Confirmed|0   |1

--- Comment #1 from Julien Nabet serval2...@yahoo.fr 2012-08-12 07:18:19 UTC 
---
On pc Debian with 3.6 sources updated 3 days ago, I didn't reproduce this
problem.

Steps I followed:
- brand new LO profile
- download oxt
- open LO Calc
- go to Extension manager
- add oxt for all users
- close LO
- open LO Calc or LO Writer or LO start Center
No crash here.
http://listarchives.libreoffice.org/de/users/msg06477.html indicates Windows 7
crash.
On which env did you have this crash ?
Could it be due to localization ?

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


[Libreoffice-bugs] [Bug 43491] CONFIGURATION: Using existing User Profile after update existing WRITER documents VIEWING settings are modified

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43491

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

   What|Removed |Added

 Status|REOPENED|NEW

--- Comment #11 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-08-12 07:27:43 UTC ---
I even saw this problem after an pseudo-update 

from

- Server Installation of  LibreOffice 3.6.0.4  German UI/Locale [Build-ID: 
932b512] on German WIN7 Home Premium (64bit)

to

-Server Installation of  LibreOffice 3.6.1.0+  English UI/ German Locale
[Build-ID:  b0aac2a] on German WIN7 Home Premium (64bit)  {tinderbox:
Win-x86@9, pull time 2012-08-11 00:16:39}

I still have the 3.6.0.4 server installation and added 3.6.1.0+, what uses the
same user profile like 3.6.0.4

My observations:

Opening the same WRITER document with
- 3.6.0.4: Tools  Options  Appearance  Custom Colors  Text Document
  ☑ Index and table shadings 
- 3.6.1.0+: Tools  Options  Appearance  Custom Colors  Text Document
  ☐ Index and table shadings

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


[Libreoffice-bugs] [Bug 43489] [Task] Incorrect behavior using existing User Profile for upgrade

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43489

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

   What|Removed |Added

 Depends on||43491

--- Comment #19 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-08-12 07:31:05 UTC ---
Add Bug 43491 - CONFIGURATION: Using existing User Profile after update
existing WRITER documents VIEWING settings are modified, I am pretty sure that
that one is related.

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


[Libreoffice-bugs] [Bug 43491] CONFIGURATION: Using existing User Profile after update existing WRITER documents VIEWING settings are modified

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43491

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

   What|Removed |Added

 Blocks||43489

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


[Libreoffice-bugs] [Bug 53176] report builder - error when opening a report containing a chart.

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53176

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE
 CC||rob...@familiegrosskopf.de

--- Comment #3 from rob...@familiegrosskopf.de 2012-08-12 07:34:44 UTC ---
It doesn't work since LO 3.5, only with LO 3.3. Also it doesn't work with OOo
3.3. I have reported this some times before. So I would mark this as a
duplicate.

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

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


[Libreoffice-bugs] [Bug 48056] FILEOPEN Report with charts fails with Message Failed to parse the report

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48056

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 CC||elderdanle...@gmail.com

--- Comment #18 from rob...@familiegrosskopf.de 2012-08-12 07:34:44 UTC ---
*** Bug 53176 has been marked as a duplicate of this bug. ***

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


[Libreoffice-bugs] [Bug 44446] LibreOffice 3.6 most annoying bugs

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=6

ape os...@yandex.ru changed:

   What|Removed |Added

 Depends on||53113, 53175

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


[Libreoffice-bugs] [Bug 53113] DOCX filter loses shape containing text

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53113

ape os...@yandex.ru changed:

   What|Removed |Added

 Blocks||6

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


[Libreoffice-bugs] [Bug 53175] FILEOPEN error reading “Content ?=(TOC)=?UTF-8?Q?” from a DOCX

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53175

ape os...@yandex.ru changed:

   What|Removed |Added

 Blocks||6

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


[Libreoffice-bugs] [Bug 53223] Base reports jre error with java 1.7

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53223

rob...@familiegrosskopf.de changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 53223] Base reports jre error with java 1.7

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53223

rob...@familiegrosskopf.de changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 53223] Base reports jre error with java 1.7

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53223

rob...@familiegrosskopf.de changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 53223] Base reports jre error with java 1.7

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53223

rob...@familiegrosskopf.de changed:

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 48460] FORMATTING - Proposal for improved typographic spacing (Leading) around paragraphs

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48460

--- Comment #2 from Bob Harvey bobhar...@europe.com 2012-08-12 07:45:48 UTC 
---
This is similar to the contextual spacing in
https://tools.oasis-open.org/issues/browse/OFFICE-3767 as in 3.6.

But that refers to adjacent lines of the same style - I think we need to
prune/overlap spacing for dissimilar styles.  E.G. where a 'heading 2'
immediately follows a 'heading 1'

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


[Libreoffice-bugs] [Bug 48461] FORMATTING - Proposal for improving 'fill characters' (bleeding, leading tabs)

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48461

--- Comment #1 from Bob Harvey bobhar...@europe.com 2012-08-12 07:47:32 UTC 
---
Any thoughts on this?

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


[Libreoffice-bugs] [Bug 53223] Base reports jre error with java 1.7

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53223

rob...@familiegrosskopf.de changed:

   What|Removed |Added

 CC||rob...@familiegrosskopf.de

--- Comment #1 from rob...@familiegrosskopf.de 2012-08-12 07:49:50 UTC ---
All links I have appended seem to show the same problem. And all this bugs were
marked as Unconfirmed. I can't confirm, because I have no Windows-System
here. Would be better to search the database of freedesktop org, for example
libreoffice → database → java and confirm the bugs other persons have
reported.

Could you please have a look at the other bugs and push it to new, if it is a
bug you can confirm? Then you could change this bug to a duplicate of the other
bug.

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


[Libreoffice-bugs] [Bug 53123] MS Word binary export creates malformed fields

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53123

--- Comment #2 from Ron Wolf ron.e.w...@ieee.org 2012-08-12 08:31:22 UTC ---
Created attachment 65453
  -- https://bugs.freedesktop.org/attachment.cgi?id=65453
the original doc

the original doc as sent to me from the MS-Word using author before i made any
changes to it using OpenOffice. at least for me, this doc opens and views just
fine using OpenOffice.

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


[Libreoffice-bugs] [Bug 53396] New: Spell check not working

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53396

 Bug #: 53396
   Summary: Spell check not working
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.0.4 release
  Platform: x86 (IA32)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: blocker
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: j.f.lant...@inter.nl.net


I just un-installed 3.5 (which had problems with the spell check)
and after reboot I installed 3.6 (GB version).
In the installation I specified Dutch, English and German.
Neither of these are working, every trash I type is accepted,
if I mark it for ant language as selected or all text, it does not matter.

Is this because I did not go for Typical installation ?

;JOOP!

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


[Libreoffice-bugs] [Bug 53397] New: Export selection to SVG shows contents of wrong slide

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53397

 Bug #: 53397
   Summary: Export selection to SVG shows contents of wrong slide
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.0.4 release
  Platform: Other
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Drawing
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: libreoff...@bielefeldundbuss.de


Created attachment 65454
  -- https://bugs.freedesktop.org/attachment.cgi?id=65454
Test Kit with source and result

Steps how to reproduce with Server Installation of  LibreOffice 3.6.0.4 
German UI/Locale [Build-ID:  932b512] on German WIN7 Home Premium (64bit):

0. Download / Unzip attached Test Kit
1. Open attached sample1.odg from LibO Start center file menu
2. Go To Slide 5, click on slide in white area at bottom of slide
3. Control+a for select all
4. Menu 'File - Export - Filetype  SVG - Selection and Auto Name
Extenison 
  checked - Filename From360a.svg - Export'
5. Open From360a.svg with seamonkey browser
   Expected: technical sheet
   Actual: Slide 1 Contents
6. Open From360a.svg with LibO
   Expected: technical sheet shown
   Actual: looks as if all slides contents incl locked one
   has been transferred to 1 SVG sheet

That makes SVG Export more or less unusable

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


[Libreoffice-bugs] [Bug 53364] Crash cutting or dragging block

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53364

--- Comment #7 from Dan Essin es...@ieee.org 2012-08-12 09:18:23 UTC ---
Created attachment 65455
  -- https://bugs.freedesktop.org/attachment.cgi?id=65455
Accessibility question

Up til now I have never changed an accessibility setting either on the OS or
LO. I went into the prefs in LO and unchecked everything in the Accessibility
section. It still crashes.

As I mentioned the Windows build does not exhibit this problem and it does not
surprise me that the Debian build does not either, but Debian wouldn't be of
much use on this Mac. 

I do have a Debian VM on the Mac and I just installed LO. That version does not
crash.

It's only the Mac build that has the problem.

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


[Libreoffice-bugs] [Bug 53398] New: SVG Export impossible from particular document

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53398

 Bug #: 53398
   Summary: SVG Export impossible from particular document
Classification: Unclassified
   Product: LibreOffice
   Version: 3.5.6.2 rc
  Platform: Other
OS/Version: Windows (All)
Status: UNCONFIRMED
  Keywords: regression
  Severity: major
  Priority: medium
 Component: Drawing
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: libreoff...@bielefeldundbuss.de


Steps how to reproduce with LibreOffice  3.5.6.2  German UI/Locale [Build-ID:
e0fbe70-5879838-a0745b0-0cd1158-638b327] on German WIN7 Home Premium (64bit):

0. Download attachment 65454 from 
   Bug 53397 - Export selection to SVG shows contents of wrong slide
1. Proceed as per Bug 53397 Steps 1 ... 4 
   Bug: Error Message Error Saving the document. Write Error. The file could
not
be written

Not a general Problem, worked with new document ad only a smiley as contents

Regression: worked for that document with LibO 3.3.3 (others not yet tested).
Problem not reproducible with LibO 3.6.0.4

Worked with LibreOffice 3.5.2.2 German UI/Locale [Build-ID:
281b639-6baa1d3-ef66a77-d866f25-f36d45f] on German WIN7 Home Premium (64bit)
wiht won profile.
(showing Bug 53397). 
Might be some Extension interaction or similar, further research required.

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


[Libreoffice-bugs] [Bug 53364] Crash cutting or dragging block

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53364

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

   What|Removed |Added

 Status|NEEDINFO|UNCONFIRMED
 Ever Confirmed|1   |0

--- Comment #8 from Julien Nabet serval2...@yahoo.fr 2012-08-12 09:30:34 UTC 
---
Thank you a lot for your quick and detailed feedback, I put it back to
UNCONFIRMED status since I don't have anymore question (except perhaps your
Java version even if I don't think it's linked to this).

Does anybody else could confirm this bug on MacOs?
It would be interesting too to know if it concerns Lion Mountain only (since
comment 4 shows Mac OS X 10.8)

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


[Libreoffice-bugs] [Bug 53396] Spell check not working

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53396

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

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution||INVALID
   Severity|blocker |normal
 CC||LibreOffice@bielefeldundbus
   ||s.de

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 
2012-08-12 09:40:17 UTC ---
Not a valid bug report, information much too rare.

Probably DUP of one of those Update-Bundled Extensions problems

@reporter:
Thank you for your feedback! Unfortunately you are wrong here, this is the Bug
tracking system, not a helpdesk! You can get assistance on
http://ask.libreoffice.org/questions/
or on the public users mailing list us...@libreoffice.org, a mailing list
from http://www.documentfoundation.org/contribution/#lists or
http://wiki.documentfoundation.org/Local_Mailing_Lists

I believe the problem will disappear for you after you renamed the bundled
subfolder in your user profile
https://wiki.documentfoundation.org/User_Profile. For More Details please see
Bug 53006

Please feel free to reopen this Bug if discussion with othe userss leaded to an
assessment that we have a LibO bug and a clear and comprehensible description
of the problem due to  http://wiki.documentfoundation.org/BugReport.

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


[Libreoffice-bugs] [Bug 53399] New: word count inconsistent and wrong with non-breaking space

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53399

 Bug #: 53399
   Summary: word count inconsistent and wrong with non-breaking
space
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.0.4 release
  Platform: x86-64 (AMD64)
OS/Version: Windows (All)
Status: NEW
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: stephanhen...@arcor.de


Created attachment 65456
  -- https://bugs.freedesktop.org/attachment.cgi?id=65456
word count test document

Non-breaking spaces are handles incorrectly by word count, giving wrong and
inconsistent results.

Recipe:

1. Open the attached document wordcount-sample.odt containing a text consisting
of 6 words.  Word count is correct in this case, both, in the status line as
well as in the word count window (file wordcount-sample-1.png).

2. Replace the space between the fourth and fifth word with a non-breaking
space, but don't move the cursor (file wordcount-sample-2.png).

  Inconsistent behaviour:  Word count in status line switches to 4 whereas word
count in explicit windows switches to 5.

  Wrong results:  Both word counts are wrong as the number of words didn't
change.

3. Move the cursor (file wordcount-sample-3.png).

  Wrong results:  Word count in explicit windows now also switches to 4 and
'characters excluding spaces' decrease from 24 down to 16.

It looks like non-breaking spaces are treated like end-of-file markers by the
word count algorithm.  Still, that doesn't explain why multiple inconsistent
word count statistics are displayed in status line and the explicit word count
window.

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


[Libreoffice-bugs] [Bug 53399] word count inconsistent and wrong with non-breaking space

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53399

--- Comment #1 from Stephan Hennig stephanhen...@arcor.de 2012-08-12 10:02:01 
UTC ---
Created attachment 65457
  -- https://bugs.freedesktop.org/attachment.cgi?id=65457
first example - correct results

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


[Libreoffice-bugs] [Bug 53399] word count inconsistent and wrong with non-breaking space

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53399

--- Comment #2 from Stephan Hennig stephanhen...@arcor.de 2012-08-12 10:02:44 
UTC ---
Created attachment 65458
  -- https://bugs.freedesktop.org/attachment.cgi?id=65458
second example - inconsistent and incorrect results

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


[Libreoffice-bugs] [Bug 53399] word count inconsistent and wrong with non-breaking space

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53399

--- Comment #3 from Stephan Hennig stephanhen...@arcor.de 2012-08-12 10:03:26 
UTC ---
Created attachment 65459
  -- https://bugs.freedesktop.org/attachment.cgi?id=65459
third example - incorrect results

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


[Libreoffice-bugs] [Bug 53400] New: : Crash opening file of fdo#51817

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53400

 Bug #: 53400
   Summary: : Crash opening file of fdo#51817
Classification: Unclassified
   Product: LibreOffice
   Version: 3.7.0.0.alpha0+ Master
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Writer
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: serval2...@yahoo.fr


Created attachment 65460
  -- https://bugs.freedesktop.org/attachment.cgi?id=65460
bt + console logs

Problem description: 
On pc Debian x86-64 (testing updated today) with master sources updated today
and a brand new LO profile, I had a crash during opening the file
https://bugs.freedesktop.org/attachment.cgi?id=64081

Steps to reproduce:
1. Retrieve https://bugs.freedesktop.org/attachment.cgi?id=64081 file
2. Try to open it

Current behavior:
Crash

Expected behavior:
No crash

Platform (if different from the browser): 

Browser: Mozilla/5.0 (X11; Linux x86_64; rv:10.0.6) Gecko/20100101
Firefox/10.0.6 Iceweasel/10.0.6

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


[Libreoffice-bugs] [Bug 53396] Spell check not working

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53396

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

 Status|RESOLVED|UNCONFIRMED
 Resolution|INVALID |
   Severity|normal  |blocker
 CC||courrier.oou.fr.mjk@googlem
   ||ail.com

--- Comment #2 from manj_k courrier.oou.fr@googlemail.com 2012-08-12 
10:29:35 UTC ---
Thanks for your bug report.

Please try to remove the directory 'extensions' in your LibreOffice user
profile (%appdata%\LibreOffice\3\user\extensions).
Then restart LibO 3.6.0.4.

Probably a duplicate of 'Bug 53006 - Autocorrection TWo INitial CApitals does
not work because of bundled extensions problem'.

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


[Libreoffice-bugs] [Bug 53396] Spell check not working

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53396

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
   Severity|blocker |normal
 Ever Confirmed|0   |1

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


[Libreoffice-bugs] [Bug 53392] : German Spelling

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53392

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||courrier.oou.fr.mjk@googlem
   ||ail.com
 Ever Confirmed|0   |1

--- Comment #1 from manj_k courrier.oou.fr@googlemail.com 2012-08-12 
10:34:47 UTC ---
Thanks for your bug report.

Please try to remove the directory 'extensions' in your LibreOffice user
profile (%appdata%\LibreOffice\3\user\extensions).
Then restart LibO 3.6.0.4.

Probably a duplicate of 'Bug 53006 - Autocorrection TWo INitial CApitals does
not work because of bundled extensions problem'.

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


[Libreoffice-bugs] [Bug 53401] New: wrong background in checkboxes

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53401

 Bug #: 53401
   Summary: wrong background in checkboxes
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.0.4 release
  Platform: x86-64 (AMD64)
OS/Version: Windows (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: UI
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: stephanhen...@arcor.de


Created attachment 65461
  -- https://bugs.freedesktop.org/attachment.cgi?id=65461
checkboxes with wrong background colour

Recipe:

1. Set the system window background colour to something non-white (in the
attached screen-shot this is RGB(255,248,233).

2. Start LibreOffice.

3. Goto menu

  Tools - Options

  In the left option tree the correct system background colour is used.

4. Goto option

  LibreOffice - View

  Comboboxes show correct system background colour.

  Checkboxes show wrong white background (see attached screenshot).  This
applies to all checkboxes whatever option is chosen.

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


[Libreoffice-bugs] [Bug 53381] LibreOffice 3.6 fails to start just after installation (InvalidRegistryException, script-provider-for-python)

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53381

manj_k courrier.oou.fr@googlemail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||courrier.oou.fr.mjk@googlem
   ||ail.com
 Ever Confirmed|0   |1

--- Comment #6 from manj_k courrier.oou.fr@googlemail.com 2012-08-12 
10:40:52 UTC ---
@Guillaume Knispel:
Thanks for your bug report.

Please try to remove the directory 'extensions' in your LibreOffice user
profile (%appdata%\LibreOffice\3\user\extensions). See also comment #5 .
Then restart LibO 3.6.0.4.

Probably a duplicate of 'Bug 53006 - Autocorrection TWo INitial CApitals does
not work because of bundled extensions problem'.

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


[Libreoffice-bugs] [Bug 53400] Crash opening file of fdo#51817

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53400

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

   What|Removed |Added

Summary|: Crash opening file of |Crash opening file of
   |fdo#51817   |fdo#51817

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


[Libreoffice-bugs] [Bug 53400] Crash opening file of fdo#51817

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53400

--- Comment #1 from Julien Nabet serval2...@yahoo.fr 2012-08-12 11:02:20 UTC 
---
Created attachment 65462
  -- https://bugs.freedesktop.org/attachment.cgi?id=65462
autogen.lastrun

I attached autogen.lastrun

gcc (Debian 4.7.1-2) 4.7.1
libc: 2.13-33

java version 1.7.0_03
OpenJDK Runtime Environment (IcedTea7 2.1.1) (7~u3-2.1.1-1)
OpenJDK 64-Bit Server VM (build 22.0-b10, mixed mode)

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


[Libreoffice-bugs] [Bug 53400] Crash opening file of fdo#51817

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53400

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

   What|Removed |Added

  Attachment #65462|application/octet-stream|text/plain
  mime type||

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


[Libreoffice-bugs] [Bug 53320] LibreOffice 3.6 will not open on Mountain Lion with unidentified developer error - GateKeeper

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53320

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

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet serval2...@yahoo.fr 2012-08-12 11:44:50 UTC 
---
I found this link too
http://www.italovignoli.org/2012/08/libreoffice-and-mountain-lion-macos-x-10-8/
It seems there'll be a signed version in future but I don't know more.

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


[Libreoffice-bugs] [Bug 53403] New: Formatting: Date not correctly formated in 3.6

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53403

 Bug #: 53403
   Summary: Formatting: Date not correctly formated in 3.6
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.0.4 release
  Platform: Other
OS/Version: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: nospa...@aon.at


Created attachment 65463
  -- https://bugs.freedesktop.org/attachment.cgi?id=65463
LibreOffice 3.6.0.4 Date formatting

Problem description: Date formatting after Upgrade from 3.5 to 3.6
Locale: Germany

Steps to reproduce in 3.6.0.4:

1. Format cells to TT.MM.JJJ (if not done as Standard - Germany)
2. Type a date in a blank cell. 07.08.2012 press enter = you see 07.08.2012
3. Type a date in a blank cell. 07-08-2012 press enter = you see 12.08.2007

Behavior in 3.5: 
In both cells you see the correct date 07.08.2012 (07.August 2012 for Format:
Germany)

Behavior in 3.6: 
In one cell you see 07.08.2012 (07.August.2012) in the other cell you see
12.08.2007 (12.August.2007)

Screenshot added

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


[Libreoffice-bugs] [Bug 53258] Segmentation fault from psp::PrintFontManager::analyzeTrueTypeFile starting LO 3.6 release

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53258

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

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet serval2...@yahoo.fr 2012-08-12 11:52:26 UTC 
---
Did you install any specific font ?
Could you take a look to
http://wiki.documentfoundation.org/BugReport#How_to_get_backtrace_.28on_Linux.29
to retrieve an useful backtrace (I mean with symbols) ?

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


[Libreoffice-bugs] [Bug 53404] New: Tilde in front of German recently used files menu entry (~Zuletzt benutzte Dokumente)

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53404

 Bug #: 53404
   Summary: Tilde in front of German recently used files menu
entry (~Zuletzt benutzte Dokumente)
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.0.4 release
  Platform: Other
OS/Version: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Localization
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: flo...@documentfoundation.org


At least if no window is open, i.e. the start center is active, the menu entry
for Zuletzt benutzte Dokumente is shown with an additional tilde (~) at the
beginning, like this:

~Zuletzt benutzte Dokumente

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


[Libreoffice-bugs] [Bug 53405] New: mouse scroll wheel does not work for slide preview

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53405

 Bug #: 53405
   Summary: mouse scroll wheel does not work for slide preview
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.0.4 release
  Platform: Other
OS/Version: Mac OS X (All)
Status: UNCONFIRMED
  Severity: normal
  Priority: medium
 Component: Presentation
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: flo...@documentfoundation.org


The mouse scroll wheel does not have any effect for the slide preview
(thumbnails on the left side), while for the slide itself, it works like a
charm.

Running OS X 10.8, using an Apple Magic Mouse

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


[Libreoffice-bugs] [Bug 52343] : crash when dragging selection across page boundary

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52343

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||serval2...@yahoo.fr
 Ever Confirmed|0   |1

--- Comment #2 from Julien Nabet serval2...@yahoo.fr 2012-08-12 12:01:25 UTC 
---
On pc Debian x86-64 with 3.5 branch updated today, I didn't reproduce the
problem.

Can you attach the file so we can try to reproduce ?
Did you install any LO specific extension ?
Do you use any specific font ?
Can you reproduce this on a brand new doc with by default font ?
What's your Java version ?


Could you give a try with a brand new LO profile (see
http://wiki.documentfoundation.org/UserProfile) ? Think to backup your profile.

If you still reproduce the problem, could you take a look to this
http://wiki.documentfoundation.org/BugReport#How_to_get_backtrace_.28on_Linux.29
to retrieve an useful backtrace ?

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


[Libreoffice-bugs] [Bug 53247] chart data loss when pasted into presentation

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53247

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

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #2 from Julien Nabet serval2...@yahoo.fr 2012-08-12 12:11:04 UTC 
---
On pc Debian x86-64, with 3.6 sources updated today (with brand new LO
profile), I don't reproduce this problem.
Platform specific bug ?

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


[Libreoffice-bugs] [Bug 52963] C0000417 INVALID_CRUNTIME_PARAMETER as System Administrator and Guest

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52963

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 CC||serval2...@yahoo.fr
 Ever Confirmed|0   |1

--- Comment #1 from Julien Nabet serval2...@yahoo.fr 2012-08-12 12:20:50 UTC 
---
Did you install any LO specific extensions?
Did you install any specific font?
What's your Java version?

Could you try again with a brand new LO profile (see
http://wiki.documentfoundation.org/UserProfile) ? (backup yours, it could
help).

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


[Libreoffice-bugs] [Bug 53401] wrong background in checkboxes

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53401

--- Comment #1 from Stephan Hennig stephanhen...@arcor.de 2012-08-12 12:31:07 
UTC ---
This bug is not present in LibreOffice 3.5.2 on Windows XP SP3.

LibreOffice 3.5.2.2 
Build-ID: 281b639-6baa1d3-ef66a77-d866f25-f36d45f

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


[Libreoffice-bugs] [Bug 53399] word count inconsistent and wrong with non-breaking space

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53399

--- Comment #4 from Stephan Hennig stephanhen...@arcor.de 2012-08-12 12:36:36 
UTC ---
I've checked with LibreOffice 3.5.2 on Windows XP.  Here are the results:

1. After step 2 in the given recipe word count in the word count window
decreases to 5 as well.

2. After step 3 (moving the cursor) word count is corrected to 6 again.  That
is, part of the bug is not present in LibO 3.5.2.


LibreOffice 3.5.2.2 
Build-ID: 281b639-6baa1d3-ef66a77-d866f25-f36d45f

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


[Libreoffice-bugs] [Bug 53050] Sum of Table column in writer is wrong

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53050

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

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #1 from Julien Nabet serval2...@yahoo.fr 2012-08-12 12:37:00 UTC 
---
On pc Debian x86-64, with master sources updated today, I reproduced the
problem.
I noticed that if you clear and retype the numbers of the 3 cells not taken
into account (because they're considered with value equal to 0), it works.

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


[Libreoffice-bugs] [Bug 53396] Spell check not working

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53396

--- Comment #3 from Joop Lanting j.f.lant...@inter.nl.net 2012-08-12 13:04:22 
UTC ---
NICE ...
I already removed my entire profile thanks to the first, slightly arrogant,
comment.
Now I can rework ALL of my settings and tool bar edits.
Fortunately in my long career I developed the habit of creating installation
documents with step-by-step instructions and screen shots.


Anyway, spell check works again, so on my other machines I will apply your
solution, manj_k.

Well, if the malfunction of spell check since 3.5.4.2 is not a bug, then
what is it; I would like to know.

;JOOP!

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


[Libreoffice-bugs] [Bug 53399] word count inconsistent and wrong with non-breaking space

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53399

--- Comment #5 from Stephan Hennig stephanhen...@arcor.de 2012-08-12 13:16:33 
UTC ---
(In reply to comment #4)
 I've checked with LibreOffice 3.5.2 on Windows XP.  Here are the results:
 
 1. After step 2 in the given recipe word count in the word count window
 decreases to 5 as well.
 
 2. After step 3 (moving the cursor) word count is corrected to 6 again.  That
 is, part of the bug is not present in LibO 3.5.2.
 
 
 LibreOffice 3.5.2.2 
 Build-ID: 281b639-6baa1d3-ef66a77-d866f25-f36d45f

The same applies to LibO 3.5.4 as shipped by Linux Mint 13.

LibreOffice 3.5.4.2 
Build-ID: 350m1(Build:2)

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


[Libreoffice-bugs] [Bug 53396] Spell check not working

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53396

--- Comment #4 from Joop Lanting j.f.lant...@inter.nl.net 2012-08-12 13:25:01 
UTC ---
P.S.: I was able to restore the 'user' directories with contents of all users
from NORTON backup, so the problem was quickly solved.

Thanks for the suggestion about the user profile.

By the way, the first time you start LO after a fresh installation it does not
really go into service but it spends a lot of time constructing or rebuilding
the user profile without notice.

Might confuse new customers 

;JOOP!

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


[Libreoffice-bugs] [Bug 52963] C0000417 INVALID_CRUNTIME_PARAMETER as System Administrator and Guest

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52963

--- Comment #2 from Zoltán Hegedüs x...@hdsnet.hu 2012-08-12 13:33:43 UTC ---
(In reply to comment #1)

 Did you install any LO specific extensions?
 Did you install any specific font?

No, no, no, absolutely.

 What's your Java version?

1.7.5.

System: fully refreshed Windows XP Home SP3 Hungarian, 32 bit IBM PC compatible
computer, 1 GB of ECC memory.

In order:
3.5.4 installed (without uninstall of previous versions).
3.5.4 unistalled, the unistaller did not delete de LibreOffice directory from
F:\Program Files.
Installed: 3.6.0.1-2-4, without unistall of previous RC version.
The error happened in all of 3 RC versions.

 Could you try again with a brand new LO profile
If 3.5.6. will be released, I will uninstall 3.6.0.4 and delete the LibreOffice
directory from F:\Program Files, after it I will install 3.5.6 and in future
3.5.7 and about the new year 3.6.unknown.
So I will try it with a new LibreOffice profile, but with 3.5.6.

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


[Libreoffice-bugs] [Bug 52963] C0000417 INVALID_CRUNTIME_PARAMETER as System Administrator and Guest

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=52963

--- Comment #3 from Julien Nabet serval2...@yahoo.fr 2012-08-12 13:40:45 UTC 
---
(In reply to comment #2)
...
 If 3.5.6. will be released, I will uninstall 3.6.0.4 and delete the 
 LibreOffice
 directory from F:\Program Files, after it I will install 3.5.6 and in future
 3.5.7 and about the new year 3.6.unknown.
 So I will try it with a new LibreOffice profile, but with 3.5.6.
If interested, here's the link to the LO roadmap:
http://wiki.documentfoundation.org/ReleasePlan

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


[Libreoffice-bugs] [Bug 53407] New: FORMATTING: Calc Conditional Formatting 3.5 vs. 3.6 - not compatible

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53407

 Bug #: 53407
   Summary: FORMATTING: Calc Conditional Formatting 3.5 vs. 3.6 -
not compatible
Classification: Unclassified
   Product: LibreOffice
   Version: 3.6.0.4 release
  Platform: Other
OS/Version: All
Status: UNCONFIRMED
 Status Whiteboard: BSA
  Severity: normal
  Priority: medium
 Component: Spreadsheet
AssignedTo: libreoffice-bugs@lists.freedesktop.org
ReportedBy: arma...@verizon.net


Created attachment 65465
  -- https://bugs.freedesktop.org/attachment.cgi?id=65465
example spreadsheet w/ formatting

Problem description: 
I can't find this as an open bug yet...
When opening a new spreadsheet created in Calc 3.5.5 or Calc 3.5.6rc2 that has
conditional formatting with a formula, it does not read properly when opened in
Calc 3.6.0.4.
Additionally, when creating a new spreadsheet in Calc 3.6 that has conditional
formatting and opening it in Calc 3.5.5 (or any 3.5.x) that has a formula, the
formula changes the cell reference.

Steps to reproduce:
1. In any version of Calc 3.5, create a new spreadsheet.  
2. In cell A1, enter 0
3. In cell B2, open conditional formatting, and put in: Condition 1, formula is
IF(A1=1).
4. Save spreadsheet and close Calc.
5. Open Calc 3.6, and open the new spreadsheet.
6. Open the conditional formatting for cell B2.  Formula will read
IF(#REF!#REF!=1).  Oddly enough, it will work.
7. If you correct the conditional formatting formula in Calc 3.6, save it and
open it in Calc 3.5.x, the formula will read IF(B2=1)
8. If you don't touch cell b2 and add a new conditional formatting formula in
cell b3 as IF(A1=1) and open it in calc 3.5.x, the formula will read IF(B3=1)

Current behavior: #6,#7,#8
**A side-note, if the spreadsheet saved in 3.5 contains a lot of conditional
formatting across multiple tabs and opened in 3.6, editing any cell will crash
3.6 - It might be related to the #REF formulas or it might be a separate bug. 
I'm still working on steps to reproduce to see if it is related to this issue
or not.

Expected behavior:  Formulas do not change between 3.5.x and 3.6.0.4. My guess
is v3.6 is reading the formatting from 3.5 wrong and v3.6 is saving the
formatting differently so 3.5 does not read it correctly.  Possible problem
introduced with the new Conditional Formatting UI?

Platform (if different from the browser): 
Fedora Linux x86_64
And
Windows 7 SP1 x86_64

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


[Libreoffice-bugs] [Bug 53407] FORMATTING: Calc Conditional Formatting 3.5 vs. 3.6 - not compatible

2012-08-12 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=53407

Daniel Armata arma...@verizon.net changed:

   What|Removed |Added

   Platform|Other   |All

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


  1   2   >