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

2012-12-15 Thread Libreoffice Gerrit user
 sc/source/core/data/dpcache.cxx  |5 +
 sc/source/core/data/dpshttab.cxx |8 
 2 files changed, 13 insertions(+)

New commits:
commit 82b03180e66559c53911c404af455ca0d3505948
Author: Kohei Yoshida kohei.yosh...@gmail.com
Date:   Fri Dec 14 22:34:38 2012 -0500

Do extra check on source range to make sure no funny things happen.

Like a crash in the pivot layout dialog... :-/

Change-Id: I9a330ee3f39ebacb7299d24868bb13ee2a9c3ec5
Reviewed-on: https://gerrit.libreoffice.org/1345
Reviewed-by: Markus Mohrhard markus.mohrh...@googlemail.com
Tested-by: Markus Mohrhard markus.mohrh...@googlemail.com

diff --git a/sc/source/core/data/dpcache.cxx b/sc/source/core/data/dpcache.cxx
index 6113282..7fdf098 100644
--- a/sc/source/core/data/dpcache.cxx
+++ b/sc/source/core/data/dpcache.cxx
@@ -382,6 +382,11 @@ bool ScDPCache::InitFromDoc(ScDocument* pDoc, const 
ScRange rRange)
 
 SCROW nStartRow = rRange.aStart.Row();  // start of data
 SCROW nEndRow = rRange.aEnd.Row();
+
+// Sanity check
+if (!ValidRow(nStartRow) || !ValidRow(nEndRow) || nEndRow-nStartRow = 0)
+return false;
+
 sal_uInt16 nStartCol = rRange.aStart.Col();
 sal_uInt16 nEndCol = rRange.aEnd.Col();
 sal_uInt16 nDocTab = rRange.aStart.Tab();
diff --git a/sc/source/core/data/dpshttab.cxx b/sc/source/core/data/dpshttab.cxx
index 8ee3d4e..d2d8faf 100644
--- a/sc/source/core/data/dpshttab.cxx
+++ b/sc/source/core/data/dpshttab.cxx
@@ -335,6 +335,14 @@ sal_uLong ScSheetSourceDesc::CheckSourceRange() const
 if (!mpDoc)
 return STR_ERR_DATAPILOTSOURCE;
 
+// Make sure the range is valid and sane.
+const ScRange rSrcRange = GetSourceRange();
+if (!rSrcRange.IsValid())
+return STR_ERR_DATAPILOTSOURCE;
+
+if (rSrcRange.aStart.Col()  rSrcRange.aEnd.Col() || 
rSrcRange.aStart.Row()  rSrcRange.aEnd.Row())
+return STR_ERR_DATAPILOTSOURCE;
+
 return 0;
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] Change in core[libreoffice-3-6]: Do extra check on source range to make sure no funny things ...

2012-12-15 Thread Markus Mohrhard (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/1345

Approvals:
  Markus Mohrhard: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I9a330ee3f39ebacb7299d24868bb13ee2a9c3ec5
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: libreoffice-3-6
Gerrit-Owner: Kohei Yoshida kohei.yosh...@gmail.com
Gerrit-Reviewer: Markus Mohrhard markus.mohrh...@googlemail.com

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


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

2012-12-15 Thread Libreoffice Gerrit user
 desktop/source/migration/services/oo3extensionmigration.cxx |   25 ++--
 1 file changed, 14 insertions(+), 11 deletions(-)

New commits:
commit 6e963da804ed6f222a4a6c5f373d7ea6532d75ad
Author: Stephan Bergmann sberg...@redhat.com
Date:   Tue Dec 4 18:11:58 2012 +0100

Take extra cache/uno_packages/*.tmp_/*properties files into account

...when migrating user extensions from an old user profile.

Change-Id: I4425eba1e840bfdb33782bb3ed0542ce48b2f75f
(cherry picked from commit bd9c4510ff13ab7e935ed12c5b6d1f132c6f2b79)
Reviewed-on: https://gerrit.libreoffice.org/1313
Reviewed-by: Miklos Vajna vmik...@suse.cz
Tested-by: Miklos Vajna vmik...@suse.cz

diff --git a/desktop/source/migration/services/oo3extensionmigration.cxx 
b/desktop/source/migration/services/oo3extensionmigration.cxx
index 12f4ec4..1e38f28 100644
--- a/desktop/source/migration/services/oo3extensionmigration.cxx
+++ b/desktop/source/migration/services/oo3extensionmigration.cxx
@@ -145,22 +145,25 @@ void OO3ExtensionMigration::scanUserExtensions( const 
::rtl::OUString sSourceDi
 //Check next folder as the real extension folder is below a 
temp folder!
 ::rtl::OUString sExtensionFolderURL = fs.getFileURL();
 
-osl::DirectoryItem aExtDirItem;
 osl::Directory aExtensionRootDir( sExtensionFolderURL );
 
 nRetCode = aExtensionRootDir.open();
-if (( nRetCode == osl::Directory::E_None ) 
-( aExtensionRootDir.getNextItem( aExtDirItem, nHint ) == 
osl::Directory::E_None ))
+if ( nRetCode == osl::Directory::E_None )
 {
-bool bFileStatus = aExtDirItem.getFileStatus(fs) == 
osl::FileBase::E_None;
-bool bIsDir  = fs.getFileType() == 
osl::FileStatus::Directory;
-
-if ( bFileStatus  bIsDir )
+osl::DirectoryItem aExtDirItem;
+while ( aExtensionRootDir.getNextItem( aExtDirItem, nHint 
) == osl::Directory::E_None )
 {
-sExtensionFolderURL = fs.getFileURL();
-ScanResult eResult = scanExtensionFolder( 
sExtensionFolderURL );
-if ( eResult == SCANRESULT_MIGRATE_EXTENSION )
-aMigrateExtensions.push_back( sExtensionFolderURL 
);
+bool bFileStatus = aExtDirItem.getFileStatus(fs) == 
osl::FileBase::E_None;
+bool bIsDir  = fs.getFileType() == 
osl::FileStatus::Directory;
+
+if ( bFileStatus  bIsDir )
+{
+sExtensionFolderURL = fs.getFileURL();
+ScanResult eResult = scanExtensionFolder( 
sExtensionFolderURL );
+if ( eResult == SCANRESULT_MIGRATE_EXTENSION )
+aMigrateExtensions.push_back( 
sExtensionFolderURL );
+break;
+}
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: oox/source ucb/source

2012-12-15 Thread Libreoffice Gerrit user
 oox/source/vml/vmlshapecontainer.cxx   |7 +--
 ucb/source/ucp/webdav/webdavresponseparser.cxx |   10 +-
 2 files changed, 10 insertions(+), 7 deletions(-)

New commits:
commit b82b9a93caaf27855d6059885de29d1989a1907d
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sat Dec 15 09:31:09 2012 +0100

Some cppcheck cleaning

Change-Id: I73b5eb0f12f0e9fcc4b691fadca17cd97e5fd079

diff --git a/oox/source/vml/vmlshapecontainer.cxx 
b/oox/source/vml/vmlshapecontainer.cxx
index 31ad4cc..6b999bd 100644
--- a/oox/source/vml/vmlshapecontainer.cxx
+++ b/oox/source/vml/vmlshapecontainer.cxx
@@ -46,8 +46,11 @@ void lclMapShapesById( RefMap OUString, ShapeType  orMap, 
const RefVector Sh
 OSL_ENSURE( !rShapeId.isEmpty(), lclMapShapesById - missing shape 
identifier );
 if( !rShapeId.isEmpty() )
 {
-OSL_ENSURE( orMap.find( rShapeId ) == orMap.end(), 
lclMapShapesById - shape identifier already used );
-orMap[ rShapeId ] = *aIt;
+OSL_ENSURE( orMap.find( rShapeId ) == orMap.end(), 
lclMapShapesById - shape identifier already used JUL );
+if (orMap.find( rShapeId ) == orMap.end())
+{
+   orMap[ rShapeId ] = *aIt;
+}
 }
 }
 }
diff --git a/ucb/source/ucp/webdav/webdavresponseparser.cxx 
b/ucb/source/ucp/webdav/webdavresponseparser.cxx
index ffa4881..88b51da 100644
--- a/ucb/source/ucp/webdav/webdavresponseparser.cxx
+++ b/ucb/source/ucp/webdav/webdavresponseparser.cxx
@@ -237,7 +237,7 @@ namespace
 {
 const sal_Int32 nIndex(rSource.indexOf(sal_Unicode(':'), 0));
 
-if(-1 != nIndex  nIndex  0  nIndex + 1  nLen)
+if(nIndex  0  ((nIndex + 1)  nLen))
 {
 maNamespace = mapNamespaceToken(rSource.copy(0, nIndex));
 maName = rSource.copy(nIndex + 1);
@@ -695,7 +695,7 @@ namespace
 {
 if(isCollectingProperties())
 {
-if(maPropStatProperties.size())
+if(!maPropStatProperties.empty())
 {
 // append to 
maResponseProperties if okay
 
maResponseProperties.insert(maResponseProperties.end(), 
maPropStatProperties.begin(), maPropStatProperties.end());
@@ -703,7 +703,7 @@ namespace
 }
 else
 {
-if(maPropStatNames.size())
+if(!maPropStatNames.empty())
 {
 // when collecting properties 
append to
 
maResponseNames.insert(maResponseNames.end(), maPropStatNames.begin(), 
maPropStatNames.end());
@@ -721,7 +721,7 @@ namespace
 if(isCollectingProperties())
 {
 // create DAVResource when we have 
content
-if(maResponseProperties.size())
+if(!maResponseProperties.empty())
 {
 http_dav_ucp::DAVResource 
aDAVResource;
 
@@ -733,7 +733,7 @@ namespace
 else
 {
 // when collecting properties add them 
to result when there are some
-if(maResponseNames.size())
+if(!maResponseNames.empty())
 {
 http_dav_ucp::DAVResourceInfo 
aDAVResourceInfo(maHref);
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PUSHED] Change in core[libreoffice-3-6]: Take extra cache/uno_packages/*.tmp_/*properties files into ...

2012-12-15 Thread Miklos Vajna (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/1313

Approvals:
  Miklos Vajna: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I4425eba1e840bfdb33782bb3ed0542ce48b2f75f
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: libreoffice-3-6
Gerrit-Owner: Stephan Bergmann sberg...@redhat.com
Gerrit-Reviewer: Miklos Vajna vmik...@suse.cz
Gerrit-Reviewer: Stephan Bergmann sberg...@redhat.com

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


[Libreoffice-commits] .: oox/source

2012-12-15 Thread Libreoffice Gerrit user
 oox/source/vml/vmlshapecontainer.cxx |7 ++-
 1 file changed, 2 insertions(+), 5 deletions(-)

New commits:
commit 5931dbb53ebb2ff1e5670ad6537a41f996c0277c
Author: Julien Nabet serval2...@yahoo.fr
Date:   Sat Dec 15 09:34:06 2012 +0100

Oups changed this file by error

Change-Id: I9bf2a5f260828ed58abdc312ba3df7c2ed1c18e5

diff --git a/oox/source/vml/vmlshapecontainer.cxx 
b/oox/source/vml/vmlshapecontainer.cxx
index 6b999bd..4355b11 100644
--- a/oox/source/vml/vmlshapecontainer.cxx
+++ b/oox/source/vml/vmlshapecontainer.cxx
@@ -46,11 +46,8 @@ void lclMapShapesById( RefMap OUString, ShapeType  orMap, 
const RefVector Sh
 OSL_ENSURE( !rShapeId.isEmpty(), lclMapShapesById - missing shape 
identifier );
 if( !rShapeId.isEmpty() )
 {
-OSL_ENSURE( orMap.find( rShapeId ) == orMap.end(), 
lclMapShapesById - shape identifier already used JUL );
-if (orMap.find( rShapeId ) == orMap.end())
-{
-   orMap[ rShapeId ] = *aIt;
-}
+OSL_ENSURE( orMap.find( rShapeId ) == orMap.end(), 
lclMapShapesById - shape identifier already used  );
+orMap[ rShapeId ] = *aIt;
 }
 }
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Question about sc/source/core/data/colorscale.cxx

2012-12-15 Thread julien2412
Hello,

I noticed these lines in file sc/source/core/data/colorscale.cxx
(because cppcheck report indicates that bNeedUpdate is reassigned before to
be used line 641)

637 void ScDataBarFormat::DataChanged(const ScRange rRange)
638 {
639 bool bNeedUpdate = false;
640 
641 bNeedUpdate = NeedUpdate(mpFormatData-mpUpperLimit.get());
642 bNeedUpdate = NeedUpdate(mpFormatData-mpLowerLimit.get());
643 
644 bNeedUpdate = GetRange().Intersects(rRange);
645 
646 if(bNeedUpdate)
647 {
648 mpDoc-RepaintRange(GetRange());
649 }
650 }

First I wonder if we shouldn't avoid to bitwise and and logical and. But
above all, shouldn't it be logical OR?

So I would rather put:
 if( (NeedUpdate(mpFormatData-mpUpperLimit.get()))
|| (NeedUpdate(mpFormatData-mpLowerLimit.get())) ||
(GetRange().Intersects(rRange)) )
{
mpDoc-RepaintRange(GetRange());
}

What do you think?

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/Question-about-sc-source-core-data-colorscale-cxx-tp4024485.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


Question about sc/source/ui/view/cellsh.cxx

2012-12-15 Thread julien2412
Hello,

In sc/source/ui/view/cellsh.cxx, we have these lines:
150 case FID_FILL_TO_RIGHT: // fill to left / right
151 {
152 bDisable = !bSimpleArea || (nCol1 == 0  nCol2 ==
0);
153 bDisable = pDoc-HasSelectedBlockMatrixFragment(
154 nCol1, nRow1, nCol1, nRow2, rMark );// first
column
155 }

Either first bDisable is useless or the result of it should be used for the
next line?

What do you think?

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/Question-about-sc-source-ui-view-cellsh-cxx-tp4024486.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] .: Branch 'libreoffice-4-0' - 2 commits - mysqlc/source solenv/inc

2012-12-15 Thread Libreoffice Gerrit user
 mysqlc/source/makefile.mk |2 +-
 solenv/inc/rules.mk   |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 0cf259c9fbf10187306999b35126e92b32a57752
Author: Andras Timar ati...@suse.com
Date:   Sat Dec 15 10:37:52 2012 +0100

fdo#58156 use WITH_LANG_LIST instead of WITH_LANG

Change-Id: Ie87469d7553d1dcad49348c42d3cca99a43d709c

diff --git a/mysqlc/source/makefile.mk b/mysqlc/source/makefile.mk
index 5fecb22..207d785 100644
--- a/mysqlc/source/makefile.mk
+++ b/mysqlc/source/makefile.mk
@@ -236,7 +236,7 @@ $(COMPONENT_DESCRIPTIONS_PACKDEP) : $(DESCRIPTION)
 $(DESCRIPTION_SRC): description.xml
 +-$(RM) $@
 .IF $(WITH_LANG) != 
-$(XRMEX) -p $(PRJNAME) -i $ -o $@ -m $(mktmp 
$(foreach,lang,$(subst,en-US, $(WITH_LANG)) 
$(SRCDIR)/translations/source/$(lang)/$(PRJNAME)$/$(PATH_IN_MODULE).po)) -l all
+$(XRMEX) -p $(PRJNAME) -i $ -o $@ -m $(mktmp 
$(foreach,lang,$(subst,en-US, $(WITH_LANG_LIST)) 
$(SRCDIR)/translations/source/$(lang)/$(PRJNAME)$/$(PATH_IN_MODULE).po)) -l all
 $(SED) s/#VERSION#/$(EXTENSION_VERSION)/  $@  $@.new
 mv $@.new $@
 @$(COPY) $(@:d)/description-*.txt $(EXTENSIONDIR)
commit 8bc2ae58d11cfc0ee2718538f6f2b606bb9fb5c1
Author: Andras Timar ati...@suse.com
Date:   Sat Dec 15 10:28:51 2012 +0100

fdo#58145 dmake rule for ulf localization was not converted to use po files

Change-Id: I7a47994fb74d2b7aa3e2069b91d02d7993ba993b

diff --git a/solenv/inc/rules.mk b/solenv/inc/rules.mk
index 02ed21d..69a40b3 100644
--- a/solenv/inc/rules.mk
+++ b/solenv/inc/rules.mk
@@ -638,7 +638,7 @@ $(COMMONMISC)/$(TARGET)/%.ulf : %.ulf
 @echo Making:$(@:f)
 $(COMMAND_ECHO)-$(MKDIRHIER) $(@:d)
 $(COMMAND_ECHO)-$(RM) $@
-$(COMMAND_ECHO)$(ULFEX) -p $(PRJNAME) -i $(@:f) -o $(@).$(INPATH) -m 
$(LOCALIZESDF) -l all
+$(COMMAND_ECHO)$(ULFEX) -p $(PRJNAME) -i $(@:f) -o $(@).$(INPATH) -m 
$(mktmp $(foreach,lang,$(subst,en-US, $(WITH_LANG_LIST)) 
$(SRCDIR)/translations/source/$(lang)/$(PRJNAME)$/$(PATH_IN_MODULE).po)) -l all
 $(COMMAND_ECHO)$(RENAME) $@.$(INPATH) $@
 $(COMMAND_ECHO)-$(RM) $@.$(INPATH)
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: 2 commits - mysqlc/source solenv/inc

2012-12-15 Thread Libreoffice Gerrit user
 mysqlc/source/makefile.mk |2 +-
 solenv/inc/rules.mk   |2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

New commits:
commit fb7bb64f5b0abe48146498d2f05713a61e4a706c
Author: Andras Timar ati...@suse.com
Date:   Sat Dec 15 10:28:51 2012 +0100

fdo#58145 dmake rule for ulf localization was not converted to use po files

Change-Id: I7a47994fb74d2b7aa3e2069b91d02d7993ba993b

diff --git a/solenv/inc/rules.mk b/solenv/inc/rules.mk
index 02ed21d..69a40b3 100644
--- a/solenv/inc/rules.mk
+++ b/solenv/inc/rules.mk
@@ -638,7 +638,7 @@ $(COMMONMISC)/$(TARGET)/%.ulf : %.ulf
 @echo Making:$(@:f)
 $(COMMAND_ECHO)-$(MKDIRHIER) $(@:d)
 $(COMMAND_ECHO)-$(RM) $@
-$(COMMAND_ECHO)$(ULFEX) -p $(PRJNAME) -i $(@:f) -o $(@).$(INPATH) -m 
$(LOCALIZESDF) -l all
+$(COMMAND_ECHO)$(ULFEX) -p $(PRJNAME) -i $(@:f) -o $(@).$(INPATH) -m 
$(mktmp $(foreach,lang,$(subst,en-US, $(WITH_LANG_LIST)) 
$(SRCDIR)/translations/source/$(lang)/$(PRJNAME)$/$(PATH_IN_MODULE).po)) -l all
 $(COMMAND_ECHO)$(RENAME) $@.$(INPATH) $@
 $(COMMAND_ECHO)-$(RM) $@.$(INPATH)
 
commit 1cfc20a7bcc24b7fe172207661e2fe495b0fd317
Author: Andras Timar ati...@suse.com
Date:   Sat Dec 15 10:37:52 2012 +0100

fdo#58156 use WITH_LANG_LIST instead of WITH_LANG

Change-Id: Ie87469d7553d1dcad49348c42d3cca99a43d709c

diff --git a/mysqlc/source/makefile.mk b/mysqlc/source/makefile.mk
index 5fecb22..207d785 100644
--- a/mysqlc/source/makefile.mk
+++ b/mysqlc/source/makefile.mk
@@ -236,7 +236,7 @@ $(COMPONENT_DESCRIPTIONS_PACKDEP) : $(DESCRIPTION)
 $(DESCRIPTION_SRC): description.xml
 +-$(RM) $@
 .IF $(WITH_LANG) != 
-$(XRMEX) -p $(PRJNAME) -i $ -o $@ -m $(mktmp 
$(foreach,lang,$(subst,en-US, $(WITH_LANG)) 
$(SRCDIR)/translations/source/$(lang)/$(PRJNAME)$/$(PATH_IN_MODULE).po)) -l all
+$(XRMEX) -p $(PRJNAME) -i $ -o $@ -m $(mktmp 
$(foreach,lang,$(subst,en-US, $(WITH_LANG_LIST)) 
$(SRCDIR)/translations/source/$(lang)/$(PRJNAME)$/$(PATH_IN_MODULE).po)) -l all
 $(SED) s/#VERSION#/$(EXTENSION_VERSION)/  $@  $@.new
 mv $@.new $@
 @$(COPY) $(@:d)/description-*.txt $(EXTENSIONDIR)
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Bug 54157] LibreOffice 3.7/4.0 most annoying bugs

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

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

 Depends on||58328

--- Comment #49 from Roman Eisele b...@eikota.de ---
I add bug 58328 - “FILESAVE: Creating a new document version no longer
working”.

An important regression, makes the versions feature completely useless.
Reported and confirmed on Mac OS X, please test on other platforms ...

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


LO 4.0 beta1+ builds but fails to install

2012-12-15 Thread Jean-Baptiste Faure
Hi Andras,

I got the following error messages, it seems that qtz is involved :

 : PROGRESSTEXTCOLOR=255,255,255
 :
 :
 :
 :
 : Setting Root Module: gid_Module_Root
 : Using spellchecker file:
 /home/jbf/LibO/master/solver/unxlngx6.pro/bin/spellchecker_selection.txt
 : Collected spellchecker languages for spellchecker: en,es,fr
 :
 : *
 : ERROR: ERROR: HostName not defined for gid_Dir_Autotext_Language for
 specified language. Probably you wanted to create an installation set,
 in a language not defined in scp2 project. You selected the following
 language(s): en-US fr qtz  at
 /home/jbf/LibO/master/solenv/bin/modules/installer/scriptitems.pm line 443
 : *

 Sat Dec 15 11:49:03 2012 (00:01 min.)
 Failed to install:  at /home/jbf/LibO/master/solenv/bin/ooinstall line
 120.
 make[1]: *** [dev-install] Erreur 255
 make[1]: quittant le répertoire « /home/jbf/LibO/master »
 make: *** [dev-install] Erreur 2

Does that ring a bell for you ? Perhaps something missing in this commit:
https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=cf453b85b0461189cc1d63d5d0a43fb855d6bdaa

Best regards.
JBF

-- 
Seuls des formats ouverts peuvent assurer la pérennité de vos documents.

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


[PATCH] Added tableproperties.ui

2012-12-15 Thread gokul s (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1347

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/47/1347/1

Added tableproperties.ui

Change-Id: I228c3c5e52096492eda3ea8ae65bb659fcf688e6
---
M sw/UI_swriter.mk
A sw/uiconfig/swriter/ui/tableproperties.ui
2 files changed, 2,388 insertions(+), 1 deletion(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I228c3c5e52096492eda3ea8ae65bb659fcf688e6
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: gokul s gswaminat...@kacst.edu.sa

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


[Libreoffice-commits] .: 3 commits - .gitignore Module_tail_build.mk RepositoryModule_ooo.mk solenv/gbuild

2012-12-15 Thread Libreoffice Gerrit user
 .gitignore  |1 -
 Module_tail_build.mk|   22 +++---
 RepositoryModule_ooo.mk |   22 +++---
 solenv/gbuild/Helper.mk |2 +-
 solenv/gbuild/Module.mk |2 +-
 5 files changed, 24 insertions(+), 25 deletions(-)

New commits:
commit 798d758577f3f5445bcc5ff71eeb99976228ca99
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Fri Dec 14 21:24:33 2012 +0100

use more gb_Helper_optional for consistency

Change-Id: I8f68addd1e94d658ed43b8c1a59bfd51ed9b71b8

diff --git a/Module_tail_build.mk b/Module_tail_build.mk
index ed471b8..34569d1 100644
--- a/Module_tail_build.mk
+++ b/Module_tail_build.mk
@@ -97,17 +97,17 @@ $(eval $(call gb_Module_add_moduledirs,tail_build,\
jvmfwk \
$(call gb_Helper_optional,LANGUAGETOOL,languagetool) \
$(call gb_Helper_optional,LCMS2,lcms2) \
-   libcdr \
-   libcmis \
+   $(call gb_Helper_optional,CDR,libcdr) \
+   $(call gb_Helper_optional,CMIS,libcmis) \
$(call gb_Helper_optional,LIBEXTTEXTCAT,libexttextcat) \
$(call gb_Helper_optional,LIBLANGTAG,liblangtag) \
-   libmspub \
-   liborcus \
+   $(call gb_Helper_optional,MSPUB,libmspub) \
+   $(call gb_Helper_optional,ORCUS,liborcus) \
librelogo \
-   libvisio \
-   libwpd \
-   libwpg \
-   libwps \
+   $(call gb_Helper_optional,VISIO,libvisio) \
+   $(call gb_Helper_optional,WPD,libwpd) \
+   $(call gb_Helper_optional,WPG,libwpg) \
+   $(call gb_Helper_optional,WPS,libwps) \
libxmlsec \
lingucomponent \
linguistic \
@@ -115,7 +115,7 @@ $(eval $(call gb_Module_add_moduledirs,tail_build,\
$(call gb_Helper_optional,LPSOLVE,lpsolve) \
$(call gb_Helper_optional,DESKTOP,l10ntools) \
MathMLDTD \
-   mdds \
+   $(call gb_Helper_optional,MDDS,mdds) \
Mesa \
$(call gb_Helper_optional,MORE_FONTS,more_fonts) \
$(call gb_Helper_optional,MYTHES,mythes) \
@@ -191,7 +191,7 @@ $(eval $(call gb_Module_add_moduledirs,tail_build,\
uui \
vbahelper \
vcl \
-   vigra \
+   $(call gb_Helper_optional,VIGRA,vigra) \
wizards \
writerfilter \
writerperfect \
@@ -202,7 +202,7 @@ $(eval $(call gb_Module_add_moduledirs,tail_build,\
xmlreader \
xmlscript \
xmlsecurity \
-   xsltml \
+   $(call gb_Helper_optional,XSLTML,xsltml) \
 ))
 
 ifeq ($(MERGELIBS),TRUE)
diff --git a/RepositoryModule_ooo.mk b/RepositoryModule_ooo.mk
index 83347d2..b657909 100644
--- a/RepositoryModule_ooo.mk
+++ b/RepositoryModule_ooo.mk
@@ -105,25 +105,25 @@ $(eval $(call gb_Module_add_moduledirs,ooo,\
$(call gb_Helper_optional,DESKTOP,l10ntools) \
$(call gb_Helper_optional,LANGUAGETOOL,languagetool) \
$(call gb_Helper_optional,LCMS2,lcms2) \
-   libcdr \
-   libcmis \
+   $(call gb_Helper_optional,CDR,libcdr) \
+   $(call gb_Helper_optional,CMIS,libcmis) \
$(call gb_Helper_optional,LIBEXTTEXTCAT,libexttextcat) \
$(call gb_Helper_optional,LIBLANGTAG,liblangtag) \
-   libmspub \
-   liborcus \
+   $(call gb_Helper_optional,MSPUB,libmspub) \
+   $(call gb_Helper_optional,ORCUS,liborcus) \
$(call gb_Helper_optional,LIBPNG,libpng) \
librelogo \
-   libvisio \
-   libwpd \
-   libwpg \
-   libwps \
+   $(call gb_Helper_optional,VISIO,libvisio) \
+   $(call gb_Helper_optional,WPD,libwpd) \
+   $(call gb_Helper_optional,WPG,libwpg) \
+   $(call gb_Helper_optional,WPS,libwps) \
libxmlsec \
lingucomponent \
linguistic \
lotuswordpro \
$(call gb_Helper_optional,LPSOLVE,lpsolve) \
MathMLDTD \
-   mdds \
+   $(call gb_Helper_optional,MDDS,mdds) \
Mesa \
$(call gb_Helper_optional,MORE_FONTS,more_fonts) \
$(call gb_Helper_optional,MYTHES,mythes) \
@@ -203,7 +203,7 @@ $(eval $(call gb_Module_add_moduledirs,ooo,\
uui \
vbahelper \
vcl \
-   vigra \
+   $(call gb_Helper_optional,VIGRA,vigra) \
wizards \
writerfilter \
writerperfect \
@@ -214,7 +214,7 @@ $(eval $(call gb_Module_add_moduledirs,ooo,\
xmlreader \
xmlscript \
xmlsecurity \
-   xsltml \
+   $(call gb_Helper_optional,XSLTML,xsltml) \
$(call gb_Helper_optional,ZLIB,zlib) \
 ))
 
commit 6af14cc8ecd69bbbff94fa47c14f53c94e8751e6
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Thu Dec 13 10:59:36 2012 +0100

src.downloaded is gone

Change-Id: I09a6ad82bbb54ce8329e8b2f6152e9f5a1880a68

diff --git a/.gitignore b/.gitignore
index 98585b7..ae41aee 100644
--- a/.gitignore
+++ b/.gitignore
@@ -62,7 +62,6 @@
 /desktop/scripts/soffice.sh
 /makefile.mk
 /Makefile
-/src.downloaded
 /intltool-extract.in
 /intltool-merge.in
 /intltool-update.in
diff --git a/solenv/gbuild/Module.mk b/solenv/gbuild/Module.mk
index 

[Bug 54157] LibreOffice 3.7/4.0 most annoying bugs

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

Bug 54157 depends on bug 57895, which changed state.

Bug 57895 Summary: UI: Conditional Formatting for cells  shown incorrectly and 
and incompletely in CF dialog
https://bugs.freedesktop.org/show_bug.cgi?id=57895

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution|--- |FIXED

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


Question about vcl/source/window/builder.cxx

2012-12-15 Thread julien2412
Hello,

Keeping on with cppcheck, I found this on vcl/source/window/builder.cxx
   1892 else if (sKey == pack-type)
   1893 {
   1894 VclPackType ePackType = (sValue[0] == 'e' ||
sValue[0] == 'e') ? VCL_PACK_END : VCL_PACK_START;
   1895 pCurrent-set_pack_type(ePackType);
   1896 }

Should it be  (sValue[0] == 'e' || sValue[0] == 'E'), just sValue[0] == 'e'
or something else?

Julien



--
View this message in context: 
http://nabble.documentfoundation.org/Question-about-vcl-source-window-builder-cxx-tp4024520.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


[REVIEW 3-6] fix for fdo#56742 , ScRangeList::UpdateReference does not handle URM_COPY

2012-12-15 Thread Markus Mohrhard
Hey,

[1] fixes [2] which is more or less a problem in
ScRangeList::UpdateReference but we can't safely change it as there
might be some users that rely on this behavior. So we just map
URM_COPY to URM_MOVE which does the right thing in our case too.

Regards,
Markus

[1] 
http://cgit.freedesktop.org/libreoffice/core/commit/?id=1c60abfdb617039cedc53982c7c8eca640e28cac
[2] https://bugs.freedesktop.org/show_bug.cgi?id=56742
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Question about sc/source/core/data/colorscale.cxx

2012-12-15 Thread Markus Mohrhard
Hey,

 I noticed these lines in file sc/source/core/data/colorscale.cxx
 (because cppcheck report indicates that bNeedUpdate is reassigned before to
 be used line 641)

 637 void ScDataBarFormat::DataChanged(const ScRange rRange)
 638 {
 639 bool bNeedUpdate = false;
 640
 641 bNeedUpdate = NeedUpdate(mpFormatData-mpUpperLimit.get());
 642 bNeedUpdate = NeedUpdate(mpFormatData-mpLowerLimit.get());
 643
 644 bNeedUpdate = GetRange().Intersects(rRange);
 645
 646 if(bNeedUpdate)
 647 {
 648 mpDoc-RepaintRange(GetRange());
 649 }
 650 }

 First I wonder if we shouldn't avoid to bitwise and and logical and. But
 above all, shouldn't it be logical OR?

Only for the first one. For the second one the OR is totally wrong and
will force always a repainting which is a preformance nightmare.


 So I would rather put:
  if( (NeedUpdate(mpFormatData-mpUpperLimit.get()))
 || (NeedUpdate(mpFormatData-mpLowerLimit.get())) ||
 (GetRange().Intersects(rRange)) )
 {
 mpDoc-RepaintRange(GetRange());
 }

 What do you think?

Implemented a correct version with 4f901a2f451a552853c1dd38309dd55b22616fdd.
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


Re: Question about sc/source/core/data/colorscale.cxx

2012-12-15 Thread Julien Nabet

On 15/12/2012 15:39, Markus Mohrhard wrote:

Hey,


I noticed these lines in file sc/source/core/data/colorscale.cxx
(because cppcheck report indicates that bNeedUpdate is reassigned before to
be used line 641)

 637 void ScDataBarFormat::DataChanged(const ScRange  rRange)
 638 {
 639 bool bNeedUpdate = false;
 640
 641 bNeedUpdate = NeedUpdate(mpFormatData-mpUpperLimit.get());
 642 bNeedUpdate= NeedUpdate(mpFormatData-mpLowerLimit.get());
 643
 644 bNeedUpdate= GetRange().Intersects(rRange);
 645
 646 if(bNeedUpdate)
 647 {
 648 mpDoc-RepaintRange(GetRange());
 649 }
 650 }

First I wonder if we shouldn't avoid to bitwise and and logical and. But
above all, shouldn't it be logical OR?

Only for the first one. For the second one the OR is totally wrong and
will force always a repainting which is a preformance nightmare.
Ok. I thought that 1 NeedUpdate should have triggered a RepaintRange. 
The function really should be called NeedPerhapsUpdate (just kidding of 
course :-))


So I would rather put:
  if( (NeedUpdate(mpFormatData-mpUpperLimit.get()))
|| (NeedUpdate(mpFormatData-mpLowerLimit.get())) ||
(GetRange().Intersects(rRange)) )
{
 mpDoc-RepaintRange(GetRange());
}

What do you think?
Implemented a correct version with 4f901a2f451a552853c1dd38309dd55b22616fdd.

Thank you Markus for the patch and for your feedback.

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


Re: LO 4.0 beta1+ builds but fails to install

2012-12-15 Thread Arnaud Versini
I confirm the issue on Ubuntu


2012/12/15 Jean-Baptiste Faure jbf.fa...@sud-ouest.org

 Hi Andras,

 I got the following error messages, it seems that qtz is involved :

  : PROGRESSTEXTCOLOR=255,255,255
  :
  :
  :
  :
  : Setting Root Module: gid_Module_Root
  : Using spellchecker file:
  /home/jbf/LibO/master/solver/unxlngx6.pro/bin/spellchecker_selection.txt
  : Collected spellchecker languages for spellchecker: en,es,fr
  :
  : *
  : ERROR: ERROR: HostName not defined for gid_Dir_Autotext_Language for
  specified language. Probably you wanted to create an installation set,
  in a language not defined in scp2 project. You selected the following
  language(s): en-US fr qtz  at
  /home/jbf/LibO/master/solenv/bin/modules/installer/scriptitems.pm line
 443
  : *
 
  Sat Dec 15 11:49:03 2012 (00:01 min.)
  Failed to install:  at /home/jbf/LibO/master/solenv/bin/ooinstall line
  120.
  make[1]: *** [dev-install] Erreur 255
  make[1]: quittant le répertoire « /home/jbf/LibO/master »
  make: *** [dev-install] Erreur 2

 Does that ring a bell for you ? Perhaps something missing in this commit:

 https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=cf453b85b0461189cc1d63d5d0a43fb855d6bdaa

 Best regards.
 JBF

 --
 Seuls des formats ouverts peuvent assurer la pérennité de vos documents.

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




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


Re: LO 4.0 beta1+ builds but fails to install

2012-12-15 Thread Jean-Baptiste Faure
Hi,

The problem is in this commit :
https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=49b9318873151d25478095bd66ef1cd40c86ba67

Up to previous commit
(https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=c0476ad5b0aa8758603b4a2b9f6f8feed130b1b4)
no problem to install, at this commit install fails.

Best regards.
JBF

Le 15/12/2012 12:05, Jean-Baptiste Faure a écrit :
 Hi Andras,

 I got the following error messages, it seems that qtz is involved :

 : PROGRESSTEXTCOLOR=255,255,255
 :
 :
 :
 :
 : Setting Root Module: gid_Module_Root
 : Using spellchecker file:
 /home/jbf/LibO/master/solver/unxlngx6.pro/bin/spellchecker_selection.txt
 : Collected spellchecker languages for spellchecker: en,es,fr
 :
 : *
 : ERROR: ERROR: HostName not defined for gid_Dir_Autotext_Language for
 specified language. Probably you wanted to create an installation set,
 in a language not defined in scp2 project. You selected the following
 language(s): en-US fr qtz  at
 /home/jbf/LibO/master/solenv/bin/modules/installer/scriptitems.pm line 443
 : *

 Sat Dec 15 11:49:03 2012 (00:01 min.)
 Failed to install:  at /home/jbf/LibO/master/solenv/bin/ooinstall line
 120.
 make[1]: *** [dev-install] Erreur 255
 make[1]: quittant le répertoire « /home/jbf/LibO/master »
 make: *** [dev-install] Erreur 2
 Does that ring a bell for you ? Perhaps something missing in this commit:
 https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=cf453b85b0461189cc1d63d5d0a43fb855d6bdaa

 Best regards.
 JBF



-- 
Seuls des formats ouverts peuvent assurer la pérennité de vos documents.

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


Re: LO 4.0 beta1+ builds but fails to install

2012-12-15 Thread Andras Timar
Hi,

On Sat, Dec 15, 2012 at 4:43 PM, Jean-Baptiste Faure
jbf.fa...@sud-ouest.org wrote:
 Hi,

 The problem is in this commit :
 https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=49b9318873151d25478095bd66ef1cd40c86ba67

 Up to previous commit
 (https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=c0476ad5b0aa8758603b4a2b9f6f8feed130b1b4)
 no problem to install, at this commit install fails.


I tested it on master and it worked fine, I'll see if there is a
problem on libreoffice-4-0 and I'll fix it ASAP. Thanks for testing.

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


[PATCH] fdo#44216 Prompt if objects from dropped slide should be fix...

2012-12-15 Thread Rodolfo Ribeiro Gomes (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1348

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/48/1348/1

fdo#44216 Prompt if objects from dropped slide should be fixed in aspect ratio

Change-Id: I76f8b13f5e275fa4b59ad9b7dc24be6bf0aa7b59
---
M sd/source/ui/view/ViewClipboard.cxx
1 file changed, 1 insertion(+), 1 deletion(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I76f8b13f5e275fa4b59ad9b7dc24be6bf0aa7b59
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Rodolfo Ribeiro Gomes l...@rodolfo.eng.br

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


[PATCH] Changed Writer follow-up Styles for Title and Quotations

2012-12-15 Thread Samuel Mehrbrodt (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1349

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/49/1349/1

Changed Writer follow-up Styles for Title and Quotations

Text body is the most sensible follower for these I think.

Change-Id: I4fc091446ada5f4aea82ba79dba84f2874bca760
---
M sw/source/core/doc/poolfmt.cxx
1 file changed, 3 insertions(+), 4 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I4fc091446ada5f4aea82ba79dba84f2874bca760
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Samuel Mehrbrodt s.mehrbr...@gmail.com

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


Re: LO 4.0 beta1+ builds but fails to install

2012-12-15 Thread Andras Timar
Hi,

On Sat, Dec 15, 2012 at 5:31 PM, Andras Timar tima...@gmail.com wrote:
 Hi,

 On Sat, Dec 15, 2012 at 4:43 PM, Jean-Baptiste Faure
 jbf.fa...@sud-ouest.org wrote:
 Hi,

 The problem is in this commit :
 https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=49b9318873151d25478095bd66ef1cd40c86ba67

 Up to previous commit
 (https://gerrit.libreoffice.org/gitweb?p=core.git;a=commit;h=c0476ad5b0aa8758603b4a2b9f6f8feed130b1b4)
 no problem to install, at this commit install fails.


 I tested it on master and it worked fine, I'll see if there is a
 problem on libreoffice-4-0 and I'll fix it ASAP. Thanks for testing.

I did not see any problem with my make dev-install. I built it from
scratch, after make clean.
If the problem persists, please send more details (autogen.lastrun,
config_host.mk etc.)

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


Re: LO 4.0 beta1+ builds but fails to install

2012-12-15 Thread Jean-Baptiste Faure
Hi Andras,

Le 15/12/2012 18:38, Andras Timar a écrit :
 [...]
 I tested it on master and it worked fine, I'll see if there is a
 problem on libreoffice-4-0 and I'll fix it ASAP. Thanks for testing.
Thank you very much.
 I did not see any problem with my make dev-install. I built it from
 scratch, after make clean.
 If the problem persists, please send more details (autogen.lastrun,
 config_host.mk etc.)
Argh ! I should get the idea that, even after a successful build, it may
be necessary to do a make clean.
Yes,  with a make dev-install after a make clean, I got a successful
installation. And the new language KeyID in the UI.

Does this installation problem could be the sign of a dependency not
managed in the makefile ?

Sorry for the noise. :-(
JBF

-- 
Seuls des formats ouverts peuvent assurer la pérennité de vos documents.

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


Re: Question about sc/source/core/data/colorscale.cxx

2012-12-15 Thread Mat M

Hello Markus

Le Sat, 15 Dec 2012 15:39:26 +0100, Markus Mohrhard  
markus.mohrh...@googlemail.com a écrit:



Hey,


I noticed these lines in file sc/source/core/data/colorscale.cxx
(because cppcheck report indicates that bNeedUpdate is reassigned  
before to

be used line 641)

637 void ScDataBarFormat::DataChanged(const ScRange rRange)
638 {
639 bool bNeedUpdate = false;
640
641 bNeedUpdate = NeedUpdate(mpFormatData-mpUpperLimit.get());
642 bNeedUpdate = NeedUpdate(mpFormatData-mpLowerLimit.get());
643
644 bNeedUpdate = GetRange().Intersects(rRange);
645
646 if(bNeedUpdate)
647 {
648 mpDoc-RepaintRange(GetRange());
649 }
650 }

First I wonder if we shouldn't avoid to bitwise and and logical and. But
above all, shouldn't it be logical OR?


Only for the first one. For the second one the OR is totally wrong and
will force always a repainting which is a preformance nightmare.



So I would rather put:
 if( (NeedUpdate(mpFormatData-mpUpperLimit.get()))
|| (NeedUpdate(mpFormatData-mpLowerLimit.get())) ||
(GetRange().Intersects(rRange)) )
{
mpDoc-RepaintRange(GetRange());
}

What do you think?


Implemented a correct version with  
4f901a2f451a552853c1dd38309dd55b22616fdd.


Sorry but what I see in 4f901a2f45 is the same thing as Julien pasted in  
his mail.

It rollback the good version:

$ git diff  
4f901a2f451a552853c1dd38309dd55b22616fdd..4f901a2f451a552853c1dd38309dd55b22616fdd^
diff --git a/sc/source/core/data/colorscale.cxx  
b/sc/source/core/data/colorscale.cxx

index f5d23c1..2adf507 100644
--- a/sc/source/core/data/colorscale.cxx
+++ b/sc/source/core/data/colorscale.cxx
@@ -636,8 +636,10 @@ bool NeedUpdate(ScColorScaleEntry* pEntry)

 void ScDataBarFormat::DataChanged(const ScRange rRange)
 {
-bool bNeedUpdate = NeedUpdate(mpFormatData-mpUpperLimit.get());
-bNeedUpdate |= NeedUpdate(mpFormatData-mpLowerLimit.get());
+bool bNeedUpdate = false;
+
+bNeedUpdate = NeedUpdate(mpFormatData-mpUpperLimit.get());
+bNeedUpdate = NeedUpdate(mpFormatData-mpLowerLimit.get());

 bNeedUpdate = GetRange().Intersects(rRange);

Could you check if I missed something ?

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


Re: Question about sc/source/core/data/colorscale.cxx

2012-12-15 Thread Markus Mohrhard
Hey Mat,




 Implemented a correct version with
 4f901a2f451a552853c1dd38309dd55b22616fdd.


 Sorry but what I see in 4f901a2f45 is the same thing as Julien pasted in his
 mail.
 It rollback the good version:

I don't understand your question. I changed the code to use OR in one
place and removed the cppcheck warning. Compared to Julien's version I
did not use the OR in the second place as this is result in
unnecessary update calls.


 $ git diff
 4f901a2f451a552853c1dd38309dd55b22616fdd..4f901a2f451a552853c1dd38309dd55b22616fdd^
 diff --git a/sc/source/core/data/colorscale.cxx
 b/sc/source/core/data/colorscale.cxx
 index f5d23c1..2adf507 100644
 --- a/sc/source/core/data/colorscale.cxx
 +++ b/sc/source/core/data/colorscale.cxx
 @@ -636,8 +636,10 @@ bool NeedUpdate(ScColorScaleEntry* pEntry)


  void ScDataBarFormat::DataChanged(const ScRange rRange)
  {
 -bool bNeedUpdate = NeedUpdate(mpFormatData-mpUpperLimit.get());
 -bNeedUpdate |= NeedUpdate(mpFormatData-mpLowerLimit.get());
 +bool bNeedUpdate = false;
 +
 +bNeedUpdate = NeedUpdate(mpFormatData-mpUpperLimit.get());
 +bNeedUpdate = NeedUpdate(mpFormatData-mpLowerLimit.get());

  bNeedUpdate = GetRange().Intersects(rRange);

 Could you check if I missed something ?


Maybe your confusion comes from using ^ at the wrong place. Try git
diff 
4f901a2f451a552853c1dd38309dd55b22616fdd^..4f901a2f451a552853c1dd38309dd55b22616fdd

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


[PUSHED] postprocess: convert to gbuild

2012-12-15 Thread Fridrich Strba (via Code Review)
Hi,

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

If you are interested in details, please visit

https://gerrit.libreoffice.org/1080

Approvals:
  Fridrich Strba: Verified; Looks good to me, approved


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

Gerrit-MessageType: merged
Gerrit-Change-Id: I6c81fa0f1b8d7273541d5d9883b5fc96a5091bbd
Gerrit-PatchSet: 5
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Matúš Kukan matus.ku...@gmail.com
Gerrit-Reviewer: Fridrich Strba fridr...@documentfoundation.org
Gerrit-Reviewer: Matúš Kukan matus.ku...@gmail.com
Gerrit-Reviewer: Michael Stahl mst...@redhat.com
Gerrit-Reviewer: Peter Foley jpfol...@gmail.com
Gerrit-Reviewer: Peter Foley pefol...@verizon.net

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


[Bug 54157] LibreOffice 3.7/4.0 most annoying bugs

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

Jean-Baptiste Faure jbf.fa...@sud-ouest.org changed:

   What|Removed |Added

 Depends on||58284

--- Comment #50 from Jean-Baptiste Faure jbf.fa...@sud-ouest.org ---
I nominate bug 58284 ( UI: Number dropdown list in Tools  Outline Numbering is
empty) as this regression make Outline numbering impossible.

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


Re: Question about sc/source/core/data/colorscale.cxx

2012-12-15 Thread Mat M
Le Sat, 15 Dec 2012 21:43:41 +0100, Markus Mohrhard  
markus.mohrh...@googlemail.com a écrit:



Hey Mat,


[...]


Maybe your confusion comes from using ^ at the wrong place. Try git
diff  
4f901a2f451a552853c1dd38309dd55b22616fdd^..4f901a2f451a552853c1dd38309dd55b22616fdd


Dammit!  Git should know it and fix it by himself! :)


Regards,
Markus


Thanks for clarification of my fuzzy brain

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


[Libreoffice-commits] .: sc/source

2012-12-15 Thread Libreoffice Gerrit user
 sc/source/filter/oox/formulabase.cxx |   19 ---
 1 file changed, 8 insertions(+), 11 deletions(-)

New commits:
commit 9a0bc6d06e30377d2ddf05bf5975dc8c850c8f97
Author: Eike Rathke er...@redhat.com
Date:   Sat Dec 15 23:29:35 2012 +0100

add missing *IFS pieces to Excel filter

These were omitted in ba950a50b0d0863e18ef781214eaaff9a8684790 because
oox/source/xls/formulabase.cxx was moved to
source/filter/oox/formulabase.cxx

AVERAGEIF, AVERAGEIFS, COUNTIFS, SUMIFS

Merged from Apache OO, parts of
http://svn.apache.org/viewvc?rev=1381452view=rev
Original Apache OO committer: Andrew Rist ar...@apache.org

Original Author: Daniel Rentz [dr] daniel.re...@oracle.com
Original Committer: Daniel Rentz [dr] daniel.re...@oracle.com

 # HG changeset patch
 # User Daniel Rentz [dr] daniel.re...@oracle.com
 # Date 1299664669 -3600
 # Node ID 89feb2fb2947d76a15e2de8bc1def1edf20e4f88
 # Parent  1bf6d73db8a4ee709aa4d9d9d827efafc9c611d2

Change-Id: I0756e1da4aa2acaefb86b5813e047b2768c192a1

diff --git a/sc/source/filter/oox/formulabase.cxx 
b/sc/source/filter/oox/formulabase.cxx
index 1a946ee..e7060ce 100644
--- a/sc/source/filter/oox/formulabase.cxx
+++ b/sc/source/filter/oox/formulabase.cxx
@@ -712,10 +712,10 @@ static const FunctionData saFuncTableOox[] =
 { 0,CUBESET,  478,NOID,   2,  5, 
 V, { VR, RX, VR }, 0 },
 { 0,CUBESETCOUNT, 479,NOID,   1,  1, 
 V, { VR }, 0 },
 { 0,IFERROR,  480,NOID,   2,  2, 
 V, { VO, RO }, 0 },
-{ 0,COUNTIFS, 481,NOID,   2,  
MX, V, { RO, VR }, FUNCFLAG_PARAMPAIRS },
-{ 0,SUMIFS,   482,NOID,   3,  
MX, V, { RO, RO, VR }, FUNCFLAG_PARAMPAIRS },
-{ 0,AVERAGEIF,483,NOID,   2,  3, 
 V, { RO, VR, RO }, 0 },
-{ 0,AVERAGEIFS,   484,NOID,   3,  
MX, V, { RO, RO, VR }, FUNCFLAG_PARAMPAIRS }
+{ COUNTIFS,   COUNTIFS, 481,NOID,   2,  
MX, V, { RO, VR }, FUNCFLAG_MACROCALL | FUNCFLAG_PARAMPAIRS },
+{ SUMIFS, SUMIFS,   482,NOID,   3,  
MX, V, { RO, RO, VR }, FUNCFLAG_MACROCALL | FUNCFLAG_PARAMPAIRS },
+{ AVERAGEIF,  AVERAGEIF,483,NOID,   2,  3, 
 V, { RO, VR, RO }, FUNCFLAG_MACROCALL },
+{ AVERAGEIFS, AVERAGEIFS,   484,NOID,   3,  
MX, V, { RO, RO, VR }, FUNCFLAG_MACROCALL | FUNCFLAG_PARAMPAIRS }
 };
 
 /** Functions defined by OpenFormula, but not supported by Calc or by Excel. */
@@ -776,8 +776,6 @@ FunctionParamInfoIterator::FunctionParamInfoIterator( const 
FunctionInfo rFuncI
 mpParamInfoEnd( rFuncInfo.mpParamInfos + FUNCINFO_PARAMINFOCOUNT ),
 mbParamPairs( rFuncInfo.mbParamPairs )
 {
-OSL_ENSURE( !mbParamPairs || (mpParamInfo + 1  mpParamInfoEnd),
-FunctionParamInfoIterator::FunctionParamInfoIterator - expecting at 
least 2 infos for paired parameters );
 }
 
 bool FunctionParamInfoIterator::isCalcOnlyParam() const
@@ -797,12 +795,12 @@ FunctionParamInfoIterator 
FunctionParamInfoIterator::operator++()
 // move pointer to next entry, if something explicit follows
 if( (mpParamInfo + 1  mpParamInfoEnd)  (mpParamInfo[ 1 ].meValid != 
FUNC_PARAM_NONE) )
 ++mpParamInfo;
-// points to last info, but parameter pairs expected, move to previous 
info
-else if( mbParamPairs )
---mpParamInfo;
 // if last parameter type is 'Excel-only' or 'Calc-only', do not 
repeat it
 else if( isExcelOnlyParam() || isCalcOnlyParam() )
 mpParamInfo = 0;
+// points to last info, but parameter pairs expected, move to previous 
info
+else if( mbParamPairs )
+--mpParamInfo;
 // otherwise: repeat last parameter class
 }
 return *this;
@@ -867,8 +865,7 @@ FunctionProviderImpl::FunctionProviderImpl( FilterType 
eFilter, BiffType eBiff,
 initFuncs( saFuncTableBiff5, STATIC_ARRAY_END( saFuncTableBiff5 ), 
nMaxParam, bImportFilter );
 if( eBiff = BIFF8 )
 initFuncs( saFuncTableBiff8, STATIC_ARRAY_END( saFuncTableBiff8 ), 
nMaxParam, bImportFilter );
-if( eFilter == FILTER_OOXML )
-initFuncs( saFuncTableOox, STATIC_ARRAY_END( saFuncTableOox ), 
nMaxParam, bImportFilter );
+initFuncs( saFuncTableOox, STATIC_ARRAY_END( saFuncTableOox ), nMaxParam, 
bImportFilter );
 initFuncs( saFuncTableOdf, STATIC_ARRAY_END( saFuncTableOdf ), nMaxParam, 
bImportFilter );
 }
 
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[PATCH] add script to regenerate pch files

2012-12-15 Thread Peter Foley (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1350

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/50/1350/1

add script to regenerate pch files

based on a script by Lubos Lunak
(http://article.gmane.org/gmane.comp.documentfoundation.libreoffice.devel/40210)

Change-Id: Ib32de8be8a57b3b430f4b5b298b7f417e5a02ccb
---
M sal/Library_sal.mk
A solenv/bin/update_pch.sh
M xmloff/Library_xo.mk
R xmloff/inc/pch/precompiled_xo.cxx
R xmloff/inc/pch/precompiled_xo.hxx
5 files changed, 98 insertions(+), 2 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib32de8be8a57b3b430f4b5b298b7f417e5a02ccb
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Peter Foley pefol...@verizon.net

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


[Libreoffice-commits] .: sc/source

2012-12-15 Thread Libreoffice Gerrit user
 sc/source/ui/view/cellsh.cxx |9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

New commits:
commit 63e10bf2383d22a5b3fafd95a688c2389f0076bc
Author: Eike Rathke er...@redhat.com
Date:   Sat Dec 15 23:42:45 2012 +0100

check conditions before checking for matrix fragment

Was omitted in ab0096ed68cdc08906f518d3499a8e1afc5ba80c

Change-Id: If3e1c141f02751ca7e6104ba21c246926fca843d

diff --git a/sc/source/ui/view/cellsh.cxx b/sc/source/ui/view/cellsh.cxx
index 6fbe22d..72c8be3 100644
--- a/sc/source/ui/view/cellsh.cxx
+++ b/sc/source/ui/view/cellsh.cxx
@@ -150,15 +150,18 @@ void ScCellShell::GetBlockState( SfxItemSet rSet )
 case FID_FILL_TO_RIGHT: // fill to left / right
 {
 bDisable = !bSimpleArea || (nCol1 == 0  nCol2 == 0);
-bDisable = pDoc-HasSelectedBlockMatrixFragment(
-nCol1, nRow1, nCol1, nRow2, rMark );// first column
+if ( !bDisable  bEditable )
+{   // do not damage matrix
+bDisable = pDoc-HasSelectedBlockMatrixFragment(
+nCol1, nRow1, nCol1, nRow2, rMark );// first 
column
+}
 }
 break;
 case FID_FILL_TO_LEFT:
 {
 bDisable = (!bSimpleArea) || (nCol1 == MAXCOL  nCol2 == 
MAXCOL);
 if ( !bDisable  bEditable )
-{   // Matrix nicht zerreissen
+{   // do not damage matrix
 bDisable = pDoc-HasSelectedBlockMatrixFragment(
 nCol2, nRow1, nCol2, nRow2, rMark );// last column
 }
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: Question about sc/source/ui/view/cellsh.cxx

2012-12-15 Thread Eike Rathke
Hi julien2412,

On Saturday, 2012-12-15 01:30:04 -0800, julien2412 wrote:

 Either first bDisable is useless or the result of it should be used for the
 next line?

Indeed, that's missing a condition like in the other cases.
http://cgit.freedesktop.org/libreoffice/core/commit/?id=63e10bf2383d22a5b3fafd95a688c2389f0076bc
http://cgit.freedesktop.org/libreoffice/core/commit/?h=libreoffice-4-0id=789ec89fceb949eee482ecb7731a3d7b1ac0660e

Thanks for noticing

  Eike

-- 
LibreOffice Calc developer. Number formatter stricken i18n transpositionizer.
GnuPG key 0x293C05FD : 997A 4C60 CE41 0149 0DB3  9E96 2F1A D073 293C 05FD
Support the FSFE, care about Free Software! https://fsfe.org/support/?erack


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


Re: additional calc functions produce warnings

2012-12-15 Thread Eike Rathke
Hi tino,

On Friday, 2012-12-14 22:22:40 +, tino wrote:

  Now I can see them with that obvious tip. Resource
  RID_PRICING_DEFFUNCTION_NAME is empty in
  scaddins/source/pricing/pricing.src
 
 Ah yes, thanks for that. I left that empty because I assumed this was
 optional and I didn't understand the point of it. It seemed something
 to do with translating function names (the other add-ins only
 contain a German translation and again the English version).

These were originally meant to be able to load Excel documents that for
some time were stored with localized function names (awkward silly
approach doomed to fail). Check for places in Calc code that call
GetExcelName() or GetCompNames() or getCompatibilityNames()

See also
http://api.libreoffice.org/docs/common/ref/com/sun/star/sheet/XCompatibilityNames.html
http://api.libreoffice.org/docs/common/ref/com/sun/star/sheet/LocalizedName.html

 In any case, the attached diff will get rid of the warnings. Don't
 know if it's ok to leave ItemList empty,

I'm not sure about that.. would need digging through all functions
mentioned above and their calls. Better at least have the en-US entry in
there.

 but at least no warnings are
 printed, except for
 
  core/sfx2/source/control/dispatch.cxx:1477: Childwindow slot missing!
 
 which I guess is unrelated.

That's something different.

  Eike

-- 
LibreOffice Calc developer. Number formatter stricken i18n transpositionizer.
GnuPG key 0x293C05FD : 997A 4C60 CE41 0149 0DB3  9E96 2F1A D073 293C 05FD
Support the FSFE, care about Free Software! https://fsfe.org/support/?erack


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


[Libreoffice-commits] .: postprocess/CustomTarget_config.mk

2012-12-15 Thread Libreoffice Gerrit user
 postprocess/CustomTarget_config.mk |3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit 3bbe79eef841ae4a756593557641e32fa28c0184
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Sun Dec 16 01:14:38 2012 +0100

postprocess: execute packconfig.pl inside postprocess/packconfig directory

Change-Id: I2af8ab42eacdd1db7dfc6758c72fcd500b237ebc

diff --git a/postprocess/CustomTarget_config.mk 
b/postprocess/CustomTarget_config.mk
index f7b4744..284a43a 100644
--- a/postprocess/CustomTarget_config.mk
+++ b/postprocess/CustomTarget_config.mk
@@ -17,6 +17,7 @@ $(eval $(call 
gb_CustomTarget_register_targets,postprocess/config,\
 
 $(call gb_CustomTarget_get_workdir,postprocess/config)/uiconfig.zip : 
$(SRCDIR)/postprocess/packconfig/packconfig.pl
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),PRL,2)
-   $(PERL) $ -i $(OUTDIR)/xml/uiconfig -o $(dir $@)
+   cd $(SRCDIR)/postprocess/packconfig \
+$(PERL) packconfig.pl -i $(OUTDIR)/xml/uiconfig -o $(dir $@)
 
 # vim: set noet sw=4 ts=4:
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [REVIEW 3-6] fix for fdo#56742 , ScRangeList::UpdateReference does not handle URM_COPY

2012-12-15 Thread Eike Rathke
Hi Markus,

On Saturday, 2012-12-15 15:28:49 +0100, Markus Mohrhard wrote:

 [1] fixes [2] which is more or less a problem in
 ScRangeList::UpdateReference but we can't safely change it as there
 might be some users that rely on this behavior. So we just map
 URM_COPY to URM_MOVE which does the right thing in our case too.

Hmm.. sure it doesn't introduce unwanted side effects?
When copying from one sheet to another, previously all relative
references where then relative to the new position with same offsets.
With the change relative references moved along with the range still
do this, but references pointing outside that range now still point to
the old position instead of the new relative position.

Note: I didn't try, just making this up from what I know about
  reference handling so far..


  Eike

-- 
LibreOffice Calc developer. Number formatter stricken i18n transpositionizer.
GnuPG key 0x293C05FD : 997A 4C60 CE41 0149 0DB3  9E96 2F1A D073 293C 05FD
Support the FSFE, care about Free Software! https://fsfe.org/support/?erack


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


Re: [REVIEW 3-6] fix for fdo#56742 , ScRangeList::UpdateReference does not handle URM_COPY

2012-12-15 Thread Markus Mohrhard
Hey Eike,


 [1] fixes [2] which is more or less a problem in
 ScRangeList::UpdateReference but we can't safely change it as there
 might be some users that rely on this behavior. So we just map
 URM_COPY to URM_MOVE which does the right thing in our case too.

 Hmm.. sure it doesn't introduce unwanted side effects?
 When copying from one sheet to another, previously all relative
 references where then relative to the new position with same offsets.
 With the change relative references moved along with the range still
 do this, but references pointing outside that range now still point to
 the old position instead of the new relative position.

 Note: I didn't try, just making this up from what I know about
   reference handling so far..


I'm only using URM_MOVE to update references inside a ScRangeList
which just contains a vector of ScRange entries. Since ScRange does
not contain a notion of relative or absolute references this is a safe
change,

Two lines later where I call UpdateReference for the entries which
might contain formulas I still use the original URM_* netry.

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


[PATCH] Added Digital signature widgets .ui

2012-12-15 Thread gokul s (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1351

To pull it, you can do:

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

Added Digital signature widgets .ui

Change-Id: Ide3a4f97ff229edc6c1cab8f62a66b43c33439d1
---
A sw/uiconfig/swriter/ui/digitalsignature.ui
A sw/uiconfig/swriter/ui/selectcertificate.ui
2 files changed, 432 insertions(+), 0 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ide3a4f97ff229edc6c1cab8f62a66b43c33439d1
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: gokul s gswaminat...@kacst.edu.sa

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


[Libreoffice-qa] Impress bug

2012-12-15 Thread Karl Leo

Dear friends,
I have recently switched from Windows to Linux and, sadly, the programme 
which might force me (a very frequent presenter) back to Windows will be 
Libreoffice Impress - for two reasons:

a) it crashes way too often...
b) It has a nasty bug which makes it for me as employee of the 
Fraunhofer society (Germany's largest research organization with over 
20.000 employees) difficult to work with: It cannot even render the logo 
of the Fraunhofer society correctly (see enclosed file)


I am therefore really happy that many volunteers try to improve LO 4.0. 
I could not contribute so far because on my computer (thinkpad T400s 
with Ubuntu 12.04.1), LO 4.0.0 crashes at startup...
Therefore, I am not sure if the mentioned bug has been fixed, if so; I 
apologize.


Keep up your great work and thanks a lot!

Best regards
Karl


--
...
Prof. Dr. Karl Leo
Institut fuer Angewandte Photophysik, Technische Universitaet Dresden, 01062 
Dresden, Germany
and
Fraunhofer Research Institution for Organics, Materials and Electronic Devices 
COMEDD,
01109 Dresden, Germany
ph: +49-351-463-37533 or mobile: +49-175-540-7893 (answering machine)
Fax: +49-351-463-37065
Institute Web pages: http://www.iapp.de and http://www.comedd.fraunhofer.de
Personal Web page: http://www.iapp.de/~leo
...
Study the Future: Organic and Molecular Electronics Master Program
www.tu-dresden.de/physik/ome
...
Visit http://www.oes-net.de, Europe's leading organics cluster
...



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

[Libreoffice-qa] Ferias em Serra Negra

2012-12-15 Thread CHALÉ SERRA NEGRA

Seu cliente de e-mail não pode ler este e-mail.
Para visualizá-lo on-line, por favor, clique aqui:
http://www.lexyplus.com/display.php?M=4845910C=60fa413c42f6defc1638448478b4785dS=185L=145N=3


Para parar de receber nossos
Emails:http://www.lexyplus.com/unsubscribe.php?M=4845910C=60fa413c42f6defc1638448478b4785dL=145N=185
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-qa] clearing hyperlink in LibreOffice writer

2012-12-15 Thread Chris Darwin
I'm testing 4.0 beta on Mac OSX 10.6.8  with English (UK) addition.

I cannot clear an internet  hyperlink from text using the hyperlink dialogue.  
If I clear the URL and then press Apply, nothing happens. The link remains in 
the text.

Using Clear Direct Formatting doesn't clear the link either.

Chris Darwin
=
Professor Chris Darwin
40 Hove Street
Hove   BN3 2DH
01273-202799
c...@cantab.net
www.lifesci.sussex.ac.uk/home/Chris_Darwin/
=





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

Re: [Libreoffice-qa] Impress bug

2012-12-15 Thread Rob Snelders
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Karl,

I tested your presentation here with 4.0-beta1 on Ubuntu. But it
rendered correctly. So it seems the problem doesn't exist anymore with
4.0.

- --
Greetings,
Rob Snelders

Op 15-12-12 19:33, Karl Leo schreef:
 Dear Cor, thanks for your help! Maybe I created some confusion
 here. The file Libre_graphics_bug.odt attached does open well on
 my computer (Thinkpad t400s, 4GB, Ubuntu 12.04, LO 3.6.4.3). 
 However, the Fraunhofer logo is rendered incorrectly (upper graph
 in Logo_problem.png). The correct rendering is the one shown as
 lower graph in that file. I could not test it on 4.0 myself
 because on my computer I use at work, LO 4.0 crashed at startup, I
 do not have access to it over the weekend. What I wanted to achieve
 with my posting is to help others find out whether this (for me
 very annoying bug) is solved in 4.0, and if I understand your and
 Dan's mail correctly, it is fixed... Hope I am right... Best
 regards Karl
 
 
 
 
 On 15.12.2012 15:12, Cor Nouws wrote:
 Dear Karl,
 
 Thanks for writing and your information!
 
 Karl Leo wrote (15-12-12 12:43)
 
 [...] It cannot even render the logo of the Fraunhofer society
 correctly (see enclosed file)
 
 The file opens perfect for me on Ubuntu 12:04 and LibreOffice
 4.0.0 beta1.
 
 I could not contribute so far because on my computer (thinkpad
 T400s with Ubuntu 12.04.1), LO 4.0.0 crashes at startup...
 
 Then maybe we can help you? How did you install it? Would you be
 able to remove the user profile for 4.0 and start again?
 
 Kind regards,
 
 Cor
 
 
 
 
 
 ___ List Name:
 Libreoffice-qa mailing list Mail address:
 Libreoffice-qa@lists.freedesktop.org Change settings:
 http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa 
 Problems?
 http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/

 
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
 List archive:
 http://lists.freedesktop.org/archives/libreoffice-qa/
 
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.11 (GNU/Linux)
Comment: Using GnuPG with undefined - http://www.enigmail.net/

iQEcBAEBAgAGBQJQzMNXAAoJEGs78UIq7mKyhDAIAMR84Ax9pe3+JLPDwWXESJnk
WuTBe4cu5Sa54LS0c8pMcwyGszaziFSb3/02zNLJ3T/jaEBloljpq+1jHS6uUBH8
cWN6U+wDK1Ch/bNfDiKRcpQmXma5Kn9SOHIgzUXP6YZC114YgdebgeJ6r+mHHjqq
FNUesyBsJ0bUXVO07VHgoKaRcVmW+LniTmBdONR8TH3jStput9rZJGkRatX+UaTi
5ODu72mGOxN1h0XLXtrv6B73fO8eoK+c0BICaSmJ4R8Cr7IsMpzHRZgi5ut6vlMj
oE728CDihQFaefY24D+WbNci77+xpEG5c/9LFlaU7qq8/1gOHa77UwjtALItwQk=
=nw+/
-END PGP SIGNATURE-
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


Re: [Libreoffice-qa] Blocker Bug Reported Against 4 - Windows Custom Install Fails

2012-12-15 Thread Pedro
Hi Joel

I'm running Windows XP without Dotnet 4.0 and installed LibreOffice 4.0
Beta1 without any problems.

In my system I have Dotnet 2.0SP2, 3.0SP2 and 3.5SP1

Maybe it's not a Dotnet 4.0 problem?

Cheers,
Pedro



--
View this message in context: 
http://nabble.documentfoundation.org/Libreoffice-qa-Blocker-Bug-Reported-Against-4-Windows-Custom-Install-Fails-tp4024302p4024558.html
Sent from the QA mailing list archive at Nabble.com.
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/


Re: [Libreoffice-qa] Blocker Bug Reported Against 4 - Windows Custom Install Fails

2012-12-15 Thread Andras Timar
Hi,

On Fri, Dec 14, 2012 at 7:29 AM, Joel Madero jmadero@gmail.com wrote:
 Hi All,

 This is an urgent one as we are starting our test week, can someone with
 Windows see if they can reproduce:

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

 If we can, we'll have to come up with a plan as it may prevent a lot of
 users from participating in our marathon test week.


We run a ,NET check during install, and if the required version of
.NET is not installed, then we silently do not install CLI URE bridge.
The problem that people see, that we require .NET 2.0 in installer,
while the assemblies in fact require .NET 4.0. It is still under
discussion how to solve the situation. But for testers there is an
easy workaround. Well, there are two.

1. Install .NET 4.0.
-- OR --
2. Install LibreOffice from the command line:
msiexec /i LibO-Dev_4.0.0.0.beta1_Win_x86_install_multi.msi
REQUIRED_DOTNET_VERSION=4.0.0.0

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


Re: [Libreoffice-qa] Impress bug

2012-12-15 Thread Dan Lewis
 Yes, I'm believe it is fixed. I opened the presentation using LO 
3.6.4.3 and got the same logo that you did. It did mess it up that is 
for sure. LO 4.0 Beta shows the logo as it should be; LO 3.6.4.3 does not.


--Dan

On 12/15/2012 01:33 PM, Karl Leo wrote:

Dear Cor,
thanks for your help! Maybe I created some confusion here. The file 
Libre_graphics_bug.odt attached does open well on my computer 
(Thinkpad t400s, 4GB, Ubuntu 12.04, LO 3.6.4.3).
However, the Fraunhofer logo is rendered incorrectly (upper graph in 
Logo_problem.png). The correct rendering is the one shown as lower 
graph in that file.
I could not test it on 4.0 myself  because on my computer I use at 
work, LO 4.0 crashed at startup, I do not have access to it over the 
weekend.
What I wanted to achieve with my posting is to help others find out 
whether this (for me very annoying bug) is solved in 4.0, and if I 
understand your and Dan's mail correctly, it is fixed... Hope I am 
right...

Best regards
Karl




On 15.12.2012 15:12, Cor Nouws wrote:

Dear Karl,

Thanks for writing and your information!

Karl Leo wrote (15-12-12 12:43)


[...] It cannot even render the logo
of the Fraunhofer society correctly (see enclosed file)


The file opens perfect for me on Ubuntu 12:04 and LibreOffice 4.0.0 
beta1.



I could not contribute so far because on my computer (thinkpad T400s
with Ubuntu 12.04.1), LO 4.0.0 crashes at startup...


Then maybe we can help you?
How did you install it?
Would you be able to remove the user profile for 4.0 and start again?

Kind regards,

Cor






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


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

Re: [Libreoffice-qa] Impress bug

2012-12-15 Thread Michael Meeks
Hi Karl,

On Sat, 2012-12-15 at 19:18 +0100, Karl Leo wrote:
 could not try it on 4.0 because I could not get 4.0 started)

This is the bug to tackle first I think.

Can you do:

mv ~/.config/libreoffice ~/.config/was-libreoffice

and then try to start it again. If that succeeds we'll need the
was-libreoffice directory in a bug report (a v. useful report). If it
fails - then we'll need an strace -f -s 256 -o /tmp/slog writer # which
will log to /tmp/slog - and then we'd want the trace. Really the best
thing to do is to do this via bugzilla, please CC me on the bug
though :-)

Thanks !

Michael.


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

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


[Libreoffice-qa] JERRY SU与您共享了照片

2012-12-15 Thread JERRY SU

DEAR SIR

WE ARE SORRY TO DISTURB YOU

attached is DJ light equipment products such as LED moving head light,  
laser light and strobe light, effect light


WE HAVE DEVELOPED ONE NEWEST BIG POWER LED MOVING HEAD LIGHTING, SEE THE  
PICTURES!!


if you are interest, let us know

tks

jerry SU

WWW.NIGHTSUN-LIGHTING.COM
attachment: 60w spot and beam.jpg___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

Re: [Libreoffice-qa] Fwd: Re: [tdf-discuss] LibreOffice 4.0 Test Marathon

2012-12-15 Thread oprea.l...@gmail.com

Hi,

I could not type anything into MozTrap because I focused on coordinating 
activities in Romania - 
http://tableta.ceata.org/p/Maraton_de_testare_de_LibreOffice_4.0_la_Ceata
But for those who want to test may use and populate the files available 
online at


 * Test LibreOffice Launcher -
   
https://docs.google.com/spreadsheet/ccc?key=0At9lOM8_6gsLdEhwOWJ5WkprLW90T09RZWw1ZkFBSkE#gid=0
 * Test Writer LibreOffice -
   
https://docs.google.com/spreadsheet/ccc?key=0At9lOM8_6gsLdDliQV9YQjhiWFFrTW53SDhqUWVZbVE#gid=0
 * Test Calc LibreOffice -
   
https://docs.google.com/spreadsheet/ccc?key=0At9lOM8_6gsLdE0xRllDNGd1QWpOR25tZnk2UkI2aFE#gid=0
 * Test Impress LibreOffice -
   
https://docs.google.com/spreadsheet/ccc?key=0At9lOM8_6gsLdGdtb2h1V0Z5U2lXS29mMEQyaXIxdGc#gid=0
 * Test LibreOffice Base -
   
https://docs.google.com/spreadsheet/ccc?key=0At9lOM8_6gsLdEpOQXViNW9leVBjeEZjc09TUTlCZlE#gid=0
 * Test LibreOffice Math -
   
https://docs.google.com/spreadsheet/ccc?key=0At9lOM8_6gsLdC1RcWROZnZkbS02VjNFbzN6cExhUGc#gid=0
 * Test LIbreOffice other -
   
https://docs.google.com/spreadsheet/ccc?key=0At9lOM8_6gsLdEtKYjkzcW5Ua2lvVmJxLVp1TU9JOXc#gid=0

and obtained scenarios will be introduced in future tests MozTrap.

If you agree, should be popularized these links. I will monitor the work.

Lucian,

-
Lucian Oprea
Telefon: 0745 592602
Comunitatea openSUSE Romania - http://suseromania.ro
Comunitatea LibreOffice Romania - http://libreoffice.ro

Pe 13.12.2012 04:50, Yi Fan Jiang a scris:

Hi Lucian,

On Thu, Dec 13, 2012 at 03:17:10AM +0200, oprea.l...@gmail.com wrote:
 Hi Yifan,

 In MozTrap seems easy to work (there are a few things you need to
 understand).

It's wonderful you feel it is easy to work with :)

 Until then, we have created here 
https://docs.google.com/spreadsheet/ccc?key=0At9lOM8_6gsLdEhwOWJ5WkprLW90T09RZWw1ZkFBSkE

 # gid = 0 several test scenarios (we went from something I found on
 the wiki).
 I think we created enough test scenariosfor Luncher LibreOffice .
 Please see and bring observations if necessary.

Thanks, they look good, and I guess many items were covered by existed 
Moztrap

test cases.

I saw a bunch of different launch scenario, which is nice. But in 
Moztrap they
could be classified to be 2-3 test cases for easy and neat navigating, 
then
detaching each of the rows in the gdocs to different steps in a 
Moztrap test

case.

 Unfortunately, it's a lot of work and time does not allow me to
 complete this work in a few days alone.

The first step merging of these test cases to Moztrap need not to be
perfect. Please feel free to copy and paste. I really hope
you can smoothly try to employ  Moztrap as much as possible this time.

The only 2 tiny problems need to be concern are avoiding duplication 
and merging

some rows of cases with similar subjects to one single test case.

Meanwhile, we will definitely find a way to work this out before 16 
Dec :) How
about point the QA people to Moztrap, which simply having a 4.0 
testing run

based on existed cases. Together referring to your gdoc link for further
testing. In that case, QA may naturally filter out those duplicated 
ones at

this time.

Nice things of adapting Moztrap for manual testing benifits to all of 
people
is we can share the testing results among each other, the bugs found 
can be
attached to a test case, more over no duplication effort will be 
conducted in

Moztrap. And more ...

 Propose that future TDF to support a group of tests to ensure the
 quality LibreOffice. I'd be happy to take care of this activity.

It would be great if you are gonna be part of this!

Best wishes,
Yifan

--
  Yifan Jiang
  Libreoffice / SUSE
  Contact: yifan - irc.freenode.net/libreoffice
  =
  http://www.libreoffice.org/
  http://www.documentfoundation.org/




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

Re: [Libreoffice-qa] Impress bug

2012-12-15 Thread dE .

On 12/16/12 01:00, Dan Lewis wrote:
 Yes, I'm believe it is fixed. I opened the presentation using LO 
3.6.4.3 and got the same logo that you did. It did mess it up that is 
for sure. LO 4.0 Beta shows the logo as it should be; LO 3.6.4.3 does not.


--Dan


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

Re: [Libreoffice-qa] clearing hyperlink in LibreOffice writer

2012-12-15 Thread dE .

On 12/15/12 22:09, Chris Darwin wrote:

I'm testing 4.0 beta on Mac OSX 10.6.8  with English (UK) addition.

I cannot clear an internet  hyperlink from text using the hyperlink 
dialogue.  If I clear the URL and then press Apply, nothing happens. 
The link remains in the text.


Using Clear Direct Formatting doesn't clear the link either.

Chris Darwin
=
Professor Chris Darwin
40 Hove Street
Hove   BN3 2DH
01273-202799
c...@cantab.net mailto:c...@cantab.net
www.lifesci.sussex.ac.uk/home/Chris_Darwin/
=



Right click on the link and 'remove hyperlink'

As a tip, use paste special to past unformatted text copied from various 
sources with formatting.
___
List Name: Libreoffice-qa mailing list
Mail address: Libreoffice-qa@lists.freedesktop.org
Change settings: http://lists.freedesktop.org/mailman/listinfo/libreoffice-qa
Problems? http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
List archive: http://lists.freedesktop.org/archives/libreoffice-qa/

[Libreoffice-bugs] [Bug 57332] LibreOffice changes hyperlinks when opening files

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

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

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de, serval2...@yahoo.fr

--- Comment #1 from Julien Nabet serval2...@yahoo.fr ---
Rainer: dup of fdo#58069? (https://bugs.freedesktop.org/show_bug.cgi?id=58069)
or just similar problems?

-- 
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 58069] FILESAVE in different path structure destroys relative hyperlinks

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

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

   What|Removed |Added

 OS|Windows (All)   |All

--- Comment #4 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
Modified OS due to Comment 3

-- 
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 58310] FILEOPEN Crash when opening this simple docx file

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

Miklos Vajna vmik...@suse.cz changed:

   What|Removed |Added

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

--- Comment #8 from Miklos Vajna vmik...@suse.cz ---


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

-- 
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 58309] Import document with lots of VML shapes crashes

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

Miklos Vajna vmik...@suse.cz changed:

   What|Removed |Added

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

--- Comment #7 from Miklos Vajna vmik...@suse.cz ---


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

-- 
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 48097] FILEOPEN: wrong formating of MS Word document from brreg.no

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

mar...@kotsbak.com changed:

   What|Removed |Added

Version|3.3.4 release   |3.6.2.1 rc

-- 
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 57332] LibreOffice changes hyperlinks when opening files

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
@Julien:
Thank you for the hint. In Bug 58069 I explicitly excluded Writer, and that one
is concerning saving documents in different folders; this one only concerning
some general editing.

I doubt that both reports are concerning the same problem. 
Reporter's description is much too imprecise even to see whether we really have
a bug  here or whether reporter only misunderstands the hyperlink viewing in
LibO

@Blake:
Thank you for your report – unfortunately important information is missing.
May be hints on http://wiki.documentfoundation.org/BugReport will help you to
find out what information will be useful to reproduce your problem? If you
believe that that  is really sophisticated please as for Help on a user mailing
list
Please:
- Write a meaningful Summary describing exactly what the problem is
- Attach a sample document (not only screenshot) or refer to an existing 
  sample document in an other Bug with a link; to attach a file to this 
  bug report, just click on Add an attachment right on this page.
- Attach screenshots with comments if you believe that that might explain the 
  problem better than a text comment. Best way is to insert your screenshots
  into a DRAW document and to add comments that explain what you want to show
  (attachment 68877, attachment 68490)
- Contribute a document related step by step instruction containing every 
  key press and every mouse click how to reproduce your problem 
  (similar to example in Bug 43431)
– if possible contribute an instruction how to create a sample document 
  from the scratch
- add information 
  -- what EXACTLY is unexpected
  Libreoffice changes ... is nothing we can try to reproduce. We need 
  a clear description like In HTML soucre text before ... i see , 
  but after  ... I see yyy
  -- and WHY do you believe it's unexpected (cite Help or Documentation!)
  –- Libo settings that might be related to your problems 
(Menu 'Tools - Options - Load/Save)
  -- how you launch LibO and how you opened the sample document
  -- everything else crossing your mind after you read linked texts

-- 
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 58324] VIEWING: In Libreoffice 4.0 Beta1, Writer fail to find other fonts for displaying unicode characters.

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

--- Comment #3 from Urmas davian...@gmail.com ---
Could some developer close it as NOTABUG?

-- 
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 48097] FILEOPEN: wrong formating of MS Word document from brreg.no

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

sasha.libreoff...@gmail.com changed:

   What|Removed |Added

Version|3.6.2.1 rc  |3.3.4 release

--- Comment #5 from sasha.libreoff...@gmail.com ---
Thanks for additional testing.
Version is most early version of LO where bug reproducible. Not a current
version. If bug disappears, we just close it.
Changing back to 3.3.4 as most early reproduced

-- 
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 58290] png not included in right table cell

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

Miklos Vajna vmik...@suse.cz changed:

   What|Removed |Added

   Assignee|libreoffice-b...@lists.free |vmik...@suse.cz
   |desktop.org |

-- 
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 58063] VIEWING: Problem opening .doc 97-2003 files

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

Joren De Cuyper joren.libreoff...@telenet.be changed:

   What|Removed |Added

 CC||joren.libreoffice@telenet.b
   ||e

--- Comment #1 from Joren De Cuyper joren.libreoff...@telenet.be ---
Thanks for your time filling this form!

Is it possible to add your created document also as an attachment? Not all
testers have an iOS-'machine', and especially not an app (Pages).

What was the content of the document shown in thz screenshots?
Is this bug also reproducable with an easy document with only a word/text
withoutmarkup?

Thanks in advance

-- 
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 58325] New: UI Gay font chooser dialog design

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

  Priority: medium
Bug ID: 58325
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: UI Gay font chooser dialog design
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: davian...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.0.0.0.alpha0+ Master
 Component: Writer
   Product: LibreOffice

Font tab of Character Format dialog has a warning label about TrueType/screen
fonts. It is not clear which font it does refer to (there is three lists of
fonts and each one can have several semicolon-separated alternatives listed.) 
Stop copying Microsoft design slavishly.

-- 
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 58129] FILESAVE: Generic problem of exporting ppt file.

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

--- Comment #2 from chefche...@gmx.de ---
this bug is a duplicate of Bug 58097

-- 
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 58323] [Task]: LibO OLE objects interoperability issues

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

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

   What|Removed |Added

 CC||LibreOffice@bielefeldundbus
   ||s.de
 Depends on||44838

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
I add Bug 44838 - FORMATTING: Position, size, word wrap wrong for WRITER OLE
Object in CALC

-- 
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 44838] FORMATTING: Position, size, word wrap wrong for WRITER OLE Object in CALC

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

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

   What|Removed |Added

 Blocks||58323

-- 
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 57857] FILEOPEN: Opens a Word document as empty

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

Urmas davian...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #2 from Urmas davian...@gmail.com ---
Document is opened fine in 4.0, but it has a portrait orientation, instead of a
landscape one in original.

-- 
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 49386] PRINTING: Printing: text documents with mixed portrait and landscape

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

--- Comment #1 from ydutri...@gmail.com ---
Created attachment 71538
  -- https://bugs.freedesktop.org/attachment.cgi?id=71538action=edit
Document with page 6 restored and page format : left-to-right.

document wich need to be tested.

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


[Libreoffice-bugs] [Bug 49386] PRINTING: Printing: text documents with mixed portrait and landscape

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

ydutri...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from ydutri...@gmail.com ---
Hi simon,

I have tested your doc and i see that in page 5, there is some texte behind
right margins ?? 
This text could be restored to a new page if I place my cursor on the top of it
and force a new page.

After that I have a page 6 that contains this text.
I see that page format in page 5 was page-vis-a-vis behind the tray selector.
I have changed it to left-to-right for page 5-6.

Can you check this new document 71538 just sended before ?
and let you know if the problem is solved ?

Regards.
Yves

Libo V4.0Beta
Ubuntu 64Bits

-- 
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 58323] [Task]: LibO OLE objects interoperability issues

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

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

   What|Removed |Added

 Depends on||48409

--- Comment #2 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
I add Bug 48409 - FILEOPEN LibO 3.3 documents shows Writer OLE object contents
shifted right / down in object after edit of object because of page border
issue 

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


[Libreoffice-bugs] [Bug 58327] New: Pasting special some cells As RTF from Calc into Writer does not work

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

  Priority: medium
Bug ID: 58327
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Pasting special some cells As RTF from Calc into
Writer does not work
  Severity: normal
Classification: Unclassified
OS: Mac OS X (All)
  Reporter: b...@eikota.de
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.0.0.0.beta1
 Component: Libreoffice
   Product: LibreOffice

This is some kind of follow-up to bug 43869 - “Paste special as RTF inserted at
wrong position, undo stack damaged”.

I wanted to verify that bug 43869 is completely fixed, without any unwanted
side-effects. However, when I repeat Rainer’s steps from
  https://bugs.freedesktop.org/show_bug.cgi?id=43869#c2
with the current 4.0.0beta1 [1], I still do not get not what one would expect:

 1. Start LibO
 Start Center appears
 2. Open new Calc document with click on New Spreadsheet
 3. fill 'A1:A5' with a
 4. Select / Highlicht A1:A5 
 5. control+c for Copy
 6. Menu 'File - New - WRITER document'
 7. Click into new Writer document, type 5 times enter, then xxx
 8. 2 times arrowup
 9. Long click on Paste toolbar icon
 10. select As RTF'
 Expected: 5 rows a inserted
 Actual: xxx deleted as reported, some things else (very quick)

I still see a problem: *nothing* is pasted (no “5 rows ‘a’ inserted).
Of course, this is a big progress as compared to bug 43869 -- the “xxx” are not
deleted, the page format is not changed, and the undo stack is not damaged.
But pasting “As RTF” still does not work ...

Of course, this is very probably a different bug, therefore I have opened this
new bug report (instead of opening bug 43869 again).

Tests done on Mac OS X 10.6.8 (Intel).


[1] Full version information:
LOdev 4.0.0.0.beta1 (Build ID: 87906242e87d3ddb2ba9827818f2d1416d80cc7)
TinderBox: MacOSX TDF Release, Branch:libreoffice-4-0,
Time: 2012-12-05_22:13:37
I have installed the German langpack for that version.
*No* extensions installed (only the bundled ones).

-- 
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 58327] Pasting special some cells As RTF from Calc into Writer does not work

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

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

 Whiteboard||rtf_filter

-- 
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 49553] undefined: unabled to Printing envelop ordinary DL on HP Laserjet 1200 (regression from 3.5.2.2)

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

ydutri...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from ydutri...@gmail.com ---
Hi Christian,

I have reproduced this too with my config. To restore language, can you start
this printer admin in Libo folder program :
/opt/lodev4.0/program/spadmin
for me

In property of your printer, you should be able to select the correct behaviour
of language. And then settings will be permanent.

nb: you should perhaps (check or not) CUPS settings on the first page of this
program (me it's not checked).

Can you test this and let us know if this resolve your problem ?
Regards.
Yves

Ubuntu 64Bits - Libo 4.0b1

-- 
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 56760] FILESAVE: docx file save picture position problem

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

Joren De Cuyper joren.libreoff...@telenet.be changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 CC||joren.libreoffice@telenet.b
   ||e
 Ever confirmed|0   |1

--- Comment #1 from Joren De Cuyper joren.libreoff...@telenet.be ---
Thanks for reporting this bug.

How did you insert the image in that document? By 'Paste Special' or 'Past'
(normally as cmd+v) from your Firefox (I see you use firefox)? If yes, what
firefox version?

I'm asking this, because this could be related to bug fdo#52547

I can confirm this behavior with LO Version 4.0.0.0.beta1 (Build-id:
87906242e87d3ddb2ba9827818f2d1416d80cc7)
TinderBox: MacOSX TDF Release, Branch:libreoffice-4-0, Time:
2012-12-05_22:13:37;
Mac OSX 10.8.2

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


[Libreoffice-bugs] [Bug 58156] mysqlc does not build --with-lang=ALL

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

Andras Timar tima...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |tima...@gmail.com
   |desktop.org |

-- 
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 58145] Windows installer is not localized

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

Andras Timar tima...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED
   Assignee|libreoffice-b...@lists.free |tima...@gmail.com
   |desktop.org |

-- 
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 56760] FILESAVE: docx file save picture position problem

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

--- Comment #2 from Joren De Cuyper joren.libreoff...@telenet.be ---
https://bugs.freedesktop.org/show_bug.cgi?id=52547

-- 
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 58328] New: : FILESAVE REGRESSION Creating a new document version no longer working

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

  Priority: medium
Bug ID: 58328
  Keywords: regression
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: : FILESAVE REGRESSION Creating a new document version
no longer working
  Severity: normal
Classification: Unclassified
OS: Mac OS X (All)
  Reporter: flor...@florian-heckl.de
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 4.0.0.0.beta1
 Component: Libreoffice
   Product: LibreOffice

Problem description: 
Creating a new document version does not work

Steps to reproduce:
1. Create a file (text, calc, type doesn't really matter)
2. Save the file
3. Select File  Versions... from the menu
4. Click on Save new version
5. Enter a comment
6. Click OK

Current behavior:
The Comment dialog is closed, but no version is created (at least not visible
to the user)

Expected behavior:
A new entry appears in the Existing versions panel

Works OK in version3.6.4.3 

Operating System: Mac OS X
Last worked in: 3.6.4.3 release

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


[Libreoffice-bugs] [Bug 58328] : FILESAVE REGRESSION Creating a new document version no longer working

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

Florian Heckl flor...@florian-heckl.de changed:

   What|Removed |Added

 Whiteboard|BSA |BSA regression

-- 
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 58090] FORMATTING: Table shifts left when save docx

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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

-- 
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 58177] EDITING: Complete crash due to Duden plugin when right mouse button clicked on OLE objects and images

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

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

 CC||ipla...@yahoo.co.uk,
   ||nthieb...@gmail.com,
   ||tlillqv...@suse.com

--- Comment #8 from Roman Eisele b...@eikota.de ---
(In reply to comment #7)
 somebody with a Mac should do an --enable-dbgutil build (which does not use
 -fno-enforce-eh-specs) and then try to reproduce the problem; if you get the
 same stack then one of 1) 2) 3) is happening, while if you get terminate
 directly in LO code then it is 4)

But who can do this? I can’t, sorry ;-( So CCing some people who can (IIRC)
build LibO with --enable-dbgutil on Mac OS X ...


@ Tor Lillqvist,
@ Alex Thurgood,
@ Norbert Thiebaud,
@ all:
Can anyone of you build LibO on Mac OS X with --enable-dbgutil enabled,
and do the check proposed by Michael Stahl?

Seems that we can not get any progress here without such a test,
so any help would be very much appreciated ...
and this issue is important, of course (the Duden plugin is one of the most
important commercial extensions for LibreOffice/OOo).

Thank you very much!

-- 
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 57989] Writer Tables

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

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

  Attachment #71219|text/plain  |application/vnd.oasis.opend
  mime type||ocument.text

-- 
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 57989] Writer Tables

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

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

  Attachment #71139|0   |1
is obsolete||

-- 
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 58239] FILEOPEN: Importing docx document gives wrong checkbox placement and page break

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

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

-- 
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 58329] New: Using the GTK Unicode entry shortcut (ctrl+shift+u) does not function properly

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

  Priority: medium
Bug ID: 58329
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Using the GTK Unicode entry shortcut (ctrl+shift+u)
does not function properly
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: samuel.stu...@gmail.com
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 3.6.4.3 release
 Component: Libreoffice
   Product: LibreOffice

Typically, one would hit the shortcut, release all keys in the shortcut, and
then proceed to type the Unicode hexadecimal pointer and then press either
space or return for the sequence to be converted into the specified character.
This bug, however, causes a problem, such that, if the user does not continue
holding the control and the shift keys while typing the hexadecimal pointer,
the underlined u indicating Unicode entry becomes a plain-text u, and the
Unicode entry is stopped.

My locale variables are all correctly set for en_US.UTF-8. I am running the
most recent versions of LibreOffice and the OpenJDK. I have allowed libreoffice
to generate a new .config directory to see if some config file had been the
cause of the issue, but it persists. I only have four extensions installed, and
it appears as though the bug remains even after having disabled them all.

Of all my gtk applications, LibreOffice (all components) is the only one to
exhibit this behavior I have found so far.

-- 
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 58330] New: EDITING: Selecting text in formula bar sends LODev into spinning beachball land

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

  Priority: medium
Bug ID: 58330
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: EDITING: Selecting text in formula bar sends LODev
into spinning beachball land
  Severity: blocker
Classification: Unclassified
OS: Mac OS X (All)
  Reporter: libreoffice@cheasy.de
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.0.0.0.beta1
 Component: Spreadsheet
   Product: LibreOffice

1. Enter text (Anything) into any cell
2. Select another cell
3. Select first cell
4. lick text in formula bar
= Spinning beachball cursor appears, LODev hangs

-- 
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 58331] New: Fatal error during startup

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

  Priority: medium
Bug ID: 58331
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Fatal error during startup
  Severity: blocker
Classification: Unclassified
OS: Windows (All)
  Reporter: davian...@gmail.com
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.0.0.0.beta1
 Component: framework
   Product: LibreOffice

The Beta1 version cannot be launched:

LOdev 4.0 - Fatal Error

Unable to launch the application. 
Cannot determine the media type:
vnd.sun.star.expand:$UNO_USER_PACKAGES_CACHE/uno_packages/lu15aprv.tmp_/SNIPPED.zip/description.xml

-- 
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 58332] New: [DE] [UI]: Help text appears as File menu entry

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

  Priority: medium
Bug ID: 58332
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: [DE] [UI]: Help text appears as File menu entry
  Severity: normal
Classification: Unclassified
OS: Mac OS X (All)
  Reporter: libreoffice@cheasy.de
  Hardware: x86-64 (AMD64)
Status: UNCONFIRMED
   Version: 4.0.0.0.beta1
 Component: UI
   Product: LibreOffice

German Langpack
The Help text for Menu items
  File - Save all
and 
  File - Check out
appears as menu item, rendering the menu wider than most screens.

-- 
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 57989] Writer Tables

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

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

 CC||b...@eikota.de

--- Comment #4 from Roman Eisele b...@eikota.de ---
@ Fco/Franz:
 It is the first time I am using LO (Writer) and I really start loving this
 programme. Unfortunately I have a critical problem.

Which version of LibreOffice do you use? To see the exact version,
please start LibreOffice and select “About LibreOffice” (“Über LibreOffice”)
from the menu “LibreOffice”; or just locate LibreOffice in the Finder and press
Command+I to get the Finder’s information window for the LibreOffice
application ...

[Greetings from Brackenheim, not far from Heilbronn ;-)]

-- 
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 58294] undefined: certain font crashes writer and calc

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

--- Comment #4 from Jean-Paul Maley jeanpaul.ma...@gmail.com ---
It is a font from Siemens: Solid Edge. Its propriety CAD software so i don't
know if i can provide it. I'll ask my software provider.

-- 
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 58333] New: EDITING: hidden characters das not work

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

  Priority: medium
Bug ID: 58333
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: EDITING: hidden characters das not work
  Severity: normal
Classification: Unclassified
OS: Mac OS X (All)
  Reporter: biagio...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 3.6.4.3 release
 Component: Writer
   Product: LibreOffice

Problem description: 

althogh I select show hidden characters I don't see spaces, tab  CR and ather
That happens only for the Italian Version for MacOsX, the same version 
(3.6.4.3) on W7 works fine
Steps to reproduce:
1. 
2. 
3. 

Current behavior:

Expected behavior:


Operating System: Mac OS X

-- 
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 46061] FORMATTING: Paragraph initial tab stop cannot be filled in hanging-indented paragraphs

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

ydutri...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEEDINFO
 Ever confirmed|0   |1

--- Comment #2 from ydutri...@gmail.com ---
Hi,

tested Sasha solution and this work on Ubuntu 64bits - Libo4.0b1

@Tommi,
can you confirm that it works for you too ?

Yves.

-- 
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 58328] FILESAVE: Creating a new document version no longer working

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

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

   Hardware|Other   |x86-64 (AMD64)
 Status|UNCONFIRMED |NEW
 Whiteboard|BSA regression  |BSA
 CC||b...@eikota.de
Summary|: FILESAVE REGRESSION   |FILESAVE: Creating a new
   |Creating a new document |document version no longer
   |version no longer working   |working
 Ever confirmed|0   |1

--- Comment #1 from Roman Eisele b...@eikota.de ---
Thank you very much for your bug report!

REPRODUCIBLE with 4.0.0beta1 [*], German langpack installed, on Mac OS X 10.6.8
(Intel). Following the steps 1-6 given in comment #0,
* Expected: LibreOffice shows a new line in the “Existing versions”
  list box, just like LibreOffice up to 3.6.4.3 does
* Actual result: the “Existing versions” list box is still empty.
  Repeating steps 4-6 does not change this.

Of course, LibreOffice 4.0.0beta1 still shows the versions created in earlier
versions. But adding new versions to such existing files does not work either.

(Removed triple “regression” keyword -- one is enought ;-); and the most
important is the one in the “Keywords” field.)


[*] Full version information:
Version 4.0.0.0.beta1 (Build ID: 87906242e87d3ddb2ba9827818f2d1416d80cc7)
TinderBox: MacOSX TDF Release, Branch:libreoffice-4-0, Time:
2012-12-05_22:13:37

-- 
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 54157] LibreOffice 3.7/4.0 most annoying bugs

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

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

 Depends on||58328

--- Comment #49 from Roman Eisele b...@eikota.de ---
I add bug 58328 - “FILESAVE: Creating a new document version no longer
working”.

An important regression, makes the versions feature completely useless.
Reported and confirmed on Mac OS X, please test on other platforms ...

-- 
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 58328] FILESAVE: Creating a new document version no longer working

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

Roman Eisele b...@eikota.de changed:

   What|Removed |Added

 Blocks||54157

-- 
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 55974] Crash during closing of an Impress file

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

--- Comment #14 from Michael Meeks michael.me...@novell.com ---
The valgrind traces are brilliant - I guess they show that we're
double-deleting a load of data (for some reason) after the false-positives from
Java this one looks like the first sign of real badness with a quick scan:

==7216== Invalid write of size 8
==7216==at 0x2D5341F1: ScrollBar::SetScrollHdl(Link const)
(scrbar.hxx:138)
==7216==by 0x2D717101:
sd::slidesorter::controller::ScrollBarManager::Disconnect()
(SlsScrollBarManager.cxx:108)
==7216==by 0x2D73AFDE: sd::slidesorter::SlideSorter::ReleaseListeners()
(SlideSorter.cxx:395)
==7216==by 0x2D73A79C: sd::slidesorter::SlideSorter::~SlideSorter()
(SlideSorter.cxx:218)
==7216==by 0x2D73AAD9: sd::slidesorter::SlideSorter::~SlideSorter()
(SlideSorter.cxx:246)
==7216==by 0x2D73CF1D: void
boost::checked_deletesd::slidesorter::SlideSorter(sd::slidesorter::SlideSorter*)
(checked_delete.hpp:34)

I guess it is another symptom of VCL's horrific lack of sane lifecycle handling
(somehow) - that this SlideSorter object -looks- like it keeps references to
VCL widgets with some naive: ::boost::shared_ptrScrollBar
mpVerticalScrollBar;

It's unclear to me that those guys are going to get NULL'd properly when some
other code-path destroys the whole window hierarchy and makes those pointer
invalid.

-- 
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 55974] Crash during closing of an Impress file

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

--- Comment #15 from Michael Meeks michael.me...@novell.com ---
The widgets are deleted by this (fairly obvious) recursive delete on the
top-level.

==7216==at 0x4C279DC: operator delete(void*) (vg_replace_malloc.c:457)
==7216==by 0xA0FA2AB: ScrollBar::~ScrollBar() (scrbar.cxx:157)
==7216==by 0x8E1F1D3: VCLXDevice::DestroyOutputDevice() (vclxdevice.cxx:56)
==7216==by 0x8E66F69: VCLXWindow::dispose() (vclxwindow.cxx:957)
==7216==by 0x8E8C28B: VCLXScrollBar::dispose() (vclxwindows.cxx:3365)
==7216==by 0x9001D30: UnoWrapper::WindowDestroyed(Window*)
(unowrapper.cxx:263)
==7216==by 0xA56F779: Window::~Window() (window.cxx:4329)
==7216==by 0xA51EFEB: SystemWindow::~SystemWindow() (syswin.cxx:85)
==7216==by 0xA598248: WorkWindow::~WorkWindow() (wrkwin.cxx:142)
==7216==by 0xA59829B: WorkWindow::~WorkWindow() (wrkwin.cxx:150)
==7216==by 0x2D5FCC0B: void boost::checked_deleteWorkWindow(WorkWindow*)
(checked_delete.hpp:34)
==7216==by 0x2D5FF541:
boost::detail::sp_counted_impl_pWorkWindow::dispose()
(sp_counted_impl.hpp:78)
==7216==by 0x2D3EA43B: boost::detail::sp_counted_base::release()
(sp_counted_base_gcc_x86.hpp:145)
==7216==by 0x2D3EA4CA: boost::detail::shared_count::~shared_count()
(shared_count.hpp:217)
==7216==by 0x2D5F98FB: boost::shared_ptrWindow::~shared_ptr()
(shared_ptr.hpp:168)
==7216==by 0x2D5F6AF0: sd::framework::BasicViewFactory::~BasicViewFactory()
(BasicViewFactory.cxx:143)
==7216==by 0x2D5F6BD1: sd::framework::BasicViewFactory::~BasicViewFactory()
(BasicViewFactory.cxx:145)


Somehow we need to add a 'dispose' method to the SlideSorter (I guess) and
ensure that the top-level impress window is calling dispose on it's child
SlideSorter object, and that that is called first (I guess).

What a horror :-) and all because VCL doesn't use a sane reference-counting
lifecycle model.

-- 
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 57760] FORMATTING: enregistrement

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

Markus Mohrhard markus.mohrh...@googlemail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |INVALID

--- Comment #1 from Markus Mohrhard markus.mohrh...@googlemail.com ---
Please write a bug report in english.

-- 
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 58217] EDITING: Bad time calc

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

Markus Mohrhard markus.mohrh...@googlemail.com changed:

   What|Removed |Added

   Keywords|regression  |

-- 
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 58328] FILESAVE: Creating a new document version no longer working

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

--- Comment #2 from Roman Eisele b...@eikota.de ---
Checking my little collection of daily builds gives the following results:
* The version feature still works up to the daily build with
  pull time 2012-10-30 00.06.37
* But it fails, as described, beginning with the daily build with
  pull time 2012-11-02 23.47.02
So, if I have not made any mistake, the regression was introduced between these
two dates. I hope this is a fairly limited count of commits to check ...

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


  1   2   3   >