About fdo#58451 (Base crash when Execute report with a empty database)

2012-12-23 Thread julien2412
Hello,

The cause of this tracker has been found. Since Noel can't intervene before
a week (see https://bugs.freedesktop.org/show_bug.cgi?id=58451#c18), would
anybody have some time to take a look at this?

Julien 



--
View this message in context: 
http://nabble.documentfoundation.org/About-fdo-58451-Base-crash-when-Execute-report-with-a-empty-database-tp4025905.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


[PATCH] Remove duplicate code from PresenterToolBar.cxx

2012-12-23 Thread Faisal al-otaibi (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1474

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/74/1474/1

Remove duplicate code from PresenterToolBar.cxx

Change-Id: Icd6f71ce2daa896494c8efe76779d49e16c547bf
---
M sdext/source/presenter/PresenterToolBar.cxx
1 file changed, 40 insertions(+), 120 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Icd6f71ce2daa896494c8efe76779d49e16c547bf
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Faisal al-otaibi fmalota...@kacst.edu.sa

___
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-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54157

Bug 54157 depends on bug 57026, which changed state.

Bug 57026 Summary: FILEOPEN particular .docx shows all text frames filling 
complete page size and more
https://bugs.freedesktop.org/show_bug.cgi?id=57026

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

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


[PATCH] fdo#56098 Paste Special options after cut incorrect

2012-12-23 Thread Winfried Donkers (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1475

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/75/1475/1

fdo#56098 Paste Special options after cut incorrect

Change-Id: Ib196cf88905de8f8e7488c14964dfd7a56236356
---
M helpcontent2
M sc/source/ui/view/cellsh1.cxx
2 files changed, 5 insertions(+), 8 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ib196cf88905de8f8e7488c14964dfd7a56236356
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Winfried Donkers o...@dci-electronics.nl

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


[Libreoffice-commits] .: icu/icu4c-buffer-overflow.patch icu/makefile.mk

2012-12-23 Thread Libreoffice Gerrit user
 icu/icu4c-buffer-overflow.patch |   29 +
 icu/makefile.mk |1 +
 2 files changed, 30 insertions(+)

New commits:
commit 80af815ce0e4453a1960c39aaa8ebb4f5e412136
Author: Tomáš Chvátal tchva...@suse.cz
Date:   Sun Dec 23 13:21:27 2012 +0100

Add icu patch to avoid buffer overflow, taken from obs

Change-Id: I42ae81279fedca04b7ba08269a6c47f174cf6b01

diff --git a/icu/icu4c-buffer-overflow.patch b/icu/icu4c-buffer-overflow.patch
new file mode 100644
index 000..1f3d2ca
--- /dev/null
+++ b/icu/icu4c-buffer-overflow.patch
@@ -0,0 +1,29 @@
+I: Statement might be overflowing a buffer in strncat. Common mistake:
+   BAD: strncat(buffer,charptr,sizeof(buffer)) is wrong, it takes the left 
over size as 3rd argument
+   GOOD: strncat(buffer,charptr,sizeof(buffer)-strlen(buffer)-1)
+E: icu bufferoverflowstrncat pkgdata.cpp:299:87
+
+---
+ source/tools/pkgdata/pkgdata.cpp |6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+Index: icu/source/tools/pkgdata/pkgdata.cpp
+===
+--- icu.orig/source/tools/pkgdata/pkgdata.cpp
 icu/source/tools/pkgdata/pkgdata.cpp
+@@ -1914,12 +1914,12 @@ static void loadLists(UPKGOptions *o, UE
+ const char cmd[] = icu-config --incpkgdatafile;
+ 
+ /* #1 try the same path where pkgdata was called from. */
+-findDirname(progname, cmdBuf, 1024, status);
++findDirname(progname, cmdBuf, sizeof(cmdBuf), status);
+ if(U_SUCCESS(status)) {
+   if (cmdBuf[0] != 0) {
+-  uprv_strncat(cmdBuf, U_FILE_SEP_STRING, 1024);
++  uprv_strncat(cmdBuf, U_FILE_SEP_STRING, 
sizeof(cmdBuf)-1-strlen(cmdBuf));
+   }
+-  uprv_strncat(cmdBuf, cmd, 1024);
++  uprv_strncat(cmdBuf, cmd, sizeof(cmdBuf)-1-strlen(cmdBuf));
+   
+   if(verbose) {
+ fprintf(stdout, # Calling icu-config: %s\n, cmdBuf);
diff --git a/icu/makefile.mk b/icu/makefile.mk
index 2d50a24..5494fa5 100644
--- a/icu/makefile.mk
+++ b/icu/makefile.mk
@@ -57,6 +57,7 @@ PATCH_FILES=\
 icu4c-macosx.patch \
 icu4c-solarisgcc.patch \
 icu4c-mkdir.patch \
+icu4c-buffer-overflow.patch \
 
 .IF $(OS)==ANDROID
 PATCH_FILES+=\
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-4-0' - 3 commits - config_host.mk.in configure.ac i18npool/CustomTarget_breakiterator.mk icu/icu4c-buffer-overflow.patch icu/makefile.mk officecfg/prj

2012-12-23 Thread Libreoffice Gerrit user
 config_host.mk.in  |1 -
 configure.ac   |   11 ++-
 i18npool/CustomTarget_breakiterator.mk |2 +-
 icu/icu4c-buffer-overflow.patch|   29 +
 icu/makefile.mk|1 +
 officecfg/prj/build.lst|2 +-
 6 files changed, 34 insertions(+), 12 deletions(-)

New commits:
commit 343a92f18cb4069acca547d455fcbd9ce42815e1
Author: Tomáš Chvátal tchva...@suse.cz
Date:   Thu Dec 20 15:35:29 2012 +0100

Require icu 4.6 or later with system icu

Change-Id: I8c0da25a000e10d65479665a61be054fdb2486a5
Reviewed-on: https://gerrit.libreoffice.org/1453
Reviewed-by: David Tardon dtar...@redhat.com
Tested-by: Tomáš Chvátal tchva...@suse.cz

diff --git a/config_host.mk.in b/config_host.mk.in
index 4bab5d6..6ffd0fe 100644
--- a/config_host.mk.in
+++ b/config_host.mk.in
@@ -247,7 +247,6 @@ export ICECREAM_RUN=@ICECREAM_RUN@
 export ICU_MAJOR=@ICU_MAJOR@
 export ICU_MICRO=@ICU_MICRO@
 export ICU_MINOR=@ICU_MINOR@
-export ICU_RECLASSIFIED_CLOSE_PARENTHESIS=@ICU_RECLASSIFIED_CLOSE_PARENTHESIS@
 export 
ICU_RECLASSIFIED_CONDITIONAL_JAPANESE_STARTER=@ICU_RECLASSIFIED_CONDITIONAL_JAPANESE_STARTER@
 export ICU_RECLASSIFIED_HEBREW_LETTER=@ICU_RECLASSIFIED_HEBREW_LETTER@
 export ICU_RECLASSIFIED_PREPEND_SET_EMPTY=@ICU_RECLASSIFIED_PREPEND_SET_EMPTY@
diff --git a/configure.ac b/configure.ac
index 064a2e9..b028e39 100644
--- a/configure.ac
+++ b/configure.ac
@@ -8109,7 +8109,6 @@ SYSTEM_GENCMN=
 ICU_MAJOR=49
 ICU_MINOR=1
 ICU_MICRO=1
-ICU_RECLASSIFIED_CLOSE_PARENTHESIS=YES
 ICU_RECLASSIFIED_PREPEND_SET_EMPTY=YES
 ICU_RECLASSIFIED_CONDITIONAL_JAPANESE_STARTER=YES
 ICU_RECLASSIFIED_HEBREW_LETTER=YES
@@ -8134,10 +8133,10 @@ if test $with_system_icu = yes; then
 ICU_MINOR=`echo $ICU_VERSION | cut -d. -f2`
 ICU_MICRO=`echo $ICU_VERSION | cut -d. -f3`
 
-if test $ICU_MAJOR -ge 4; then
+if test $ICU_MAJOR -ge 49 -o \( $ICU_MAJOR = 4 -a $ICU_MINOR -ge 
6 \); then
 AC_MSG_RESULT([OK, $ICU_VERSION])
 else
-AC_MSG_ERROR([not suitable, only = 4.0 supported currently])
+AC_MSG_ERROR([not suitable, only = 4.6 supported currently])
 fi
 
 if test $cross_compiling = yes -a \( $with_system_icu_for_build = 
yes -o $with_system_icu_for_build = force \); then
@@ -8172,11 +8171,6 @@ You can use --with-system-icu-for-build=force to use it 
anyway.])
 if test -z $SYSTEM_GENCMN; then
 AC_MSG_ERROR([\'gencmn\' not found in \$PATH, install the icu 
development tool \'gencmn\'])
 fi
-if test $ICU_MAJOR -ge 49 -o \( $ICU_MAJOR = 4 -a $ICU_MINOR 
-ge 4 \); then
-ICU_RECLASSIFIED_CLOSE_PARENTHESIS=YES
-else
-ICU_RECLASSIFIED_CLOSE_PARENTHESIS=NO
-fi
 if test $ICU_MAJOR -ge 49; then
 ICU_RECLASSIFIED_PREPEND_SET_EMPTY=YES
 else
@@ -8203,7 +8197,6 @@ AC_SUBST(SYSTEM_GENCMN)
 AC_SUBST(ICU_MAJOR)
 AC_SUBST(ICU_MINOR)
 AC_SUBST(ICU_MICRO)
-AC_SUBST(ICU_RECLASSIFIED_CLOSE_PARENTHESIS)
 AC_SUBST([ICU_RECLASSIFIED_CONDITIONAL_JAPANESE_STARTER])
 AC_SUBST([ICU_RECLASSIFIED_HEBREW_LETTER])
 AC_SUBST(ICU_RECLASSIFIED_PREPEND_SET_EMPTY)
diff --git a/i18npool/CustomTarget_breakiterator.mk 
b/i18npool/CustomTarget_breakiterator.mk
index f7df926..f12b94c 100644
--- a/i18npool/CustomTarget_breakiterator.mk
+++ b/i18npool/CustomTarget_breakiterator.mk
@@ -121,7 +121,7 @@ $(i18npool_BIDIR)/%.brk : $(i18npool_BIDIR)/%.txt 
$(i18npool_GENBRKTARGET)
 $(i18npool_BIDIR)/%.txt : \
$(SRCDIR)/i18npool/source/breakiterator/data/%.txt | 
$(i18npool_BIDIR)/.dir
sed -e ': dummy' \
-   $(if $(filter YES,$(ICU_RECLASSIFIED_CLOSE_PARENTHESIS)),-e 
s#\[:LineBreak =  Close_Punctuation:\]#\[ \[:LineBreak = 
Close_Parenthesis:\]\]#) \
+   -e s#\[:LineBreak =  Close_Punctuation:\]#\[ \[:LineBreak = 
Close_Parenthesis:\]\]# \
$(if $(filter-out 
YES,$(ICU_RECLASSIFIED_CONDITIONAL_JAPANESE_STARTER)),\
-e '/\[:LineBreak =  Conditional_Japanese_Starter:\]/d' 
\
-e 's# $$CJ##' \
commit aa7b9f0da9e810ff165204d4c6a51633c177ac78
Author: Tomáš Chvátal tchva...@suse.cz
Date:   Thu Dec 20 23:53:52 2012 +0100

Require l10ntools on officecfg

Change-Id: I31f212f21f57b37b2b4f1f5dd753a4211c58bcdb

diff --git a/officecfg/prj/build.lst b/officecfg/prj/build.lst
index 8f0653a..411d267 100644
--- a/officecfg/prj/build.lst
+++ b/officecfg/prj/build.lst
@@ -1,2 +1,2 @@
-oc  officecfg   :soltools solenv LIBXSLT:libxslt NULL
+oc  officecfg   :l10ntools soltools solenv LIBXSLT:libxslt NULL
 oc  officecfg\prj nmake - all oc_prj   NULL
commit 0892ab21a71c316c801f1be7c9c0ae6603495b21
Author: Tomáš Chvátal tchva...@suse.cz
Date:   Sun Dec 23 13:21:27 2012 +0100

Add icu patch to avoid buffer overflow, taken from obs

Change-Id: I42ae81279fedca04b7ba08269a6c47f174cf6b01

diff --git 

[Bug 54157] LibreOffice 3.7/4.0 most annoying bugs

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

Bug 54157 depends on bug 55032, which changed state.

Bug 55032 Summary: CONDITIONAL FORMATTING lost in copied sheet in same document 
after close / reopen
https://bugs.freedesktop.org/show_bug.cgi?id=55032

   What|Removed |Added

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

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


[Libreoffice-commits] .: icu/icu4c-buffer-overflow.patch

2012-12-23 Thread Libreoffice Gerrit user
 icu/icu4c-buffer-overflow.patch |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 66b338b4f9fa13f69e69a8c0e8a3ea06e49fd764
Author: Tomáš Chvátal tchva...@suse.cz
Date:   Sun Dec 23 13:43:55 2012 +0100

Fix path for icu overflow patch.

Change-Id: I1befe2e2c5f8474a4af894e949c4b24e041a977b

diff --git a/icu/icu4c-buffer-overflow.patch b/icu/icu4c-buffer-overflow.patch
index 1f3d2ca..8966be8 100644
--- a/icu/icu4c-buffer-overflow.patch
+++ b/icu/icu4c-buffer-overflow.patch
@@ -9,8 +9,8 @@ E: icu bufferoverflowstrncat pkgdata.cpp:299:87
 
 Index: icu/source/tools/pkgdata/pkgdata.cpp
 ===
 icu.orig/source/tools/pkgdata/pkgdata.cpp
-+++ icu/source/tools/pkgdata/pkgdata.cpp
+--- misc/build/icu.orig/source/tools/pkgdata/pkgdata.cpp
 misc/build/icu/source/tools/pkgdata/pkgdata.cpp
 @@ -1914,12 +1914,12 @@ static void loadLists(UPKGOptions *o, UE
  const char cmd[] = icu-config --incpkgdatafile;
  
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-4-0' - icu/icu4c-buffer-overflow.patch

2012-12-23 Thread Libreoffice Gerrit user
 icu/icu4c-buffer-overflow.patch |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 1b8de5ffb509d37110b59f412e72e0c0ddde7138
Author: Tomáš Chvátal tchva...@suse.cz
Date:   Sun Dec 23 13:43:55 2012 +0100

Fix path for icu overflow patch.

Change-Id: I1befe2e2c5f8474a4af894e949c4b24e041a977b

diff --git a/icu/icu4c-buffer-overflow.patch b/icu/icu4c-buffer-overflow.patch
index 1f3d2ca..8966be8 100644
--- a/icu/icu4c-buffer-overflow.patch
+++ b/icu/icu4c-buffer-overflow.patch
@@ -9,8 +9,8 @@ E: icu bufferoverflowstrncat pkgdata.cpp:299:87
 
 Index: icu/source/tools/pkgdata/pkgdata.cpp
 ===
 icu.orig/source/tools/pkgdata/pkgdata.cpp
-+++ icu/source/tools/pkgdata/pkgdata.cpp
+--- misc/build/icu.orig/source/tools/pkgdata/pkgdata.cpp
 misc/build/icu/source/tools/pkgdata/pkgdata.cpp
 @@ -1914,12 +1914,12 @@ static void loadLists(UPKGOptions *o, UE
  const char cmd[] = icu-config --incpkgdatafile;
  
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [libreoffice-l10n] [ANN] LibreOffice 4.0.0 Beta2 available

2012-12-23 Thread Serg Bormant
Hi,

4.0.0 Beta2 binary (rpm) can not start on Slackware64-14.0.

How  to reproduce:

1) download 
http://download.documentfoundation.org/libreoffice/testing/4.0.0/rpm/x86_64/LibO-Dev_4.0.0.0.beta2_Linux_x86-64_install-rpm_en-US.tar.gz

2) untar, remove unnecessary rpms, unpack rpms, make and install package:
# tar xf LibO-Dev_4.0.0.0.beta2_Linux_x86-64_install-rpm_en-US.tar.gz
# cd LibO-Dev_4.0.0.0.beta2_Linux_x86-64_install-rpm_en-US/RPMS
# rm *-gnome-integration-*rpm *-stdlibs-*rpm
# mv desktop-integration/*-freedesktop-*rpm .
# for FILE in *.rpm ; do rpm2cpio  $FILE | cpio -imdv ; done
# mkdir /tmp/package-lodev
# mv usr opt /tmp/package-lodev
# cd /tmp/package-lodev
# makepkg -l y -c y /tmp/lodev-4.0.0.b2-x86_64-1.txz
# upgradepkg --install-new /tmp/lodev-4.0.0.b2-x86_64-1.txz

3) start /opt/lodev4.0/program/soffice

Observed behavior: message box appears

LOdev 4.0 - Fatal Error

The application cannot be started.
loading component library failed:
file:///opt/lodev4.0/program/../program/ucpgvfs1.uno.so

OK

and application doesn't start.

After removing

component loader=com.sun.star.loader.SharedLibrary
prefix=ucpgvfs1
uri=vnd.sun.star.expand:$LO_LIB_DIR/ucpgvfs1.uno.so
 implementation name=com.sun.star.comp.GnomeVFSContentProvider
  service name=com.sun.star.ucb.GnomeVFSContentProvider/
 /implementation
/component

from /opt/lodev4.0/program/services/services.rdb and starting
/opt/lodev4.0/program/soffice again message box appears:


LOdev 4.0 - Fatal Error

The application cannot be started.
unsatisfied query for interface of type com.sun.star.ucb.XContentProvider!

OK



Expected behavior: application starts.

Any suggestions?
Thanks.

--
wbr, sb


2012/12/23 Thorsten Behrens t...@documentfoundation.org

 Dear Community,

 The Document Foundation is pleased to announce the second Beta release
 of our upcoming LibreOffice 4.0, that is feature-complete. The
 upcoming 4.0 will be our fifth major release in just over two years,
 and comes with a nice set of new features. Please be aware that
 LibreOffice 4.0 Beta2 is not ready for production use, you should
 continue to use LibreOffice 3.6.4 for that.

 For further milestones towards 4.0, please refer to our release plan
 timings here:

  http://wiki.documentfoundation.org/ReleasePlan/4.0#4.0.0_release

 The release is available for Windows, Linux and Mac OS X from our QA
 builds download page at

   http://www.libreoffice.org/download/pre-releases/

 Should you find bugs, please report them to the FreeDesktop Bugzilla:

   https://bugs.freedesktop.org

 A good way to assess the release candidate quality is to run some
 specific manual tests on it, our TCM wiki page has more details:

  
 http://wiki.documentfoundation.org/QA/Testing/Regression_Tests#Full_Regression_Test

 For other ways to get involved with this exciting project - you can
 e.g. contribute code:

   http://www.libreoffice.org/get-involved/developers/

 translate LibreOffice to your language:

   http://wiki.documentfoundation.org/LibreOffice_Localization_Guide

 or help with funding our operations:

   http://donate.libreoffice.org/

 A list of known issues and fixed bugs with 4.0.0 Beta2 is available
 from our wiki:

   http://wiki.documentfoundation.org/Releases/4.0.0/Beta2

 Let us close again with a BIG Thank You! to all of you having
 contributed to the LibreOffice project - this release would not have
 been possible without your help.

 Yours,

 The Document Foundation Board of Directors

 The Document Foundation, Zimmerstr. 69, 10117 Berlin, Germany
 Rechtsfähige Stiftung des bürgerlichen Rechts
 Legal details: http://www.documentfoundation.org/imprint

 --
 Unsubscribe instructions: E-mail to l10n+h...@global.libreoffice.org
 Problems? 
 http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
 Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
 List archive: http://listarchives.libreoffice.org/global/l10n/
 All messages sent to this list will be publicly archived and cannot be delete
___
LibreOffice mailing list
LibreOffice@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice


[PATCH] merge packimages into postprocess

2012-12-23 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1476

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/76/1476/1

merge packimages into postprocess

Change-Id: Ie00c7cbc012a605e95ceafcad384a67b599fc758
---
M Makefile.top
M RepositoryModule_ooo.mk
M android/prj/build.lst
M instsetoo_native/prj/build.lst
D packimages/Makefile
D packimages/Module_packimages.mk
D packimages/prj/build.lst
D packimages/prj/d.lst
R postprocess/CustomTarget_images.mk
M postprocess/Module_postprocess.mk
R postprocess/Package_images.mk
R postprocess/packimages/README
R postprocess/packimages/image-sort.lst
13 files changed, 16 insertions(+), 59 deletions(-)


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

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

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


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

2012-12-23 Thread Libreoffice Gerrit user
 dbaccess/source/ui/browser/brwctrlr.cxx |2 --
 dbaccess/source/ui/inc/brwctrlr.hxx |1 -
 sw/source/core/text/porexp.cxx  |2 +-
 sw/source/core/text/porexp.hxx  |1 -
 sw/source/core/text/porftn.hxx  |3 +--
 sw/source/core/text/txtftn.cxx  |7 +++
 6 files changed, 5 insertions(+), 11 deletions(-)

New commits:
commit 68aecf0dd81b6660e78e8dd758ec9431727f4f0b
Author: Matúš Kukan matus.ku...@gmail.com
Date:   Sun Dec 23 15:15:36 2012 +0100

remove unused variables [-Werror,-Wunused-private-field]

Change-Id: I3cb08dd52c5a34be6585ac9fc0c4b6bb04b6ae8c

diff --git a/dbaccess/source/ui/browser/brwctrlr.cxx 
b/dbaccess/source/ui/browser/brwctrlr.cxx
index 13b5960..f0bccc5 100644
--- a/dbaccess/source/ui/browser/brwctrlr.cxx
+++ b/dbaccess/source/ui/browser/brwctrlr.cxx
@@ -619,7 +619,6 @@ SbaXDataBrowserController::SbaXDataBrowserController(const 
Reference ::com::sun
 ,m_sStateUndoRecord(ModuleRes(RID_STR_UNDO_MODIFY_RECORD))
 ,m_sModuleIdentifier( ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM( 
com.sun.star.sdb.DataSourceBrowser ) ) )
 ,m_pFormControllerImpl(NULL)
-,m_nPendingLoadFinished(0)
 ,m_nFormActionNestingLevel(0)
 ,m_bLoadCanceled( sal_False )
 ,m_bCannotSelectUnfiltered( true )
@@ -1293,7 +1292,6 @@ void SbaXDataBrowserController::elementReplaced(const 
::com::sun::star::containe
 sal_Bool SbaXDataBrowserController::suspend(sal_Bool /*bSuspend*/) throw( 
RuntimeException )
 {
 RTL_LOGFILE_CONTEXT_AUTHOR( aLogger, dbaui, ocke.jans...@sun.com, 
SbaXDataBrowserController::suspend );
-OSL_ENSURE(m_nPendingLoadFinished == 0, 
SbaXDataBrowserController::suspend : there shouldn't be a pending load !);
 
 m_aAsyncGetCellFocus.CancelCall();
 m_aAsyncDisplayError.CancelCall();
diff --git a/dbaccess/source/ui/inc/brwctrlr.hxx 
b/dbaccess/source/ui/inc/brwctrlr.hxx
index 27df5e6..4563d97 100644
--- a/dbaccess/source/ui/inc/brwctrlr.hxx
+++ b/dbaccess/source/ui/inc/brwctrlr.hxx
@@ -111,7 +111,6 @@ namespace dbaui
 // members for asynchronous load operations
 FormControllerImpl* m_pFormControllerImpl;  // implementing the 
XFormController
 
-sal_uLong   m_nPendingLoadFinished; // the 
event used to tell ourself that the load is finished
 sal_uInt16  m_nFormActionNestingLevel;  // see 
enter-/leaveFormAction
 
 sal_Boolm_bLoadCanceled : 1;// the load 
was canceled somehow
diff --git a/sw/source/core/text/porexp.cxx b/sw/source/core/text/porexp.cxx
index 0bb0f7d..b5aa30f 100644
--- a/sw/source/core/text/porexp.cxx
+++ b/sw/source/core/text/porexp.cxx
@@ -252,7 +252,7 @@ void SwBlankPortion::HandlePortion( SwPortionHandler rPH ) 
const
  */
 
 SwPostItsPortion::SwPostItsPortion( sal_Bool bScrpt )
-: nViewWidth(0), bScript( bScrpt )
+: bScript( bScrpt )
 {
 nLineLength = 1;
 SetWhichPor( POR_POSTITS );
diff --git a/sw/source/core/text/porexp.hxx b/sw/source/core/text/porexp.hxx
index 33506bf..cb7aa02 100644
--- a/sw/source/core/text/porexp.hxx
+++ b/sw/source/core/text/porexp.hxx
@@ -79,7 +79,6 @@ public:
 
 class SwPostItsPortion : public SwExpandPortion
 {
-KSHORT  nViewWidth;
 sal_BoolbScript;
 public:
 SwPostItsPortion( sal_Bool bScrpt );
diff --git a/sw/source/core/text/porftn.hxx b/sw/source/core/text/porftn.hxx
index 75b660f..d342eb3 100644
--- a/sw/source/core/text/porftn.hxx
+++ b/sw/source/core/text/porftn.hxx
@@ -30,14 +30,13 @@ class SwTxtFtn;
 
 class SwFtnPortion : public SwFldPortion
 {
-SwTxtFrm *pFrm; // To be able to call RemoveFtn in the dtor
 SwTxtFtn *pFtn;
 KSHORT nOrigHeight;
 // #i98418#
 bool mbPreferredScriptTypeSet;
 sal_uInt8 mnPreferredScriptType;
 public:
-SwFtnPortion( const XubString rExpand, SwTxtFrm *pFrm, SwTxtFtn *pFtn,
+SwFtnPortion( const XubString rExpand, SwTxtFtn *pFtn,
   KSHORT nOrig = KSHRT_MAX );
 inline KSHORT Orig() { return nOrigHeight; }
 
diff --git a/sw/source/core/text/txtftn.cxx b/sw/source/core/text/txtftn.cxx
index 0c3f056..b4aa5ef 100644
--- a/sw/source/core/text/txtftn.cxx
+++ b/sw/source/core/text/txtftn.cxx
@@ -850,7 +850,7 @@ SwFtnPortion *SwTxtFormatter::NewFtnPortion( 
SwTxtFormatInfo rInf,
 SwDoc *pDoc = pFrm-GetNode()-GetDoc();
 
 if( rInf.IsTest() )
-return new SwFtnPortion( rFtn.GetViewNumStr( *pDoc ), pFrm, pFtn );
+return new SwFtnPortion( rFtn.GetViewNumStr( *pDoc ), pFtn );
 
 SWAP_IF_SWAPPED( pFrm )
 
@@ -970,7 +970,7 @@ SwFtnPortion *SwTxtFormatter::NewFtnPortion( 
SwTxtFormatInfo rInf,
 }
 // Endlich: FtnPortion anlegen und raus hier...
 SwFtnPortion *pRet = new SwFtnPortion( rFtn.GetViewNumStr( *pDoc ),
-pFrm, pFtn, nReal );
+   

[Libreoffice-commits] .: sw/qa writerfilter/source

2012-12-23 Thread Libreoffice Gerrit user
 sw/qa/extras/rtfimport/data/fdo58076.rtf   |5 +
 sw/qa/extras/rtfimport/rtfimport.cxx   |   12 
 writerfilter/source/rtftok/rtfdocumentimpl.cxx |6 --
 writerfilter/source/rtftok/rtfdocumentimpl.hxx |2 ++
 4 files changed, 23 insertions(+), 2 deletions(-)

New commits:
commit 07c80d23fadcc2334fe7c6f9ce7b5dafeb88d623
Author: Miklos Vajna vmik...@suse.cz
Date:   Sun Dec 23 14:37:59 2012 +0100

fdo#58076 fix import of RTF page margins vs partial section props

The problem was that \sbknone (being a section property) triggered
creating a section, but the document doesn't have multiple sections.
Make sure we don't send section properties as long as no \sect control
words present.

diff --git a/sw/qa/extras/rtfimport/data/fdo58076.rtf 
b/sw/qa/extras/rtfimport/data/fdo58076.rtf
new file mode 100644
index 000..2acbfd8
--- /dev/null
+++ b/sw/qa/extras/rtfimport/data/fdo58076.rtf
@@ -0,0 +1,5 @@
+{\rtf1
+\paperw11908\paperh16838\margl1276\margr993\margt360\margb360
+\sectd \sbknone\headery708\footery708
+\par
+}
diff --git a/sw/qa/extras/rtfimport/rtfimport.cxx 
b/sw/qa/extras/rtfimport/rtfimport.cxx
index d7390da..0d0f3af 100644
--- a/sw/qa/extras/rtfimport/rtfimport.cxx
+++ b/sw/qa/extras/rtfimport/rtfimport.cxx
@@ -130,6 +130,7 @@ public:
 void testFdo54473();
 void testFdo49934();
 void testFdo57886();
+void testFdo58076();
 
 CPPUNIT_TEST_SUITE(Test);
 #if !defined(MACOSX)  !defined(WNT)
@@ -210,6 +211,7 @@ void Test::run()
 {fdo54473.rtf, Test::testFdo54473},
 {fdo49934.rtf, Test::testFdo49934},
 {fdo57886.rtf, Test::testFdo57886},
+{fdo58076.rtf, Test::testFdo58076},
 };
 header();
 for (unsigned int i = 0; i  SAL_N_ELEMENTS(aMethods); ++i)
@@ -968,6 +970,16 @@ void Test::testFdo57886()
 CPPUNIT_ASSERT_EQUAL(OUString(int from {firstlower} to {firstupper} 
{firstbody}), getFormula(getRun(getParagraph(1), 1)));
 }
 
+void Test::testFdo58076()
+{
+// An additional section was created, so the default page style didn't 
have the custom margins.
+uno::Referencebeans::XPropertySet 
xStyle(getStyles(PageStyles)-getByName(DEFAULT_STYLE), uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL(sal_Int32(2251), getPropertysal_Int32(xStyle, 
LeftMargin));
+CPPUNIT_ASSERT_EQUAL(sal_Int32(1752), getPropertysal_Int32(xStyle, 
RightMargin));
+CPPUNIT_ASSERT_EQUAL(sal_Int32(635), getPropertysal_Int32(xStyle, 
TopMargin));
+CPPUNIT_ASSERT_EQUAL(sal_Int32(635), getPropertysal_Int32(xStyle, 
BottomMargin));
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
 
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx 
b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index da26efd..4ad99ce 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -276,7 +276,8 @@ 
RTFDocumentImpl::RTFDocumentImpl(uno::Referenceuno::XComponentContext const x
 m_bIgnoreNextContSectBreak(false),
 m_bNeedSect(true),
 m_bWasInFrame(false),
-m_bHadPicture(false)
+m_bHadPicture(false),
+m_bHadSect(false)
 {
 OSL_ASSERT(xInputStream.is());
 m_pInStream.reset(utl::UcbStreamHelper::CreateStream(xInputStream, 
sal_True));
@@ -527,7 +528,7 @@ void RTFDocumentImpl::sectBreak(bool bFinal = false)
 
 // Normally a section break at the end of the doc is necessary. Unless the
 // last control word in the document is a section break itself.
-if (!bNeedSect)
+if (!bNeedSect || !m_bHadSect)
 {
 RTFValue::Pointer_t pBreak = 
m_aStates.top().aSectionSprms.find(NS_sprm::LN_SBkc);
 // In case the last section is a continous one, we don't need to 
output a section break.
@@ -1630,6 +1631,7 @@ int RTFDocumentImpl::dispatchSymbol(RTFKeyword nKeyword)
 break;
 case RTF_SECT:
 {
+m_bHadSect = true;
 if (m_bIgnoreNextContSectBreak)
 m_bIgnoreNextContSectBreak = false;
 else
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.hxx 
b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
index 1df8de1..283faec 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.hxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
@@ -590,6 +590,8 @@ namespace writerfilter {
 bool m_bWasInFrame;
 /// A picture was seen in the current paragraph.
 bool m_bHadPicture;
+/// The document has multiple sections.
+bool m_bHadSect;
 };
 } // namespace rtftok
 } // namespace writerfilter
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-4-0' - sw/qa writerfilter/source

2012-12-23 Thread Libreoffice Gerrit user
 sw/qa/extras/rtfimport/data/fdo58076.rtf   |5 +
 sw/qa/extras/rtfimport/rtfimport.cxx   |   12 
 writerfilter/source/rtftok/rtfdocumentimpl.cxx |6 --
 writerfilter/source/rtftok/rtfdocumentimpl.hxx |2 ++
 4 files changed, 23 insertions(+), 2 deletions(-)

New commits:
commit 99894610482eb8f631083c327ca2f0310391eb23
Author: Miklos Vajna vmik...@suse.cz
Date:   Sun Dec 23 14:37:59 2012 +0100

fdo#58076 fix import of RTF page margins vs partial section props

The problem was that \sbknone (being a section property) triggered
creating a section, but the document doesn't have multiple sections.
Make sure we don't send section properties as long as no \sect control
words present.
(cherry picked from commit 07c80d23fadcc2334fe7c6f9ce7b5dafeb88d623)

diff --git a/sw/qa/extras/rtfimport/data/fdo58076.rtf 
b/sw/qa/extras/rtfimport/data/fdo58076.rtf
new file mode 100644
index 000..2acbfd8
--- /dev/null
+++ b/sw/qa/extras/rtfimport/data/fdo58076.rtf
@@ -0,0 +1,5 @@
+{\rtf1
+\paperw11908\paperh16838\margl1276\margr993\margt360\margb360
+\sectd \sbknone\headery708\footery708
+\par
+}
diff --git a/sw/qa/extras/rtfimport/rtfimport.cxx 
b/sw/qa/extras/rtfimport/rtfimport.cxx
index a2fdf22..da5794f 100644
--- a/sw/qa/extras/rtfimport/rtfimport.cxx
+++ b/sw/qa/extras/rtfimport/rtfimport.cxx
@@ -130,6 +130,7 @@ public:
 void testFdo54473();
 void testFdo49934();
 void testFdo57886();
+void testFdo58076();
 
 CPPUNIT_TEST_SUITE(Test);
 #if !defined(MACOSX)  !defined(WNT)
@@ -210,6 +211,7 @@ void Test::run()
 {fdo54473.rtf, Test::testFdo54473},
 {fdo49934.rtf, Test::testFdo49934},
 {fdo57886.rtf, Test::testFdo57886},
+{fdo58076.rtf, Test::testFdo58076},
 };
 for (unsigned int i = 0; i  SAL_N_ELEMENTS(aMethods); ++i)
 {
@@ -966,6 +968,16 @@ void Test::testFdo57886()
 CPPUNIT_ASSERT_EQUAL(OUString(int from {firstlower} to {firstupper} 
{firstbody}), getFormula(getRun(getParagraph(1), 1)));
 }
 
+void Test::testFdo58076()
+{
+// An additional section was created, so the default page style didn't 
have the custom margins.
+uno::Referencebeans::XPropertySet 
xStyle(getStyles(PageStyles)-getByName(DEFAULT_STYLE), uno::UNO_QUERY);
+CPPUNIT_ASSERT_EQUAL(sal_Int32(2251), getPropertysal_Int32(xStyle, 
LeftMargin));
+CPPUNIT_ASSERT_EQUAL(sal_Int32(1752), getPropertysal_Int32(xStyle, 
RightMargin));
+CPPUNIT_ASSERT_EQUAL(sal_Int32(635), getPropertysal_Int32(xStyle, 
TopMargin));
+CPPUNIT_ASSERT_EQUAL(sal_Int32(635), getPropertysal_Int32(xStyle, 
BottomMargin));
+}
+
 CPPUNIT_TEST_SUITE_REGISTRATION(Test);
 
 CPPUNIT_PLUGIN_IMPLEMENT();
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.cxx 
b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
index 54390ea..19b02519 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.cxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.cxx
@@ -275,7 +275,8 @@ 
RTFDocumentImpl::RTFDocumentImpl(uno::Referenceuno::XComponentContext const x
 m_bIgnoreNextContSectBreak(false),
 m_bNeedSect(true),
 m_bWasInFrame(false),
-m_bHadPicture(false)
+m_bHadPicture(false),
+m_bHadSect(false)
 {
 OSL_ASSERT(xInputStream.is());
 m_pInStream.reset(utl::UcbStreamHelper::CreateStream(xInputStream, 
sal_True));
@@ -526,7 +527,7 @@ void RTFDocumentImpl::sectBreak(bool bFinal = false)
 
 // Normally a section break at the end of the doc is necessary. Unless the
 // last control word in the document is a section break itself.
-if (!bNeedSect)
+if (!bNeedSect || !m_bHadSect)
 {
 RTFValue::Pointer_t pBreak = 
m_aStates.top().aSectionSprms.find(NS_sprm::LN_SBkc);
 // In case the last section is a continous one, we don't need to 
output a section break.
@@ -1629,6 +1630,7 @@ int RTFDocumentImpl::dispatchSymbol(RTFKeyword nKeyword)
 break;
 case RTF_SECT:
 {
+m_bHadSect = true;
 if (m_bIgnoreNextContSectBreak)
 m_bIgnoreNextContSectBreak = false;
 else
diff --git a/writerfilter/source/rtftok/rtfdocumentimpl.hxx 
b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
index 1df8de1..283faec 100644
--- a/writerfilter/source/rtftok/rtfdocumentimpl.hxx
+++ b/writerfilter/source/rtftok/rtfdocumentimpl.hxx
@@ -590,6 +590,8 @@ namespace writerfilter {
 bool m_bWasInFrame;
 /// A picture was seen in the current paragraph.
 bool m_bHadPicture;
+/// The document has multiple sections.
+bool m_bHadSect;
 };
 } // namespace rtftok
 } // namespace writerfilter
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


weird build problem with odk

2012-12-23 Thread Lior Kaplan
Hi,

I've having a weird problem on master branch where setup_native tries to
build odk and fails, but building odk manually works fine.

Anyone else has this or it just me (maybe a make clean is required? ).

Kaplan
___
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-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54157

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

   What|Removed |Added

 Depends on||58686

--- Comment #57 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
I add Bug 58686 - CRASH when edit CONDITIONAL FORMATTING

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


[PATCH] fdo#57180 add calc function NUMBERVALUE as defined in ODFF1....

2012-12-23 Thread Winfried Donkers (via Code Review)
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1477

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/77/1477/1

fdo#57180 add calc function NUMBERVALUE as defined in ODFF1.2

Change-Id: I6ee01764ae9fc27854fd3bd8a630b9d3560192e5
---
M formula/inc/formula/opcode.hxx
M helpcontent2
M sc/qa/unit/ucalc.cxx
M sc/source/core/inc/interpre.hxx
M sc/source/core/tool/interpr1.cxx
M sc/source/core/tool/interpr4.cxx
M sc/source/filter/oox/formulabase.cxx
M sc/source/ui/src/scfuncs.src
M sc/util/hidother.src
9 files changed, 155 insertions(+), 3 deletions(-)


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

Gerrit-MessageType: newchange
Gerrit-Change-Id: I6ee01764ae9fc27854fd3bd8a630b9d3560192e5
Gerrit-PatchSet: 1
Gerrit-Project: core
Gerrit-Branch: master
Gerrit-Owner: Winfried Donkers o...@dci-electronics.nl

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


[PATCH] Do not run autogen.sh if we don't want to. (for help, clean, ...

2012-12-23 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1479

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/79/1479/1

Do not run autogen.sh if we don't want to. (for help, clean, distclean)

Change-Id: Ic283ca4181fe5131a557bfb2cfd3d79ac1e9f82d
---
M Makefile.in
1 file changed, 5 insertions(+), 1 deletion(-)


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

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

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


[PATCH] merge Makefile and Makefile.top again

2012-12-23 Thread via Code Review
Hi,

I have submitted a patch for review:

https://gerrit.libreoffice.org/1478

To pull it, you can do:

git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/78/1478/1

merge Makefile and Makefile.top again

Using MAKE_RESTARTS as indicator whether to source environment.
'make foo -o bar' should work again.

Change-Id: I6086b661559b39897f1d5378919541fb786bdf0e
---
M Makefile.in
D Makefile.top
2 files changed, 395 insertions(+), 400 deletions(-)


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

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

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


Re: storing chart doc on load ?

2012-12-23 Thread Markus Mohrhard
Hey Michael,



 I was surprised to see some similar things happening with VBA streams
 on load (or at least things getting written out again). After a bit of
 thought, I assumed that one was so we could re-store the identical input
 in the output again if it was not changed: so we could round-trip
 features we didn't understand.

Yes for VBA we are doing exactly that. However in this case it is
different as we are using the ODF export filter to store the chart
document. The bug reporter comfirmed that this just moves the delay to
the opening of the sheet. I think this is preferred to doing that
during loading for all sheets. That way Calc seems to be faster even
if it is not. I suspect this has to do with the way we display chart
documents.


 Presumably the same might be useful for OLE objects, but ... I wonder
 if it interacts with Tools-Options-Load/Save-Microsoft Office in some
 useful way.

I think this is more related to how chart documents are integrated
into Calc. While not being in the edit mode we actually display a
rendered image which is normally somehow generated during export. I
suspect they added the export to trigger a recalculation of the image.
As the reporter mentions we are doing the same now but it seems to
bedelayed until the point where we actually need the chart documents.


 Either way, our whole approach to loading and converting-to-native all
 embedded OLE2 streams for charts etc. on load always seemed to me to be
 extremely curious / slow ;-) but probably I mis-understood something
 quite profoundly: I always wanted to have some time to dig through that
 to see what could be safely deferred: clearly rendering WMF previews for
 embedded charts for as long as possible would help us on load - but
 being able to edit charts is rather useful too ;-)

So IMHO the bigger problem is how chart2 is internally implemented. It
is a big chunk of uno implementation layers over each other. At some
point we need to fix the horrible performance problems that are
related with the chart2 design. The bug document shows this very good
when you try to scroll in one of the sheets with a chart document. I
think at some point we need to find some time to step by step clean
the chart2 code up and remove quite a bit of the unnecessary uno parts
in it. And of course the rendering layer in chart2 is a nightmare and
has quite a few platform specific bugs.


 All the best over Christmas etc. !


Nice Christmas to you too.

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


Re: [libreoffice-l10n] [ANN] LibreOffice 4.0.0 Beta2 available

2012-12-23 Thread Martin Srebotnjak
Hello,

is there an Android app to control Impress, now that the Remote
Control function is enabled in Impress GUI? Where can I find it to
test LO? (The pop-up window for Remote does not have a Help button,
nor do I remember any hints from Help as I translated all the strings
already and there were no links; also I cannot close that dialog on
OSX 10.7.5, so I need to file a bug for that).

Thanks, m.

2012/12/22 Thorsten Behrens t...@documentfoundation.org:
 Dear Community,

 The Document Foundation is pleased to announce the second Beta release
 of our upcoming LibreOffice 4.0, that is feature-complete. The
 upcoming 4.0 will be our fifth major release in just over two years,
 and comes with a nice set of new features. Please be aware that
 LibreOffice 4.0 Beta2 is not ready for production use, you should
 continue to use LibreOffice 3.6.4 for that.

 For further milestones towards 4.0, please refer to our release plan
 timings here:

  http://wiki.documentfoundation.org/ReleasePlan/4.0#4.0.0_release

 The release is available for Windows, Linux and Mac OS X from our QA
 builds download page at

   http://www.libreoffice.org/download/pre-releases/

 Should you find bugs, please report them to the FreeDesktop Bugzilla:

   https://bugs.freedesktop.org

 A good way to assess the release candidate quality is to run some
 specific manual tests on it, our TCM wiki page has more details:

  
 http://wiki.documentfoundation.org/QA/Testing/Regression_Tests#Full_Regression_Test

 For other ways to get involved with this exciting project - you can
 e.g. contribute code:

   http://www.libreoffice.org/get-involved/developers/

 translate LibreOffice to your language:

   http://wiki.documentfoundation.org/LibreOffice_Localization_Guide

 or help with funding our operations:

   http://donate.libreoffice.org/

 A list of known issues and fixed bugs with 4.0.0 Beta2 is available
 from our wiki:

   http://wiki.documentfoundation.org/Releases/4.0.0/Beta2

 Let us close again with a BIG Thank You! to all of you having
 contributed to the LibreOffice project - this release would not have
 been possible without your help.

 Yours,

 The Document Foundation Board of Directors

 The Document Foundation, Zimmerstr. 69, 10117 Berlin, Germany
 Rechtsfähige Stiftung des bürgerlichen Rechts
 Legal details: http://www.documentfoundation.org/imprint

 --
 Unsubscribe instructions: E-mail to l10n+h...@global.libreoffice.org
 Problems? 
 http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
 Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
 List archive: http://listarchives.libreoffice.org/global/l10n/
 All messages sent to this list will be publicly archived and cannot be deleted

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


[Libreoffice-commits] .: sc/source

2012-12-23 Thread Libreoffice Gerrit user
 sc/source/ui/view/cellsh1.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit 9e0dbe9f8c1fa9d2c50895985fe2c374fa9364ac
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon Dec 24 03:00:32 2012 +0100

be safe against invalid cond format cell info, fdo#58686

Change-Id: Ie89aee95755d9abd3b82062fac271cfe774174ec

diff --git a/sc/source/ui/view/cellsh1.cxx b/sc/source/ui/view/cellsh1.cxx
index 16e0b06..a805661 100644
--- a/sc/source/ui/view/cellsh1.cxx
+++ b/sc/source/ui/view/cellsh1.cxx
@@ -1792,6 +1792,9 @@ void ScCellShell::ExecuteEdit( SfxRequest rReq )
 {
 // check if at least one existing conditional format 
has the same range
 const ScConditionalFormat* pCondFormat = 
pList-GetFormat(*itr);
+if(!pCondFormat)
+continue;
+
 const ScRangeList rCondFormatRange = 
pCondFormat-GetRange();
 if(rCondFormatRange == aRangeList)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


[Libreoffice-commits] .: Branch 'libreoffice-4-0' - sc/source

2012-12-23 Thread Libreoffice Gerrit user
 sc/source/ui/view/cellsh1.cxx |3 +++
 1 file changed, 3 insertions(+)

New commits:
commit b984cb56d70dec578103dae885ec5868582c0ffe
Author: Markus Mohrhard markus.mohrh...@googlemail.com
Date:   Mon Dec 24 03:00:32 2012 +0100

be safe against invalid cond format cell info, fdo#58686

Change-Id: Ie89aee95755d9abd3b82062fac271cfe774174ec

diff --git a/sc/source/ui/view/cellsh1.cxx b/sc/source/ui/view/cellsh1.cxx
index 0fc5dfc..3940c0c 100644
--- a/sc/source/ui/view/cellsh1.cxx
+++ b/sc/source/ui/view/cellsh1.cxx
@@ -1794,6 +1794,9 @@ void ScCellShell::ExecuteEdit( SfxRequest rReq )
 {
 // check if at least one existing conditional format 
has the same range
 const ScConditionalFormat* pCondFormat = 
pList-GetFormat(*itr);
+if(!pCondFormat)
+continue;
+
 const ScRangeList rCondFormatRange = 
pCondFormat-GetRange();
 if(rCondFormatRange == aRangeList)
 {
___
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits


Re: [libreoffice-marketing] Latest Hardware and OS

2012-12-23 Thread Rainer Bielefeld

Hi,

I agree with the arguments here. My conclusion: if tehere is a relevant 
Number of early adopters, who might find the Feedback item in Help menu, 
we should have something in BSA finding the appropriate Hardware-OS 
combination (may be with additional hint in comment). This 
combination(s) also should be mentioned on 
https://wiki.documentfoundation.org/BugReport_Details.


My question: do we know how many users might use LibO on Android / 
Raspberry Pi?


CU

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


Re: [Libreoffice-qa] [libreoffice-l10n] [ANN] LibreOffice 4.0.0 Beta2 available

2012-12-23 Thread Martin Srebotnjak
Hello,

is there an Android app to control Impress, now that the Remote
Control function is enabled in Impress GUI? Where can I find it to
test LO? (The pop-up window for Remote does not have a Help button,
nor do I remember any hints from Help as I translated all the strings
already and there were no links; also I cannot close that dialog on
OSX 10.7.5, so I need to file a bug for that).

Thanks, m.

2012/12/22 Thorsten Behrens t...@documentfoundation.org:
 Dear Community,

 The Document Foundation is pleased to announce the second Beta release
 of our upcoming LibreOffice 4.0, that is feature-complete. The
 upcoming 4.0 will be our fifth major release in just over two years,
 and comes with a nice set of new features. Please be aware that
 LibreOffice 4.0 Beta2 is not ready for production use, you should
 continue to use LibreOffice 3.6.4 for that.

 For further milestones towards 4.0, please refer to our release plan
 timings here:

  http://wiki.documentfoundation.org/ReleasePlan/4.0#4.0.0_release

 The release is available for Windows, Linux and Mac OS X from our QA
 builds download page at

   http://www.libreoffice.org/download/pre-releases/

 Should you find bugs, please report them to the FreeDesktop Bugzilla:

   https://bugs.freedesktop.org

 A good way to assess the release candidate quality is to run some
 specific manual tests on it, our TCM wiki page has more details:

  
 http://wiki.documentfoundation.org/QA/Testing/Regression_Tests#Full_Regression_Test

 For other ways to get involved with this exciting project - you can
 e.g. contribute code:

   http://www.libreoffice.org/get-involved/developers/

 translate LibreOffice to your language:

   http://wiki.documentfoundation.org/LibreOffice_Localization_Guide

 or help with funding our operations:

   http://donate.libreoffice.org/

 A list of known issues and fixed bugs with 4.0.0 Beta2 is available
 from our wiki:

   http://wiki.documentfoundation.org/Releases/4.0.0/Beta2

 Let us close again with a BIG Thank You! to all of you having
 contributed to the LibreOffice project - this release would not have
 been possible without your help.

 Yours,

 The Document Foundation Board of Directors

 The Document Foundation, Zimmerstr. 69, 10117 Berlin, Germany
 Rechtsfähige Stiftung des bürgerlichen Rechts
 Legal details: http://www.documentfoundation.org/imprint

 --
 Unsubscribe instructions: E-mail to l10n+h...@global.libreoffice.org
 Problems? 
 http://www.libreoffice.org/get-help/mailing-lists/how-to-unsubscribe/
 Posting guidelines + more: http://wiki.documentfoundation.org/Netiquette
 List archive: http://listarchives.libreoffice.org/global/l10n/
 All messages sent to this list will be publicly archived and cannot be deleted

___
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] [libreoffice-marketing] Latest Hardware and OS

2012-12-23 Thread Rainer Bielefeld

Hi,

I agree with the arguments here. My conclusion: if tehere is a relevant 
Number of early adopters, who might find the Feedback item in Help menu, 
we should have something in BSA finding the appropriate Hardware-OS 
combination (may be with additional hint in comment). This 
combination(s) also should be mentioned on 
https://wiki.documentfoundation.org/BugReport_Details.


My question: do we know how many users might use LibO on Android / 
Raspberry Pi?


CU

Rainer
___
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 58126] NO unit for Personalization's items on Pootle

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

Korrawit Pruegsanusak detective.conan.1...@gmail.com changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution|--- |WORKSFORME
 CC||detective.conan.1412@gmail.
   ||com

--- Comment #4 from Korrawit Pruegsanusak detective.conan.1...@gmail.com ---
@baffclan, seems your original problem (Personalization word not found) was
solved. So I resolving this bug as WORKSFORME.

For another problem, KeyIDs don't match, I reported new issue and add you to CC
at bug 58673. Thanks :)

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


[Libreoffice-bugs] [Bug 58673] KeyID in UI do not match Pootle's

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

Korrawit Pruegsanusak detective.conan.1...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #1 from Korrawit Pruegsanusak detective.conan.1...@gmail.com ---
Confirmed with 4.0.0 Beta2 on Windows 7 x64.

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


[Libreoffice-bugs] [Bug 58673] KeyID in UI do not match Pootle's

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

--- Comment #2 from Korrawit Pruegsanusak detective.conan.1...@gmail.com ---
Created attachment 72017
  -- https://bugs.freedesktop.org/attachment.cgi?id=72017action=edit
screenshot comparing UI and Pootle

Link to Pootle of this unit (string):
https://translations.documentfoundation.org/th/libo_ui/cui/uiconfig/ui.po/translate/#unit=33707594

It seems a lot of strings' KeyID are not match in UI and Pootle, not only this
specific string.

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


[Libreoffice-bugs] [Bug 58674] New: VIEWING: Customizable control character appearance

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

  Priority: medium
Bug ID: 58674
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: VIEWING: Customizable control character appearance
  Severity: enhancement
Classification: Unclassified
OS: All
  Reporter: christ...@hess-familie.de
  Hardware: All
Status: UNCONFIRMED
   Version: unspecified
 Component: Writer
   Product: LibreOffice

I use the view control characters option very often when correcting long
scanned passages of text or even books. But the control characters are really
annoying. On the one hand I need them, but on the other hand they are
disturbingly big, fat and the same color as the text. So sometimes it is nearly
impossible to recognize a comma or semicolon because of the overwhelming
appearance of the space control character.

I found several forum entries of people who welcome such an option to customize
the appearance, like changing the color to a light blue or just like the user
wants it to be.

Would be of great help and I guess it is not even very hard to implement.
Thanks for the great product and keep up the good work.

Merry christmas and a happy new year.

Christoph

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


[Libreoffice-bugs] [Bug 58673] KeyID in UI do not match Pootle's

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

Korrawit Pruegsanusak detective.conan.1...@gmail.com changed:

   What|Removed |Added

 CC||tima...@gmail.com

--- Comment #3 from Korrawit Pruegsanusak detective.conan.1...@gmail.com ---
Hello Andras,

Sorry to bother you on this Christmas holiday, but you are our hero for
localization task. So, could you please have a look at this bug? Thanks :)

Also, I have found that many of KeyID are removed from .po files in the commit:

 From 9e3b72859ec7871fdb2884860b54fd2a8de30f3d Mon Sep 17 00:00:00 2001
 From: Andras Timar ati...@suse.com
 Date: Mon, 03 Dec 2012 13:23:40 +
 Subject: update translations for LibreOffice 4.0 beta1
 
 Change-Id: I35e0bf7dfef1541f76508edb962e89bc5d78e339

I'm not sure if it's related to this bug ...

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


[Libreoffice-bugs] [Bug 58451] Base crash when Execute report with a empty database

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

--- Comment #19 from Julien Nabet serval2...@yahoo.fr ---
(In reply to comment #18)
 I'll be happy to look at this, but I'll only be back at my hacking machine
 in a week.
 
 Julien, you are correct, I need to propogate the 
   XMultiServiceFactory-XComponentContext
 change up the hierarchy to 
OGenericUnoController
 and dump the unnecessary
   m_xContext
 field in 
   OReportController.
 
 That being said, the only way I can see this happening is if showError is
 being called after OGenericUnoController::disposing() has cleared it's
 m_xServiceFactory field. (why it is doing that is another question).
 
 Probably just removing the clearing of m_xServiceFactory in
 OGenericUnoController will make this crash go away.

Thank you Noel for your feedback. I sent a post on dev mailing list (see
http://nabble.documentfoundation.org/About-fdo-58451-Base-crash-when-Execute-report-with-a-empty-database-td4025905.html).
Perhaps someone may help before you come back :-)

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


[Libreoffice-bugs] [Bug 52170] An extremely slow search/browse table in embedded HSQLDB

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

--- Comment #22 from rob...@familiegrosskopf.de ---
(In reply to comment #21)
 And moving to the last row of the repro file (30,849 rows) using Apache OO
 3.4.1 (on Mac OS X.6) takes 4 secs (if that is relevant). It takes about 1
 min 58 secs under LO Version 3.6.4.3 (Build ID: 2ef5aff) on the same machine.

Interesting for developers: AOO 3.4.1 has the same bug as LO 3.3.4: If I start
it (under Linux rpm, 32bit) with jre 1.6.0_22, it's running as fast as LO 3.3.4
(only some seconds moving to last rows). But when I use another jre (tried it
with 1.6.0_29) it lasts 18 seconds only to open the table, and 4 minutes and 50
seconds to move to last row.

The bad browsing to last record seems to be introduced to LO, when there was
something changed to let LO (under Linux) work with other jre as only jre
1.6.0_22.
https://bugs.freedesktop.org/show_bug.cgi?id=35023

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


[Libreoffice-bugs] [Bug 58643] EDITING: Systematic LO 3.6.4 crash on Mac OSX 10.8 using calc

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

--- Comment #10 from Alex Thurgood ipla...@yahoo.co.uk ---
Hi,
What Julien means is that you probably have Assistive Technologies enabled, 
e.g. Voiceover, or an app that uses them, such as Zoom/Cinch or something
similar. Your first trace certainly seems to indicate that, in which case it is
a duplicate of one we already know about. 


Alex

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


[Libreoffice-bugs] [Bug 54803] TDF Site [ar] DOWNLOAD: damaged links

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

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

   What|Removed |Added

 CC||airtime...@yahoo.com,
   ||m...@marcpare.com

--- Comment #3 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
Problem still unsolved!

@Mas: 
It should not be too difficult to any link on the page you reach with the link
at URL and to find a solution for any  الصفحة التي تحاول الوصول إليها غير
موجودة
you get?

@Marc:
any idea how we can get a solution here?

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


[Libreoffice-bugs] [Bug 58675] New: TDF Site: [gd] Gàidhlig (Scottish Gaelic): Outdated version 3.6.3 offered for download

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

  Priority: medium
Bug ID: 58675
CC: f...@akerbeltz.org, webs...@global.libreoffice.org
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: TDF Site: [gd] Gàidhlig (Scottish Gaelic): Outdated
version 3.6.3 offered for download
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: libreoff...@bielefeldundbuss.de
   URL: http://gd.libreoffice.org/faigh-greim-air/
  Hardware: Other
Status: UNCONFIRMED
   Version: 3.6.4.3 release
 Component: WWW
   Product: LibreOffice

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


[Libreoffice-bugs] [Bug 55662] Numeration of illustrations has changed from 3.6.1.2 to 3.6.2.2

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

Florian Reisinger reisi...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #6 from Florian Reisinger reisi...@gmail.com ---
Okay, NOT reproduceable with master 2012-12-15 -- WORKSFORME
Thanks for rechecking ;)

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


[Libreoffice-bugs] [Bug 58675] TDF Site: [gd] Gàidhlig (Scottish Gaelic): Outdated version 3.6.3 offered for download

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

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
Created attachment 72018
  -- https://bugs.freedesktop.org/attachment.cgi?id=72018action=edit
Page contents

Download info is not up to date, offers 3.6.3 instead of 3.6.4 at the prominent
top of the page (but at the bottom the correct 3.6.4 multi will be offered).

crazy: Release notes link
http://www.libreoffice.org/download/release-notes/#LO343 leads to correct
release notes for LO364

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


[Libreoffice-bugs] [Bug 56952] Bogus error message opening a document from read-only location

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

Urmas davian...@gmail.com changed:

   What|Removed |Added

 Status|UNCONFIRMED |NEW
 Ever confirmed|0   |1

--- Comment #4 from Urmas davian...@gmail.com ---
There was no hint of any 4.x version when this bug was reported, so it is
present in each version since then. Please stop this sophistics.

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


[Libreoffice-bugs] [Bug 57026] FILEOPEN particular .docx shows all text frames filling complete page size and more

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

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

--- Comment #7 from Joren De Cuyper joren.libreoff...@telenet.be ---
Thanks for retesting it with LO 4.0 b2 Korrawit Pruegsanusak!

I can confirm it works with LibreOffice 4.0.0.0.beta2 (Bouw-id:
4104d660979c57e1160b5135634f732918460a0)
TinderBox: MacOSX TDF Release, Branch:libreoffice-4-0, Time:
2012-12-18_17:13:13

So - RESOLVED (WORKSFORME)

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


[Libreoffice-bugs] [Bug 54157] LibreOffice 3.7/4.0 most annoying bugs

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

Bug 54157 depends on bug 57026, which changed state.

Bug 57026 Summary: FILEOPEN particular .docx shows all text frames filling 
complete page size and more
https://bugs.freedesktop.org/show_bug.cgi?id=57026

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution|--- |WORKSFORME

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


[Libreoffice-bugs] [Bug 58654] Polish spelling dictionary is missing in the LO install package and LO Extension repository

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

--- Comment #2 from Urmas davian...@gmail.com ---
Polish spelling works for me in 3.6 .

 Spell checking is broken entirely in 4.0 so far. 

So your problem is that you select the Polish dictionary for install, but it
doesn't get installed?

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


[Libreoffice-bugs] [Bug 58676] New: EDITING: Search in all sheets setting should be persitant after reopening the application

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

  Priority: medium
Bug ID: 58676
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: EDITING: Search in all sheets setting should be
persitant after reopening the application
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: dma...@gmx.fr
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 3.6.3.2 release
 Component: Spreadsheet
   Product: LibreOffice

Please make search in all sheets setting persistent for current document
after closing and reopening the application (i'm thinking maybe it could be
saved in the file itself?).

If not possible for the document, please make it global to the application.
Operating System: Windows XP
Version: 3.6.3.2 release

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


[Libreoffice-bugs] [Bug 58676] EDITING: Search in all sheets setting should be persitent after reopening the application

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

Mathieu Stempell dma...@gmx.fr changed:

   What|Removed |Added

Summary|EDITING: Search in all |EDITING: Search in all
   |sheets setting should be   |sheets setting should be
   |persitant after reopening   |persitent after reopening
   |the application |the application

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


[Libreoffice-bugs] [Bug 58676] EDITING: Search in all sheets setting should be persistent after reopening the application

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

Mathieu Stempell dma...@gmx.fr changed:

   What|Removed |Added

Summary|EDITING: Search in all |EDITING: Search in all
   |sheets setting should be   |sheets setting should be
   |persitent after reopening   |persistent after reopening
   |the application |the application

-- 
You are receiving this mail because:
You are the 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-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58069

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

   What|Removed |Added

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

--- Comment #5 from Joren De Cuyper joren.libreoff...@telenet.be ---
Reproducible with LibreOffice 4.0.0.0.beta2 (Bouw-id:
4104d660979c57e1160b5135634f732918460a0)
TinderBox: MacOSX TDF Release, Branch:libreoffice-4-0, Time:
2012-12-18_17:13:13
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 57155] DOCX Import Problems

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

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

   What|Removed |Added

  Attachment #70118|text/plain  |application/vnd.openxmlform
  mime type||ats-officedocument.wordproc
   ||essingml.document

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


[Libreoffice-bugs] [Bug 58677] New: CONDITIONAL FORMATTING lost after sheet has been copied to new document

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

  Priority: medium
Bug ID: 58677
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: CONDITIONAL FORMATTING lost after sheet has been
copied to new document
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: libreoff...@bielefeldundbuss.de
  Hardware: Other
Status: UNCONFIRMED
   Version: Master old  -3.6
 Component: Spreadsheet
   Product: LibreOffice

This problem has been observed by john.pr...@cantab.net in Bug 55032 -
CONDITIONAL FORMATTING lost in copied sheet in same document after close /
reopen

Steps how to reproduce with Server Installation of  LibreOffice  3.6.5.0+ 
English UI/ German Locale [Build-ID: 62b950d],{tinderbox: Win-x86_9-Voreppe
pull time 2012-12-19 14:06:00}  on German WIN7 Home Premium (64bit), own
User-Profile and Attachment 71072 for Bug 55032

1. Open document from LibO Start Center
2. Click the + Sheet tab to create a new sheet
3. Click back to Sheet1 tab
4. Right click Sheet1 tab
Context menu
5. 'Move/Copy Sheet - Copy - To Document = New Document - OK'
New document with seeht contents created
   Expected: A1 with yellow background
   Actual: No background, No CF at all

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


[Libreoffice-bugs] [Bug 55032] CONDITIONAL FORMATTING lost in copied sheet in same document after close / reopen

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

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

   What|Removed |Added

 Status|NEW |NEEDINFO
Summary|CONDITIONAL FORMATTING is   |CONDITIONAL FORMATTING lost
   |LOST when a sheet is copied |in copied sheet in same
   |from one file to another|document after close /
   |(using the tab context  |reopen
   |menu)   |

--- Comment #16 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
The original report was concerning a Copy sheet within document, I will
switch this one back to that, to keep overview and report  new Bugs for new
problems observed during investigations.

I am a little worried, I can not reproduce the problem due to Comment 7 or
Comment 9 with Server Installation of LibreOffice 3.6.2.1 release”  English
UI/ German Locale [Build-ID:  da8c1e6] on German WIN7 Home Premium (64bit) 
or
3.6.4.3 or 4.0.0.0.beta2, but with 3.6.4.3 I still can reproduce Bug 56742.
Although the symptoms are very similar, this Bug is different to Bug 56742

But that does not matter, the problem of this bug seems solved with current
3.6.4.3 and 4.0, So I would like to close this one as worksforme.

For the copy to other document problem please see Bug 58677 - CONDITIONAL
FORMATTING lost after sheet has been copied to new document!

@john.pr...@cantab.net
It is not useful if you find a new definition concerning any CF problem for
this report every 3 days, please respect the LibO bug fixing workflow and stop
that.

@All:
Does anybody still see the problem due to Comment 7 with 3.6.4.3 or
4.0.0.0.beta2 (or later?)

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


[Libreoffice-bugs] [Bug 58677] CONDITIONAL FORMATTING lost after sheet has been copied to new document

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

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

   What|Removed |Added

 OS|Windows (All)   |All
 Status|UNCONFIRMED |NEW
 Whiteboard||bibisectrequest
 CC||LibreOffice@bielefeldundbus
   ||s.de
 Ever confirmed|0   |1

--- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
Already [Reproducible] with 
* Server Installation of  LibreOffice 3.6.1.0+  English UI/ German Locale
[Build-ID:  b0aac2a] on German WIN7 Home Premium (64bit)  {tinderbox:
Win-x86@9, pull time 2012-08-11 00:16:39}  /NEW CF dialog design/
* [Reproducible] with Server installation of Master LOdev 3.6.0alpha0+  – WIN7
Home Premium (64bit) ENGLISH UI [Build ID: a502549] (tinderbox:
Win-x86@6-fast, pull time 2012-05-31 07:33:55) /old CF dialog design/

Still worked fine with 
*  Server installation of  Master LOdev 3.6.0alpha0+  – WIN7 Home Premium
(64bit) ENGLISH UI [Build ID: 475d0c5-829fc92-39746e8-206648e-fefd87]
(2012-02-14)
* server installation of LibreOffice 3.5.7.2 rc German UI/Locale [Build-ID:
3215f89-f603614-ab984f2-7348103-1225a5b] on German WIN7 Home Premium (64bit) 

NEW due to Bug 55032 Comment #14

OS All because original reporter john.pr...@cantab.net seems to use Ubuntu. So
we have good chance for a bibisect.

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


[Libreoffice-bugs] [Bug 58643] EDITING: Systematic LO 3.6.4 crash on Mac OSX 10.8 using calc

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

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

   What|Removed |Added

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

--- Comment #11 from Julien Nabet serval2...@yahoo.fr ---
dgaschk: I finally found the meta tracker.
Could you take a look to this link? (put in see also)
https://bugs.freedesktop.org/show_bug.cgi?id=55571

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


[Libreoffice-bugs] [Bug 55571] [Task] Tracking bug for important bugs related to the Mac OS X Accessibility API

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

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

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 58678] New: EDITING: paste special options incorrect after undo of paste after cut

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

  Priority: medium
Bug ID: 58678
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: EDITING: paste special options incorrect after undo of
paste after cut
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: o...@dci-electronics.nl
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 3.6.4.3 release
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 72020
  -- https://bugs.freedesktop.org/attachment.cgi?id=72020action=edit
sample document used in description.

Problem description: 
(based on sample document in attachment)
Steps to reproduce:
1. select row 2
2. cut
3. click on A4
4. open paste special dialog (ignore if shift down is disabled an shift right
is enabled, this is patched under bug 56098)
5. select don't shift
6. selection is pasted 
7. undo 
8. click on A5
9. open paste special dialog; both shift-option are available, which is not
correct. Shift right should be disabled (shift down in case of patch for bug
56098 not yet applied)

Analog for cutting columns or other ranges.

The cause for this behaviour is in /core/sc/source/ui/view/cellsh1.cxx on line
1266: pOwnClip-GetDocument()-IsCutMode() returns false when it ought to
return true.

(I stumbled upon this bug whilst working on bug 56098, but the problem
described here is unrelated to bug 56098.)


Operating System: All
Version: 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 58673] KeyID in UI do not match Pootle's

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

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

   What|Removed |Added

 CC||zolnaitamas2...@gmail.com

--- Comment #4 from Andras Timar tima...@gmail.com ---
We do not need KeyIDs in PO files, because they can be generated. 

However, it is sad that this feature finally does not work. 4.0.0 Beta 2 was
the last KeyID build so we two options. 

1. Try to find out urgently what happened, generate KeyIDs once more for pot
files, and update Pootle.
-- OR --
2. Fix this for 4.1 only. In this case we may consider to use better KeyIDs,
personally I dislike non-alphanumeric characters in KeyIDs. With the new widget
layout work, we could have longer, e.g. 5-6 chars long KeyIDs with numbers and
lower case letters only.

@Tamas: please take a look at it, if you have time. I cannot really work on
LibreOffice until January 5, 2013.

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


[Libreoffice-bugs] [Bug 53924] FORMATTING: PRINTING changes text (space get's removed) on OS X 10.7/10.8

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

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

   What|Removed |Added

 CC||serval2...@yahoo.fr

--- Comment #18 from Julien Nabet serval2...@yahoo.fr ---
SteveBell: Even if I don't think it's solved with 3.6.4.3 it's always
interesting to give an update with last version.
There are daily builds 4.0 for Mac 10.7 here:
http://dev-builds.libreoffice.org/daily/libreoffice-4-0/MacOSX-Intel@27-OSX_10.7.0-gcc_4.2.1_llvm/current/
I don't know if it would work for MacOs 10.8

Also, do you this problem at preview too? (perhaps it may help to narrow the
investigation)

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


[Libreoffice-bugs] [Bug 42082] [META] Make LibreOffice shine and glow on the MacOSX and iOS platform. Or better: outshine other products/platforms.

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

Emir Sarı emir_s...@msn.com changed:

   What|Removed |Added

 Depends on||57894

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


[Libreoffice-bugs] [Bug 57894] Implement OS native highlighting on each component

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

Emir Sarı emir_s...@msn.com changed:

   What|Removed |Added

 Blocks||42082

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


[Libreoffice-bugs] [Bug 54803] TDF Site [ar] DOWNLOAD: damaged links

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

--- Comment #4 from Marc Pare m...@marcpare.com ---
The AR team is in the process of re-organizing/streamlining itself. There will
be additional help coming soon for website corrections.

Cheers,

Marc

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


[Libreoffice-bugs] [Bug 53924] FORMATTING: PRINTING changes text (space get's removed) on OS X 10.7/10.8

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

--- Comment #19 from SteveBell steveb...@gulli.com ---
hey Julien, I just tested this against the latest stable 3.6.4.3 and latest
beta 4.0.0b2. Since the last daily build is from dec 18th and labeled 4.0.0b1
I'm not sure if it's newer than the b2 builds?

Still reproducible on both versions.

What do you mean by preview? I tested this by

* opening the file in question and then hit cmd + p (for printing)
* in the printing dialog select the PDF dropdown menu
* select any item, I did Open PDF in Preview
* when preview opens I see that the previously space between the letters has
been removed

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


[Libreoffice-bugs] [Bug 58677] CONDITIONAL FORMATTING lost after sheet has been copied to new document

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

--- Comment #2 from john.pr...@cantab.net ---
@Rainer Bielefeld
I am using Windows XP when I have this problem (I use Ubuntu too, but am stuck
on 3.5.x on there as I need to use this function for work).  I haven't checked
4.0beta2 on Ubuntu as I only have dongle internet on it.

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


[Libreoffice-bugs] [Bug 55032] CONDITIONAL FORMATTING lost in copied sheet in same document after close / reopen

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

--- Comment #17 from john.pr...@cantab.net ---
@  Rainer Bielefeld
I agree that the method using comment 7 steps to reproduce 1-6 is now not
reproducible in 4.0beta2.

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


[Libreoffice-bugs] [Bug 58368] CONFIGURATION: Change of margin when changing Page Layout style

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

--- Comment #3 from westle...@yahoo.com ---
Created attachment 72026
  -- https://bugs.freedesktop.org/attachment.cgi?id=72026action=edit
Illustration of the left bracket shifting issue

Thank you for looking at this.  I am adding a PDF attachment to illustrate the
issue.  The left page bracket ( not sure of its proper name ) shifts 1/2 inch
to the left when the apply button is pressed on the Page Style: Default Style
dialog box.  Since nothing changed in the box before the Apply button is
pressed - nothing on the page should have changed.  But, please note the left
page bracket has shifted to the left by 1/2 inch.

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


[Libreoffice-bugs] [Bug 55032] CONDITIONAL FORMATTING lost in copied sheet in same document after close / reopen

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

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

   What|Removed |Added

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

--- Comment #18 from Rainer Bielefeld libreoff...@bielefeldundbuss.de ---
So let's close this one and concentrate on remaining problems like Bug 58677.
If someone finds some more precise info with what version the problem
disappeared, he should add more precise target info in the whiteboard. This
info might be important to distinguish this one from other bugs what might have
similar symptoms, but different roots.

@john.pr...@cantab.net
Thank you for additional test!

-- 
You are receiving this mail because:
You are the 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-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54157

Bug 54157 depends on bug 55032, which changed state.

Bug 55032 Summary: CONDITIONAL FORMATTING lost in copied sheet in same document 
after close / reopen
https://bugs.freedesktop.org/show_bug.cgi?id=55032

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 57626] Macro assigned to print event does not execute

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

--- Comment #5 from stfhell stfh...@googlemail.com ---
(In reply to comment #4)
 stfhell: on which env did you test?

Test system was also Linux (Ubuntu 12.04/AMD64), LO 3.5 from Ubuntu repository,
the 3.7 build compiled from sources some 3-4 weeks ago (I don't have the system
available at the moment). Macro security was set to medium (confirm execution
for each document).

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


[Libreoffice-bugs] [Bug 58528] PIVOTTABLE: Filter icon stays in filtered status when all items are shown

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

paulchen gm.p...@freenet.de changed:

   What|Removed |Added

 Status|UNCONFIRMED |RESOLVED
 Resolution|--- |FIXED

--- Comment #2 from paulchen gm.p...@freenet.de ---
In LO4.000b2 it's ok again.

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


[Libreoffice-bugs] [Bug 58650] DocumentInfo disappeared

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

--- Comment #3 from Boudi bo...@clocked.eu ---
Thanks for the advice's.

What way could I have been aware of the deprecation status of
com.sun.star.document.DocumentInfo?

So I can try prevent this kind of misunderstanding in the future?

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


[Libreoffice-bugs] [Bug 58681] New: FORMATTING: Crash when trying to edit page format

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

  Priority: medium
Bug ID: 58681
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FORMATTING: Crash when trying to edit page format
  Severity: normal
Classification: Unclassified
OS: Windows (All)
  Reporter: podgy.pig...@gmail.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 3.6.3.2 release
 Component: Writer
   Product: LibreOffice

Problem description: LibreOffice crashes when trying to edit page properties

Steps to reproduce:
1. Click menu Format
2. Click Page

Current behavior: crash of the application

Expected behavior: open a dialog to edit page properties (margins, paper
format, orientation...)


Operating System: Windows 7
Version: 3.6.3.2 release

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


[Libreoffice-bugs] [Bug 58356] Imported XLSX files show too thick table borders

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

--- Comment #3 from paulchen gm.p...@freenet.de ---
I can confirm this bug in LO4.000b2 (Windows): a table crated with Calc and
cell borders of default 1 pt width, saved as XLSX and then reopened in Calc has
4 pt wide borders.

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


[Libreoffice-bugs] [Bug 58356] Imported XLSX files show too thick table borders

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

paulchen gm.p...@freenet.de changed:

   What|Removed |Added

 Status|NEEDINFO|NEW

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


[Libreoffice-bugs] [Bug 45041] Crash opening ods file containing macros

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

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

   What|Removed |Added

Summary|Crash opening odt file  |Crash opening ods file
   |containing macros   |containing macros

--- Comment #17 from Joren De Cuyper joren.libreoff...@telenet.be ---
Change odt to ods in bugname, because this is a spreadsheet bug (odt = files
for Writer; ods = 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 58682] New: Crop Picture Tool Missing in Writer

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

  Priority: medium
Bug ID: 58682
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Crop Picture Tool Missing in Writer
  Severity: enhancement
Classification: Unclassified
OS: All
  Reporter: baksky...@gmail.com
  Hardware: All
Status: UNCONFIRMED
   Version: 3.6.4.3 release
 Component: Writer
   Product: LibreOffice

Libre Office includes a crop picture toolbar button in Calc and Impress, but
not in Write. Please make this toolbar button also available in Write. The
current way (using the picture menu) to crop images in Write allows for very
exact crops, but is not very handy for quick crops.

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


[Libreoffice-bugs] [Bug 58451] Base crash when Execute report with a empty database

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

--- Comment #20 from Marcos Souza marcos.souza@gmail.com ---
Created attachment 72027
  -- https://bugs.freedesktop.org/attachment.cgi?id=72027action=edit
valgrind log - now with valgrind installed!!

I tought that valgrind was installed here, but it doesn't..

I belive this is the right log message!

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


[Libreoffice-bugs] [Bug 56235] Double border for calc-result returns one fat line

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

--- Comment #7 from Ian~G grayl...@orange.net ---
Created attachment 72028
  -- https://bugs.freedesktop.org/attachment.cgi?id=72028action=edit
border modified to show correctly

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


[Libreoffice-bugs] [Bug 56762] FILEOPEN: Writer crashes when opening docx file

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

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

   What|Removed |Added

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

--- Comment #8 from Joren De Cuyper joren.libreoff...@telenet.be ---
I can confirm a crash with LibreOffice 3.6.4.3
I CAN'T confirm a crash anymore with LibreOffice 4.1.0.0.alpha0+ (Build ID:
9c655c4c55e3be85a6cef0bd04f95e4d47e211f)

Can somebody can confirm this bug is resolved when opening with LibreOffice
version 4? If yes - RESOLVED (WORKSFORME)

The image inside the document isn't displayed correctly I think, but no crash.
(I'll upload a screenshot)

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


[Libreoffice-bugs] [Bug 56762] FILEOPEN: Writer crashes when opening docx file

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

--- Comment #9 from Joren De Cuyper joren.libreoff...@telenet.be ---
(In reply to comment #8)
 I can confirm a crash with LibreOffice 3.6.4.3
 I CAN'T confirm a crash anymore with LibreOffice 4.1.0.0.alpha0+ (Build ID:
 9c655c4c55e3be85a6cef0bd04f95e4d47e211f)
 
 Can somebody can confirm this bug is resolved when opening with LibreOffice
 version 4? If yes - RESOLVED (WORKSFORME)
 
 The image inside the document isn't displayed correctly I think, but no
 crash. (I'll upload a screenshot)

Additional information: Ubuntu 12.10 x64

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


[Libreoffice-bugs] [Bug 43808] Meta bug for Most Annoying RTL related issues

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

Bug 43808 depends on bug 56970, which changed state.

Bug 56970 Summary: switching between sheets with different directionality hides 
the + button for new sheet
https://bugs.freedesktop.org/show_bug.cgi?id=56970

   What|Removed |Added

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

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


[Libreoffice-bugs] [Bug 56762] FILEOPEN: Writer crashes when opening docx file

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

--- Comment #10 from Joren De Cuyper joren.libreoff...@telenet.be ---
Created attachment 72029
  -- https://bugs.freedesktop.org/attachment.cgi?id=72029action=edit
How document looks in LibreOffice 4.1.0.0 Ubuntu 12.10

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


[Libreoffice-bugs] [Bug 56762] FILEOPEN: Writer crashes when opening docx file

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

--- Comment #11 from Julien Nabet serval2...@yahoo.fr ---
On pc Debian x86-64 with 4.0 branch updated today, I don't reproduce this
anymore.
3 pages, 3 logos, the first 2 pages have text too.
kind of logs seen:
warn:legacy.osl:14067:1:/home/julien/compile-libreoffice/libo_4_0/oox/source/docprop/docprophandler.cxx:319:
For now unexpected tags are ignored
warn:legacy.osl:14067:1:/home/julien/compile-libreoffice/libo_4_0/oox/source/docprop/docprophandler.cxx:319:
For now unexpected tags are ignored!
warn:legacy.osl:14067:1:/home/julien/compile-libreoffice/libo_4_0/oox/source/helper/storagebase.cxx:74:
StorageBase::StorageBase - missing base input stream
warn:legacy.osl:14067:1:/home/julien/compile-libreoffice/libo_4_0/sw/source/core/attr/calbck.cxx:231:
Client added to active ClientIter
warn:legacy.osl:14067:1:/home/julien/compile-libreoffice/libo_4_0/sw/source/core/attr/format.cxx:220:
SwFmt::~SwFmt: Def dependents!
warn:legacy.osl:14067:1:/home/julien/compile-libreoffice/libo_4_0/sw/source/core/attr/format.cxx:229:
~SwFmt: parent format missing from: Textformatvorlage
warn:legacy.osl:14067:1:/home/julien/compile-libreoffice/libo_4_0/sw/source/core/access/acccontext.cxx:1162:
child context should have a size
warn:legacy.osl:14067:1:/home/julien/compile-libreoffice/libo_4_0/sw/source/core/access/acccontext.cxx:308:
Vis area of child is wrong. Did it exist already?
warn:legacy.osl:14067:1:/home/julien/compile-libreoffice/libo_4_0/sw/source/core/access/acccontext.cxx:1032:
invalid vis area for dispose
warn:legacy.osl:14067:1:/home/julien/compile-libreoffice/libo_4_0/sw/source/core/attr/calbck.cxx:231:
Client added to active ClientIter
warn:legacy.osl:14067:1:/home/julien/compile-libreoffice/libo_4_0/sw/source/core/attr/format.cxx:220:
SwFmt::~SwFmt: Def dependents!
warn:legacy.osl:14067:1:/home/julien/compile-libreoffice/libo_4_0/sw/source/core/attr/format.cxx:229:
~SwFmt: parent format missing from: Textformatvorlage


With 3.6 sources updated today, I don't reproduce the crash but the logo is
repeated several times. 10 pages, perhaps 20 times the logo and the text
doesn't display, kind of logs seen:
warn:legacy.osl:14097:1:/home/julien/compile-libreoffice/libo_3_6/oox/source/docprop/docprophandler.cxx:328:
For now unexpected tags are ignored!
warn:legacy.osl:14097:1:/home/julien/compile-libreoffice/libo_3_6/oox/source/helper/storagebase.cxx:83:
StorageBase::StorageBase - missing base input stream
warn:legacy.osl:14097:1:/home/julien/compile-libreoffice/libo_3_6/sw/source/core/access/acccontext.cxx:1171:
child context should have a size
warn:legacy.osl:14097:1:/home/julien/compile-libreoffice/libo_3_6/sw/source/core/access/accmap.cxx:910:
invalid event combination
warn:legacy.osl:14097:1:/home/julien/compile-libreoffice/libo_3_6/sw/source/core/access/acccontext.cxx:1041:
invalid vis area for dispose

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


[Libreoffice-bugs] [Bug 56762] FILEOPEN: Writer crashes when opening docx file

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

--- Comment #12 from Julien Nabet serval2...@yahoo.fr ---
(In reply to comment #10)
 Created attachment 72029 [details]
 How document looks in LibreOffice 4.1.0.0 Ubuntu 12.10

Did you noticed text was overlapped page 1 and 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 56235] Double border for calc-result returns one fat line

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

--- Comment #8 from Ian~G grayl...@orange.net ---
Created attachment 72030
  -- https://bugs.freedesktop.org/attachment.cgi?id=72030action=edit
pdf of boder modified to show correctly

The anti-alias bug 57345 is a bit of a red herring...

The problem is down to errors in the cell border dialogue.

Firstly it doesn't respond to change of units properly ie the line type is
always shown as a pt size regardless of units chosen for the spreadsheet. But
it has always been like this (I think), so still not the answer.

Secondly the double borders are assigned line sizes incorrectly. In attachment
71968 the borders are set to:
0.026cm 0.026cm 0.002cm This is in the wrong order. Double Border size should
be bottom line first, then spacing, then top line.

From the point of view of displaying the things I have found that the spacing
needs to be at least .06cm to be able to view at 100% and in preview and
printing. See attached 72028 fods file which I have edited and which works ok
on my screen with the following settings:
0.002cm 0.06cm 0.002cm Note the corrected order and the slightly overlarge
spacing. Also see attached pdf of this correction.

I have not been able to find any setting accessible through the borders
dialogue which displays correctly. The only way of getting a usable financial
spreadsheet from LO is to save it as a .fods and edit it with a text editor!

Or, you can save a simple sheet as .fods with say just one cell in it with
double border underline. Edit the fods to correct the cell format, then reopen
it in calc and copy the cell formatting to new cells as you create them. That's
a pretty awful workaround. Think I'd rather go back to OpenOffice 3.3 until
this is fixed.

Also, I have no way of testing what this looks like when exported as a xls file
which is how we have to communicate financially with the outside world.

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


[Libreoffice-bugs] [Bug 56762] FILEOPEN: Writer crashes when opening docx file

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

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

   What|Removed |Added

 Status|NEW |RESOLVED
 Whiteboard|BSA |BSA + target: 3.6.5 +
   ||target: 4.0
 Resolution|--- |WORKSFORME

--- Comment #13 from Joren De Cuyper joren.libreoff...@telenet.be ---
(In reply to comment #12)
 Did you noticed text was overlapped page 1 and 2?

I can reproduce that; But this bug is about the crashing - solved.
Maybe due document creation or a wrong image handling;

If Herbert Post can add steps to produce such wrong image (size) and reproduce
it's a bug in Libreoffice, that would be great for a new bug report.

Thanks for reproducing

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


[Libreoffice-bugs] [Bug 33037] Can't open HTML file -- freeze

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

--- Comment #13 from Julien Nabet serval2...@yahoo.fr ---
Created attachment 72031
  -- https://bugs.freedesktop.org/attachment.cgi?id=72031action=edit
bts at random with master sources

bts at random with master sources updated today.

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


[Libreoffice-bugs] [Bug 56235] Double border for calc-result returns one fat line

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

--- Comment #9 from Ian~G grayl...@orange.net ---
EDIT:
Oh well, I've just exported my corrected file to xls and the double border
disappears in all views and scales when reopened in calc (got no windoze here)
As an xlsx the bottom border disappears altogether...

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


[Libreoffice-bugs] [Bug 58474] UI: Calculating wrong answers

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

--- Comment #2 from Jacques Malaprade malapra...@hotmail.com ---
Created attachment 72032
  -- https://bugs.freedesktop.org/attachment.cgi?id=72032action=edit
xlxs example

Here is the spreadsheet with unnecessary data removed. Some cells are sum=1
other sum=2. They are all supposed to be 1.

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


[Libreoffice-bugs] [Bug 58474] UI: Calculating wrong answers

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

Jacques Malaprade malapra...@hotmail.com changed:

   What|Removed |Added

   Severity|normal  |critical
   Priority|medium  |high

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


[Libreoffice-bugs] [Bug 58451] Base crash when Execute report with a empty database

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

--- Comment #21 from Marcos Souza marcos.souza@gmail.com ---
Created attachment 72033
  -- https://bugs.freedesktop.org/attachment.cgi?id=72033action=edit
vagrind report

When i follow
https://wiki.documentfoundation.org/BugReport#How_to_get_a_valgrind_log_.28on_Linux.29
it seems that an error occurs when trying to get the summary of icedtea...

So, attaching this...

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


[Libreoffice-bugs] [Bug 57536] Wrong Chinese conversion: 著 着

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

webofht-libreofficebugs...@yahoo.com.hk changed:

   What|Removed |Added

 CC||webofht-libreofficebugs002@
   ||yahoo.com.hk

--- Comment #1 from webofht-libreofficebugs...@yahoo.com.hk ---
I agree with Kumāra. Please separate 著 from 着. They mean different things. For
instance, 見微知著 cannot be 見微知着。 見微知着 is wrong.  著名 cannot be 着名. 着名 is wrong.

This issue also exists in LibreOffice Version 3.6.3.2 (Build ID: 58f22d5) on
Debian Linux.

Regards,
C. H. D.

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


[Libreoffice-bugs] [Bug 58654] Polish spelling dictionary is missing in the LO install package and LO Extension repository

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

--- Comment #3 from VX vangeli...@aol.com ---
 So your problem is that you select the Polish dictionary for install, but it
 doesn't get installed?

I. OK, I'll try to provide a complete procedure to reproduce the bug. 
Steps to reproduce:

1. Download LibreOffice from https://www.libreoffice.org/download
My OS is Windows 7 64bit Polish, so: LibreOffice Windows, version 3.6.4, Polish
is chosen for me to download automatically. If you have a different OS, you
should manually change system, version or language and choose Polish one for
testing purposes.

2. Install the file 'LibO_3.6.4_Win_x86_install_multi' with user defined
options.
Do not change any settings but make sure that in 'Optional
components'/'Dictionaries' there are German, Polish and Russian ones selected
by default (I assume this is a default option when you choose the Standard
installation as well and it doesn't rely on the operating system language
settings on Windows but I might be wrong about it). Continue the installation
with suggested settings.

3. When LO is installed, go to Tools (Narzędzia)/ Options (Opcje)/ Language
settings (Ustawienia językowe) /Writing Aids (Pisownia) and make sure which
dictionaries are installed. There are some English dictionaries (during the
installation process LO claims to install Polish,German and Russian ones!) and
- to my surprise - there is SL-Slovenian dictionary instead of PL-Polish one!
But where are the dictionaries for Polish, German and Russian that were claimed
to be installed during the installation process?

4. Open LO Writer and type a random polish word with spelling mistake. To my
surprise this time the error was underlined (it wasn't in some previous
versions that I tested before) and I was given suggestions to correct it.
After selecting  the underlined word I pressed 'F7' and I could choose the
language for the text with the following options: Polish, German (3 variants of
dictionaries), and Russian. 
Eureka! 
It seems that spell checker for Polish works with this version for me, and I've
finally found the dictionaries that I had expected to find in Language
settings/ Writing aids. 

So the issue is somehow resolved, but do you really think the current solution
is perfect?

A. If I could find  these dictionaries in the Tools/Options/Language
settings/Writing aids I could enable/disable it depending on my needs. But it's
impossible with the current release.

B. Pressing 'F7' key brings the window with various options for spell checking,
but I can't find the dictionaries that were accessible from the Language
settings/Writing aids menu, namely dictionaries for English and Slovenian to
give some examples.

C. Don't you think these two places for various Language tools should be
combined into one for better consistency ?!

D. Why some dictionaries are installed with default installation and user can't
manage nor use them after installation (SL-Slovenian in this case - the
installer didn't show it to be installed, so it's a bit surprising)?

IMHO, LibreOffice language settings menu is completely unintuitive, messy and
should be redesigned for better consistency (what is shown in the options
during the installation, in the Language settings options and in the
Autocorrect ('F7') window should be consistent and don't mislead nor surprise
users. 

Furthermore, there is an Extension for LO called LanguageTool
http://languagetool.org/ , which gives much better results for vast majority of
the supported languages than extensions distributed with the LibreOffice
installer. I know it requires Java, but I believe it could be better integrated
and distributed with the LO installer. Is there any way to use LanguageTool
rules with LO without Java?

II. Another issue is that there is no a Polish dictionary pack in the
LibreOffice Extensions repository, so it can't be installed with LO Extension
manager, unless it's downloaded from Apache OpenOffice repository (see the link
in my entry comment)and installed manually. Some users don't know about this
solution and keep complaining about broken support for this.

Thank you very much for reading and considering.

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


[Libreoffice-bugs] [Bug 58683] New: PDF: EPS lose quality and scalability inside Writer!

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

  Priority: medium
Bug ID: 58683
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: PDF: EPS lose quality and scalability inside Writer!
  Severity: normal
Classification: Unclassified
OS: Linux (All)
  Reporter: sdke...@yahoo.com
  Hardware: Other
Whiteboard: BSA
Status: UNCONFIRMED
   Version: 3.6.0.2 rc
 Component: Writer
   Product: LibreOffice

Problem description: 

Can't insert EPS files, properly,

when I try to export my document to PDF, EPS and SVG is distorted and loses
scalability. Moreover, I would like to see a rotation tool for inserted images
in Writer documents.

Steps to reproduce:
1. 
2. 
3. 

Current behavior: Distorted pixelated EPS graphics in PDF export.

Expected behavior: Keep scalability and original quality of the EPS file in the
document.


Operating System: Ubuntu
Version: 3.6.0.2 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 58645] Formatting and SAVE: By conditional formatting and file save collumns are jump horizontal

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

--- Comment #2 from vlb v...@xs4all.nl ---
I have test it in LO Versie 4.0.0.0.beta2 (Bouw-id:
4104d660979c57e1160b5135634f732918460a0) and here is the issue solved!

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


[Libreoffice-bugs] [Bug 49909] PDF Import omits some necessary whitespaces

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

--- Comment #2 from Roczek dennisroc...@gmail.com ---
Created attachment 72034
  -- https://bugs.freedesktop.org/attachment.cgi?id=72034action=edit
En.wikibooks problem

This PDF is generated/printed by PDFCreator / PDF Forge (
http://sourceforge.net/projects/pdfcreator/ and http://www.pdfforge.org/ ) of
the web page https://en.wikibooks.org/wiki/Cascading_Style_Sheets/Print_version
. It has similar problems that the whitespaces aren't handled. Very likely the
same problem. Does this pdf help more?

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


[Libreoffice-bugs] [Bug 58643] EDITING: Systematic LO 3.6.4 crash on Mac OSX 10.8 using calc

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

--- Comment #12 from Roman Eisele b...@eikota.de ---
(In reply to comment #10)
 What Julien means is that you probably have Assistive Technologies enabled, 
 e.g. Voiceover, or an app that uses them, such as Zoom/Cinch or something
 similar. Your first trace certainly seems to indicate that, in which case it
 is a duplicate of one we already know about. 

Here is my complete standard “questionnaire” for such issues:
---

1) Do you have any accesibility features enabled? Apple’s accessibility
features like “VoiceOver” or “Enable access for assistive devices”, which get
enabled in “System Preferences  Universal Access”, are known to cause many
crashes and freezes in LibreOffice. So please try to disable any accesibility
features, then check if the problem is still reproducible.

2) Do you have installed any window management/user interface
utilities/apps/control panels/extensions for Mac OS X like 
   * AquaSnap* BetterSnapTool
   * BetterTouchTool * Breeze
   * Cinch   * Divvy
   * DoublePane  * Flexiglass
   * HyperDock   * iSnap
   * Moom* RightZoom
   * ShiftIt * SizeUp
   * SizeWell* Spectacle
   * Stay* TileWindows
   * WindowTidy... or something similar?

And/or do you use any mouse cursor/pointer utility, i.e. some little
application or control panel etc. which animates or replaces etc. the mouse
curser/pointer, like
   * LazyMouse?

And/or do you use any special software which could be related to accessibility
stuff, e.g. a screen reader, screen magnifier, speech recognition software,
a text-to-speech (dictation) application, or similar?

All these and many similar utilities rely heavily on Mac OS accessibility
features and therefore can cause LibreOffice to crash or freeze. So please
check if you have installed any utility of this kind and try to disable it
(or to add LibreOffice to the list of excluded applications for the utility,
if there is such a thing).

So please check these possibilities, if any of them helps to make the crash go
away, and report the results here.



Additional hint:
At least your second and third report (about a hang/freeze) is very similar to
the reports attached to bug 57245 and its duplicates. Therefore I *hope* that
the present issue is just another instance of the same underlying problem.

This would mean *good news*: bug 57245 is supposed to be fixed now. The fix
will appear in LibreOffice 3.6.5 (and 4.0.0, of course), and therefore I hope
that the present issue will be fixed in these versions, too.

LibreOffice 3.6.5 will be released about end of January 2013. Until then, I can
only ask you to be patient or, better, to find out which accessibility-related
setting or utility (see my “questionnaire” above) causes the crash, and to
disable this setting or utility.

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


[Libreoffice-bugs] [Bug 58684] New: FORMATTING: By cell formatting user define didn't work correct

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

  Priority: medium
Bug ID: 58684
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: FORMATTING: By cell formatting user define didn't work
correct
  Severity: normal
Classification: Unclassified
OS: All
  Reporter: v...@xs4all.nl
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.0.0.0.beta2
 Component: Spreadsheet
   Product: LibreOffice

Created attachment 72035
  -- https://bugs.freedesktop.org/attachment.cgi?id=72035action=edit
In cell c3 is the userdefined what didn't work correct.

When i define a cell with format-cell-numbers-userdefine and make by formatcode
S 0. The cell give in the sheet S 200 and not S 200.
See also the attachment in cell C3.

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


[Libreoffice-bugs] [Bug 58685] New: Suggest a filename when saving

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

  Priority: medium
Bug ID: 58685
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: Suggest a filename when saving
  Severity: enhancement
Classification: Unclassified
OS: All
  Reporter: s.mehrbr...@gmail.com
  Hardware: All
Status: NEW
   Version: 4.1.0.0.alpha0+ Master
 Component: Writer
   Product: LibreOffice

When saving a Text document, instead of suggesting Untitled 1 as filename,
this could be more intelligent.

The suggestion should be based the used styles in an order like this:

- Title
- Heading 1
- Text Body
- Default Style

This means, if the document has a Title style, suggest it as filename. If
not, look for Heading 1, etc.

It should be limited to 3-5 Words or so.

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


[Libreoffice-bugs] [Bug 58643] EDITING: Systematic LO 3.6.4 crash on Mac OSX 10.8 using calc

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

--- Comment #13 from Julien Nabet serval2...@yahoo.fr ---
Roman: is your questionnaire available somewhere? (a TDF/LO wiki or something)
It could be really very useful to help on MacOs specific bugs.
(Meanwhile, I'll copy paste it on my notes :-))

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


[Libreoffice-bugs] [Bug 58643] EDITING: Systematic LO 3.6.4 crash on Mac OSX 10.8 using calc

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

--- Comment #14 from Roman Eisele b...@eikota.de ---
(In reply to comment #12)
 At least your second and third report (about a hang/freeze) is very similar
 to the reports attached to bug 57245 and its duplicates. Therefore I *hope*
 that the present issue is just another instance of the same underlying
 problem.
 
 This would mean *good news*: bug 57245 is supposed to be fixed now ...

Correction: I meant to write bug 56937 in both places (bug 57245 is just a
duplicate of bug 56937 itself).


(In reply to comment #13)
 Roman: is your questionnaire available somewhere? (a TDF/LO wiki or
 something) It could be really very useful to help on MacOs specific bugs.

No, I just copy/paste it myself. But your idea is good: maybe we should create
a little wiki page for it, which we can just link from all such bug reports,
and can edit/improve if new facts appear (e.g. utilities which trigger such
bugs), or to make the text easier to understand ...

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


[Libreoffice-bugs] [Bug 58686] New: CRASH when edit CONDITIONAL FORMATTING

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

  Priority: medium
Bug ID: 58686
  Assignee: libreoffice-bugs@lists.freedesktop.org
   Summary: CRASH when edit CONDITIONAL FORMATTING
  Severity: major
Classification: Unclassified
OS: Windows (All)
  Reporter: libreoff...@bielefeldundbuss.de
  Hardware: Other
Status: UNCONFIRMED
   Version: 4.0.0.0.beta2
 Component: Spreadsheet
   Product: LibreOffice

Steps how to reproduce [Reproducible] with parallel installation of  LOdev 
4.0.0.0.beta2   -  GERMAN UI / German Locale  [Build ID:
4104d660979c57e1160b5135634f732918460a0)]  {tinderbox: @6, pull time
2012-12-20} on German WIN7 Home Premium (64bit) :

1. Open Attachment 69521 for Bug 56742 from LibO Start Center
2. Click sheet Tab for first sheet Gruppe D_2
3. Right click on sheet Tab for first sheet Gruppe D_2
4. context menu 'Move/Copy - Copy - To NEW Document - OK
5. New document opens with sheet contents, for missing CF please see 
   Bug 58677 CONDITIONAL FORMATTING lost after sheet has been copied to new 
document
6. Click cell E8 
Cell cursor around E8
7. Menu 'Format - Conditional Formatting - Conditions'
   CRASH

The crash is 100% reproducible for me

@John:
Can you reproduce this problem?

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


[Libreoffice-bugs] [Bug 57860] FILESAVE: file extension not added when saving a file with '.' in filename

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

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

   What|Removed |Added

 Status|UNCONFIRMED |NEW
   Severity|normal  |minor
 CC||s.mehrbr...@gmail.com
 Ever confirmed|0   |1

--- Comment #1 from Samuel M. s.mehrbr...@gmail.com ---
I reproduced this when using filename.123 as filename.

But it does not happen always, when you have a period in the filename. For
example, 'filename.1' works for me, the extension is added.

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


[Libreoffice-bugs] [Bug 56937] EDITING: freeze when drag-and-drop from Calc input line to anywhere on OSX when BetterTouchTool option window snapping is active

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

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

   What|Removed |Added

 Status|RESOLVED|VERIFIED

--- Comment #26 from Roman Eisele b...@eikota.de ---
VERIFIED as FIXED:

while I can still easily reproduce this bug on Mac OS X 10.6.8 (Intel), when
the BetterTouchTool option window snapping is active, with our 1st beta:
  Version 4.0.0.0.beta1 (Build ID: 87906242e87d3ddb2ba9827818f2d1416d80cc7)
  TinderBox: MacOSX TDF Release, Branch:libreoffice-4-0,
  Time: 2012-12-05_22:13:37
and also e.g. in this master build:
  Version 4.1.0.0.alpha0+ (Build ID: e43d62fb39e0b6b3e59b22110460d23b6d507b5)
  TinderBox: MacOSX-Intel@1-built_no-moz_on_10.6.8, Branch:master,
  Time: 2012-12-06_09:19:57

I can no longer reproduce this bug beginning with the 1st available master
build after the patch for this bug has been committed (see comment #22 above):
  Version 4.1.0.0.alpha0+ (Build ID: 413d1a932eb4c47510dd05905c1ff467cb186d0)
  TinderBox: MacOSX-Intel@1-built_no-moz_on_10.6.8, Branch:master,
  Time: 2012-12-19_04:13:37

So this bug is really fixed, and so are its duplicates.


@ Michael Meeks:
Thank you very much for fixing this nasty issue! This is a big improvement for
LibreOffice on Mac OS X, it will help many users, and it will also make easier
the life for us QA volunteers (fewer bug reports ;-).

Also thanks to Tor Lillqvist for his co-operation!

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