Re: [Libreoffice-commits] .: 6 commits - configure.in i18npool/Library_i18npool.mk solenv/gbuild

2012-05-17 Thread David Tardon
On Wed, May 16, 2012 at 03:00:33PM -0700, Michael Stahl wrote: commit b6076ec3c1b9c384d8229cd079c39f510a9f38f7 Author: Michael Stahl mst...@redhat.com Date: Wed May 16 20:32:28 2012 +0200 gbuild: fix build executable dependencies: Rules that invoke generated executables

Re: [PATCH] make, use mixed paths on cygwin, remove ugly paths conversion

2012-05-17 Thread Andras Timar
2012/5/16 Matúš Kukan matus.ku...@gmail.com: Is there still any problem with translations ? Not after http://cgit.freedesktop.org/libreoffice/core/commit/?id=9baeb0bd8f621457d265f09bd377d7147141030d Andras ___ LibreOffice mailing list

[Libreoffice-commits] .: oox/source

2012-05-17 Thread Muthu Subramanian
oox/source/drawingml/chart/objectformatter.cxx |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) New commits: commit ef4d2a80ee726faa91b3fc2402126813d92666ef Author: Muthu Subramanian sumu...@suse.com Date: Thu May 17 12:47:26 2012 +0530 n#760029: Floor borders were missing

Re: having trouble building udkapi module on master today

2012-05-17 Thread Noel Grandin
On 2012-05-17 00:01, Michael Stahl wrote: so anything more than 1 \ following X: is considered invalid. presumably the configure.in should set this up better? i've tried to fix it, please try again now.. Awesome, thanks, working much better :-) Disclaimer:

[Libreoffice-commits] .: autogen.sh

2012-05-17 Thread Radek Doulík
autogen.sh |7 ++- 1 file changed, 2 insertions(+), 5 deletions(-) New commits: commit cbe733f19aef7546fd8b78a9ef92e6c8d0867f59 Author: Ruslan Kabatsayev b7.10110...@gmail.com Date: Fri May 11 22:20:18 2012 +0400 autogen.sh: append aclocal arguments to ACLOCAL_FLAGS

[PUSHED] Re: [PATCH] Fix autogen.sh configuration when ACLOCAL_FLAGS are non-empty

2012-05-17 Thread Radek Doulik
Hi Ruslan, thanks for your patch. Pushed. Cheers Radek On Fri, 2012-05-11 at 22:31 +0400, Ruslan Kabatsayev wrote: Hello all. Current autogen.sh only sets -I ./m4 when ACLOCAL_FLAGS are empty, leading to problems with expansion of libo_MINGW_CHECK_DLL macro. As people on IRC have said, it

Android port problems

2012-05-17 Thread Tor Lillqvist
As some of you might know, the system dynamic linker on Android (which, like all the Android user level runtime, is not related at all to the one on desktop (GNU/)Linux) has a silly limitation on the number of shared object (dynamic libraries) that can be in use: 128. Given that the number of

Re: Android port problems

2012-05-17 Thread Michael Meeks
Hi Tor, Thanks for the nice summary :-) On Thu, 2012-05-17 at 12:22 +0300, Tor Lillqvist wrote: libraries into fewer. There is an option for that already, --enable-mergelibs, that merges quite a large number of them into one, libmergedlo.so. This works only for libraries in

Re: [Libreoffice-commits] .: 6 commits - configure.in i18npool/Library_i18npool.mk solenv/gbuild

2012-05-17 Thread Michael Stahl
On 17/05/12 07:35, David Tardon wrote: On Wed, May 16, 2012 at 03:00:33PM -0700, Michael Stahl wrote: $(call gb_Extension_get_rootdir,$(1))/$(2) : $(gb_Extension_HELPEXTARGET) -$(call gb_Extension_get_rootdir,$(1))/$(2) : $(3) +$(call gb_Extension_get_rootdir,$(1))/$(2) : $(3)

Re: Android port problems

2012-05-17 Thread Noel Grandin
On 2012-05-17 11:22, Tor Lillqvist wrote: recall. Unfortunately the GNU linker isn't exactly known for its blazing speed, so especially if you are building with debugging Perhaps we should be using the GOLD linker? Much faster (6x) for some people Looks like Mozilla has had some success

Re: Android port problems

2012-05-17 Thread Tor Lillqvist
       How do Mozilla get away without any text relocations ? They do some hack to avoid the problematic crtbegin.o object when linking their shared objects, if I understand correctly. See https://bugzilla.mozilla.org/show_bug.cgi?id=720621 . And they apparently don't use the shared GNU C++

[Bug 41883] MinGW port Most Annoying Bugs

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41883 Bug 41883 depends on bug 41985, which changed state. Bug 41985 Summary: MinGW: UI display broken https://bugs.freedesktop.org/show_bug.cgi?id=41985 What|Old Value |New Value

License statement

2012-05-17 Thread Ruslan Kabatsayev
Hello, All of my past future contributions to LibreOffice may be licensed under the MPL/LGPLv3+ dual license. Regards, Ruslan ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice

[Libreoffice-commits] .: sw/qa

2012-05-17 Thread Miklos Vajna
sw/qa/extras/README | 102 1 file changed, 102 insertions(+) New commits: commit 86ebc34dad026d9a32adca562b4604070e36a7a7 Author: Miklos Vajna vmik...@suse.cz Date: Thu May 17 14:38:48 2012 +0200 sw/qa/extras: add a README explaining

Re: [PATCH] export correct alpha information to xlsx

2012-05-17 Thread Radek Doulik
Hi Markus, could you please send me the document you use to test you patch so that I can look at it? I have checked tools/color.hxx and the transparency is indeed 255 for full transparency, so if the method you fixed outputs alpha then your patch looks correct. Cheers Radek On Sun, 2012-05-13

[Libreoffice-commits] .: cui/source

2012-05-17 Thread Caolán McNamara
cui/source/dialogs/SpellDialog.cxx | 25 - cui/source/dialogs/SpellDialog.hrc |1 + cui/source/dialogs/SpellDialog.src | 10 ++ cui/source/inc/SpellDialog.hxx |3 ++- 4 files changed, 33 insertions(+), 6 deletions(-) New commits: commit

Re: Android port problems

2012-05-17 Thread David Tardon
On Thu, May 17, 2012 at 12:37:48PM +0100, Michael Meeks wrote: Hi Tor, Thanks for the nice summary :-) On Thu, 2012-05-17 at 12:22 +0300, Tor Lillqvist wrote: libraries into fewer. There is an option for that already, --enable-mergelibs, that merges quite a large number of them

[Libreoffice-commits] .: README.cross

2012-05-17 Thread Tor Lillqvist
README.cross | 16 ++-- 1 file changed, 10 insertions(+), 6 deletions(-) New commits: commit 7606616cdd78d14fac485af225a220651187910d Author: Tor Lillqvist tlillqv...@suse.com Date: Thu May 17 16:37:02 2012 +0300 Mention that the android/qa/sc test has not been maintained

[Libreoffice-commits] .: 2 commits - chart2/source dbaccess/source i18npool/source jvmfwk/plugins scripting/source sdext/source sd/source sfx2/source svtools/source svx/source unotools/source

2012-05-17 Thread Takeshi Abe
chart2/source/tools/ObjectIdentifier.cxx|1 - dbaccess/source/filter/xml/xmlExport.cxx|1 - dbaccess/source/ui/app/AppControllerDnD.cxx |2 +- dbaccess/source/ui/dlg/ConnectionHelper.cxx |2 --

[Libreoffice-commits] .: bridges/source

2012-05-17 Thread Caolán McNamara
bridges/source/cpp_uno/gcc3_linux_arm/cpp2uno.cxx |2 -- 1 file changed, 2 deletions(-) New commits: commit ac6833f97921981050722bee3d3cfa13f0897566 Author: Caolán McNamara caol...@redhat.com Date: Thu May 17 14:42:37 2012 +0100 remove TODO: add test which is now done since

[Libreoffice-commits] .: 2 commits - chart2/source dbaccess/source i18npool/source jvmfwk/plugins scripting/source sdext/source sd/source sfx2/source svtools/source svx/source unotools/source

2012-05-17 Thread Takeshi Abe
chart2/source/tools/ObjectIdentifier.cxx|1 - dbaccess/source/filter/xml/xmlExport.cxx|1 - dbaccess/source/ui/app/AppControllerDnD.cxx |2 +- dbaccess/source/ui/dlg/ConnectionHelper.cxx |2 --

[Libreoffice-commits] .: xmloff/source

2012-05-17 Thread Caolán McNamara
xmloff/source/forms/elementimport.cxx |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) New commits: commit 5e0b52c1893ffe04a68333026afa7a557c48d534 Author: Caolán McNamara caol...@redhat.com Date: Thu May 17 14:51:04 2012 +0100 some more ConstAsciiString behind OSL_ENSURE

[Libreoffice-commits] .: sw/inc

2012-05-17 Thread Tor Lillqvist
sw/inc/tblafmt.hxx |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit d202754abf01bafe24b3805ef678a495c16eb5a5 Author: Tor Lillqvist t...@iki.fi Date: Thu May 17 14:30:47 2012 +0300 WaE: 'Impl' defined as a struct here but previously declared as a class

Re: [PATCH] Release notes: use bug titles instead of commit messages if possible

2012-05-17 Thread Ivan Timofeev
Hi Petr, On 15.05.2012 22:25, Ivan Timofeev wrote: I will try tomorrow. Hum, sorry for the delay. Now here is my second try. Strangely, but it seems to work... Best Regards, Ivan From 94236a904138d2771609344f3b428493cd6efa39 Mon Sep 17 00:00:00 2001 From: Ivan Timofeev

Calc/ODFF spreadsheet functions (was: [PUSHED][PATCH] fdo#44456 added calc function DATEDIF as in ODF 1.2)

2012-05-17 Thread Eike Rathke
Hi, On Wednesday, 2012-05-16 09:28:16 +0200, Winfried Donkers wrote: Ehh.. I'm not familiar with adding content to (wiki/web) pages. And anyway, Eike deserves at least as much credit for this patch. I've no problem with being not explicitly mentioned, but add me if you think I deserve it ;-)

[Libreoffice-commits] .: solenv/gbuild

2012-05-17 Thread François Tigeot
solenv/gbuild/platform/DRAGONFLY_INTEL_GCC.mk |2 +- solenv/gbuild/platform/DRAGONFLY_X86_64_GCC.mk |2 +- 2 files changed, 2 insertions(+), 2 deletions(-) New commits: commit 99ea506a582d547bb14ec7f1a0bf469991e3f669 Author: François Tigeot ftig...@wolfpond.org Date: Thu May 17

getting setup for gerrit (ACTION REQUIRED)

2012-05-17 Thread Bjoern Michaelsen
Hi, we will move to gerrit soon and you need to take the following action now to make that as painless as possible: 1) login with OpenID(1) at gerrit.documentfoundation.org 2) Click on Settings in the top-left corner (you might be redirected there on first login anyway) 3) Click on Profile,

Re: getting setup for gerrit (ACTION REQUIRED)

2012-05-17 Thread Norbert Thiebaud
On Thu, May 17, 2012 at 10:41 AM, Bjoern Michaelsen bjoern.michael...@canonical.com wrote: Hi, we will move to gerrit soon and you need to take the following action now to make that as painless as possible: 1) login with OpenID(1) at gerrit.documentfoundation.org 2) Click on Settings in the

Re: How to add color scales to ODF?

2012-05-17 Thread Eike Rathke
Hi Markus, On Wednesday, 2012-05-16 15:14:54 +0200, Markus Mohrhard wrote: Disadvantages: - need to introduce some non style parts into the style section Um.. why? what? how? IMHO something like information that the style should only be applied for the top 10% of a range is nothing

[PATCH] fdo#40778 - Remove dictionary choice when adding new entry to the spellchecker

2012-05-17 Thread Rob Snelders
Hi All, Here 2 patches related to bug 40778. Patch 1 removes the submenu of adding new words to the dictionary when there is only 1 dictionary in the spellcheck-popupmenu in writer. Patch 2 does the same for the popupmenu in the other programs. -- Greetings, Rob Snelders From

Re: getting setup for gerrit (ACTION REQUIRED)

2012-05-17 Thread Ivan Timofeev
3) Click on Profile, pick your Username (your freenode IRC nick) Still not joined IRC, used 'ivan' as Username. Ok? 7/ people with a fdo account, please let us know when you've done the above so that we can add you to the appropriate group on gerrit I am ready. fdo account name:

Re: getting setup for gerrit (ACTION REQUIRED)

2012-05-17 Thread Norbert Thiebaud
On Thu, May 17, 2012 at 11:12 AM, Ivan Timofeev timofeev@gmail.com wrote: 3) Click on Profile, pick your Username (your freenode IRC nick) Still not joined IRC, used 'ivan' as Username. Ok? 7/ people with a fdo account, please let us know when you've done the above so that we can add

Re: getting setup for gerrit (ACTION REQUIRED)

2012-05-17 Thread Christian Lohmaier
Hi Norbert, *, On Thu, May 17, 2012 at 5:53 PM, Norbert Thiebaud nthieb...@gmail.com wrote: [...] 7/ people with a fdo account, please let us know when you've done the above so that we can add you to the appropriate group on gerrit Done so (cloph) - but do you really want everybody to reply

Re: getting setup for gerrit (ACTION REQUIRED)

2012-05-17 Thread Norbert Thiebaud
On Thu, May 17, 2012 at 11:34 AM, Christian Lohmaier lohmaier+libreoff...@googlemail.com wrote: Hi Norbert, *, On Thu, May 17, 2012 at 5:53 PM, Norbert Thiebaud nthieb...@gmail.com wrote: [...] 7/ people with a fdo account, please let us know when you've done the above so that we can add you

[Libreoffice-commits] .: Branch 'feature/gbuild_testtools' - testtools/CustomTarget_bridgetest_testComponent.mk testtools/Module_testtools.mk testtools/Rdb_uno_services.mk

2012-05-17 Thread David Ostrovsky
testtools/CustomTarget_bridgetest_testComponent.mk | 42 testtools/Module_testtools.mk |4 + testtools/Rdb_uno_services.mk | 43 + 3 files changed, 88 insertions(+), 1 deletion(-) New commits: commit

[Libreoffice-commits] .: tail_build/README

2012-05-17 Thread Tor Lillqvist
tail_build/README |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 19e4320c3577ed17b1870fbf43ea25242621b441 Author: Tor Lillqvist tlillqv...@suse.com Date: Thu May 17 20:57:17 2012 +0300 Correct obsolete repo name Change-Id:

[Libreoffice-commits] .: writerfilter/CustomTarget_source.mk

2012-05-17 Thread Matus Kukan
writerfilter/CustomTarget_source.mk | 13 +++-- 1 file changed, 7 insertions(+), 6 deletions(-) New commits: commit c1f7f1f4c812f5bba073ff99e6e8c89bd74fb0a7 Author: Matúš Kukan matus.ku...@gmail.com Date: Thu May 17 20:35:46 2012 +0200 sigh, more missing dependencies

[Libreoffice-commits] .: Branch 'feature/gbuild_testtools' - testtools/CustomTarget_uno_test.mk testtools/Module_testtools.mk testtools/Rdb_uno_services.mk

2012-05-17 Thread David Ostrovsky
testtools/CustomTarget_uno_test.mk | 42 + testtools/Module_testtools.mk |4 +-- testtools/Rdb_uno_services.mk |8 --- 3 files changed, 44 insertions(+), 10 deletions(-) New commits: commit b24358909d04d0d472d6b4c7f7c05dc947da9220

[Libreoffice-commits] .: sc/source

2012-05-17 Thread Noel Power
sc/source/ui/view/viewdata.cxx | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) New commits: commit 8b1d29bc9b00bc2730738a990023a65ab6e0219b Author: Noel Power noel.po...@novell.com Date: Thu May 17 22:03:46 2012 +0100 fix bad stl access fdo#45987 Change-Id:

Re: ODF proposal for number:fill-character element

2012-05-17 Thread Eike Rathke
Hi Noel, On Wednesday, 2012-05-16 09:35:52 +0100, Noel Power wrote: This element can contain one instance of each of the following elements: [and addnumber:fill-character] is there a need to specify some tolerance ? e.g. Excel seems to accept the presence of multiple repeat character

Branch 'feature/gbuild_testtools' - review request

2012-05-17 Thread David Ostrovsky
Hi, could you please review the current state of this branch? source/bridgetest/* is up and running now (except pyuno). The creation of some batch files is skipped, because they wasn't used anyway. The single uno test is implemented in CustomTarget_uno_test.mk and marked with .PHONY to run

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

2012-05-17 Thread Kohei Yoshida
sc/inc/sc.hrc |4 ++-- sc/source/ui/dbgui/filtdlg.cxx |4 ++-- sc/source/ui/dbgui/pfiltdlg.cxx |4 ++-- sc/source/ui/src/scstring.src | 20 ++-- sc/source/ui/view/gridwin.cxx |8 5 files changed, 20 insertions(+), 20 deletions(-)

[Libreoffice-commits] .: sc/source

2012-05-17 Thread Kohei Yoshida
sc/source/ui/cctrl/checklistmenu.cxx | 146 --- sc/source/ui/inc/checklistmenu.hxx |6 + sc/source/ui/view/gridwin.cxx|1 3 files changed, 142 insertions(+), 11 deletions(-) New commits: commit 3da4ab93e14bbe472ac0a6bce52616a93a2506d2 Author:

[Libreoffice-commits] .: sc/source

2012-05-17 Thread Kohei Yoshida
sc/source/ui/inc/gridwin.hxx |2 - sc/source/ui/view/gridwin.cxx | 46 ++ 2 files changed, 47 insertions(+), 1 deletion(-) New commits: commit 2a755c0cd61b619ed14e023ad34fc7596eafdf34 Author: Kohei Yoshida kohei.yosh...@gmail.com Date: Thu May 17

[Libreoffice-commits] .: sc/source

2012-05-17 Thread Kohei Yoshida
sc/source/ui/cctrl/checklistmenu.cxx |7 +++ 1 file changed, 7 insertions(+) New commits: commit d3289425003bf1a8d074dc82d80f50dbdd084658 Author: Kohei Yoshida kohei.yosh...@gmail.com Date: Thu May 17 22:42:31 2012 -0400 Make the window taller as appropriate. Change-Id:

[Libreoffice-commits] .: sc/source

2012-05-17 Thread Kohei Yoshida
sc/source/ui/cctrl/checklistmenu.cxx |4 1 file changed, 4 deletions(-) New commits: commit 0ea1287bd9b877524706ae57c2fc32ed54fb062b Author: Kohei Yoshida kohei.yosh...@gmail.com Date: Thu May 17 22:45:40 2012 -0400 Actually it's okay to add separator items as-is to the

License statement - code contributions

2012-05-17 Thread Alexander Thurgood
Any code contributions I may have made, and all such future code contributions, to the LibreOffice code base, are hereby licensed under the MPL/LGPLv3+ dual license, to the extent possible under the relevant applicable law. Alex Thurgood ___

Re: [PATCH][PUSHED] fdo#47246: vcl: fix --enable-headless build

2012-05-17 Thread David Tardon
On Wed, May 16, 2012 at 01:39:51PM +0200, Matúš Kukan wrote: On 16 May 2012 13:07, Riccardo Magliocchetti riccardo.magliocche...@gmail.com wrote: Hello, following android way of building stuff in vcl/ is enough to fix it. Thanks, pushed. Marking as pushed. D.

[Libreoffice-qa] LibreOffice QA call 2012-05-18 14:00 UTC

2012-05-17 Thread Bjoern Michaelsen
Hi all, the next LibreOffice QA call is on 2012-05-18 14:00 UTC -- the agenda is suspiciously empty so far this time (I havnt had too much time to dig through the list during UDS), additions and topics most welcome! pending action items: - Update/Create active triagers wiki page (Cor/Rainer)

Re: [Libreoffice-qa] LibreOffice QA call 2012-05-18 14:00 UTC

2012-05-17 Thread Florian Reisinger
Hi Bjoern, all! Which room? ( or is it always the same) Am 17.05.2012 18:55, schrieb Bjoern Michaelsen: Hi all, the next LibreOffice QA call is on 2012-05-18 14:00 UTC -- the agenda is suspiciously empty so far this time (I havnt had too much time to dig through the list during UDS),

[Libreoffice-bugs] [Bug 50012] FILEOPEN: Input/output error

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50012 --- Comment #1 from bfoman b...@mailinator.com 2012-05-16 23:08:53 UTC --- Confirmed with: LOdev 3.5.3rc1+ Build ID: 51648779-22e3d74-d554af7 Windows 7 Professional SP1 64 bit File is viewable in Excel 2010. Note: Excel 2010 complains about

[Libreoffice-bugs] [Bug 42185] FILESAFE: Calc segfaults trying to save a document

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42185 Julien Nabet serval2...@yahoo.fr changed: What|Removed |Added Status|NEEDINFO|RESOLVED

[Libreoffice-bugs] [Bug 49997] EDITING: Paste menu options not available in Calc when pasting to multiple rows

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49997 --- Comment #1 from bfoman b...@mailinator.com 2012-05-16 23:16:38 PDT --- Confirmed with: LOdev 3.5.3rc1+ Build ID: 51648779-22e3d74-d554af7 Windows 7 Professional SP1 64 bit Users migrating from Excel would be surprised... -- Configure

[Libreoffice-bugs] [Bug 49954] EDITING: Hangs after Picture inserted

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49954 --- Comment #2 from bfoman b...@mailinator.com 2012-05-16 23:29:03 PDT --- Checked with: LOdev 3.5.3rc1+ Build ID: 51648779-22e3d74-d554af7 Windows 7 Professional SP1 64 bit Could not reproduce. Everything is OK. -- Configure bugmail:

[Libreoffice-bugs] [Bug 49903] FILEOPEN: large sheet causes crash

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49903 --- Comment #3 from bfoman b...@mailinator.com 2012-05-16 23:38:56 PDT --- Confirmed with: LOdev 3.5.3rc1+ Build ID: 51648779-22e3d74-d554af7 Windows 7 Professional SP1 64 bit Calc crashes near the end of loading file progress bar. --

[Libreoffice-bugs] [Bug 48946] not find JRE

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48946 --- Comment #10 from pz1 p...@xs4all.nl 2012-05-16 23:53:55 PDT --- (In reply to comment #9) With the most updated master sources and a brand new LO profile, could you try to retrieve an useful backtrace by following this great video ?

[Libreoffice-bugs] [Bug 49733] When starting a presentation only the speaker screen is shown

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49733 --- Comment #3 from bfoman b...@mailinator.com 2012-05-17 00:05:21 PDT --- Confirmed with: LOdev 3.5.3rc1+ Build ID: 51648779-22e3d74-d554af7 Windows 7 Professional SP1 64 bit When attached example presentation is started on the left screen

[Libreoffice-bugs] [Bug 49661] Document Fails to Open Properly

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49661 --- Comment #1 from bfoman b...@mailinator.com 2012-05-17 00:13:39 PDT --- Could you attach any example documents to allow others to check on different system/build? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email

[Libreoffice-bugs] [Bug 49646] VIEWING: Notes in PPTX files do not show up

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49646 --- Comment #1 from bfoman b...@mailinator.com 2012-05-17 00:14:59 PDT --- Could you attach example presentation to allow others to check on different system/build? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email

[Libreoffice-bugs] [Bug 50035] New: CONFIGURATION: During initialization of Extensions several CRASHes until first launch will be successful.

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50035 Bug #: 50035 Summary: CONFIGURATION: During initialization of Extensions several CRASHes until first launch will be successful. Classification: Unclassified Product: LibreOffice

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

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=6 --- Comment #7 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 2012-05-17 00:20:37 PDT --- Add Bug 50035 - CONFIGURATION: During initialization of Extensions several CRASHes until first launch will be successful -- Configure bugmail:

[Libreoffice-bugs] [Bug 50036] New: Transparent Menu Bar

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50036 Bug #: 50036 Summary: Transparent Menu Bar Classification: Unclassified Product: LibreOffice Version: LibO Master Platform: Other OS/Version: All Status: UNCONFIRMED

[Libreoffice-bugs] [Bug 49954] EDITING: Hangs after Picture inserted

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49954 Elmar rob...@iafrica.com changed: What|Removed |Added Platform|Other |x86 (IA32)

[Libreoffice-bugs] [Bug 50036] Transparent Menu Bar

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50036 --- Comment #1 from Rainer Bielefeld libreoff...@bielefeldundbuss.de 2012-05-17 00:37:43 UTC --- Created attachment 61741 -- https://bugs.freedesktop.org/attachment.cgi?id=61741 Screenshot -- Configure bugmail:

[Libreoffice-bugs] [Bug 49994] TABLES : hangs on selecting text in table in big cell on neighboring pages

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49994 Palagichev palagic...@mail.ru changed: What|Removed |Added Summary|hangs on selecting text in |TABLES : hangs on

[Libreoffice-bugs] [Bug 48946] not find JRE

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48946 --- Comment #11 from Julien Nabet serval2...@yahoo.fr 2012-05-17 00:51:06 PDT --- (In reply to comment #10) (In reply to comment #9) With the most updated master sources and a brand new LO profile, could you try to retrieve an useful

[Libreoffice-bugs] [Bug 45457] EDITING: segfault in libswlx.so while editing file

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45457 --- Comment #2 from kostas kostas.g.papadopou...@gmail.com 2012-05-17 00:58:01 PDT --- Hi, Thanks for your interest. I have tried again with version LibreOffice 3.4.6 OOO340m1 (Build:602) (from debian testing). So far it has not crashed.

[Libreoffice-bugs] [Bug 49903] FILEOPEN: large sheet causes crash

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49903 --- Comment #4 from rim r@hccnet.nl 2012-05-17 01:04:02 PDT --- just retested running Ubuntu-12.04. Same crash on 3.5.2 - but now runs well after the recent update (3.5.3). Strange difference between the 'same' 3.5.3-versions of Win7 and

[Libreoffice-bugs] [Bug 49461] FILEOPEN : can't read some ODS-files since upgrade to ubuntu 12.04

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49461 Dekeyser hugo.dekey...@gmail.com changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Libreoffice-bugs] [Bug 45457] EDITING: segfault in libswlx.so while editing file

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45457 sasha.libreoff...@gmail.com changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Libreoffice-bugs] [Bug 50038] New: CONFIGURATION: Writer compresses toolbars with hidden buttons, even if the visible ones fit on screen

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50038 Bug #: 50038 Summary: CONFIGURATION: Writer compresses toolbars with hidden buttons, even if the visible ones fit on screen Classification: Unclassified Product: LibreOffice

[Libreoffice-bugs] [Bug 50039] New: UI: GNOME's Large Text accessibility setting makes some Writer config dialogues inaccessible

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50039 Bug #: 50039 Summary: UI: GNOME's Large Text accessibility setting makes some Writer config dialogues inaccessible Classification: Unclassified Product: LibreOffice Version:

[Libreoffice-bugs] [Bug 42185] FILESAFE: Calc segfaults trying to save a document

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=42185 --- Comment #14 from Thomas Mittelstaedt tmsta...@t-mittelstaedt.de 2012-05-17 02:46:34 PDT --- (In reply to comment #13) Thank you for your feedback. Since, you can't reproduce the crash after the last one you quoted, I update to

[Libreoffice-bugs] [Bug 50035] CONFIGURATION: During initialization of Extensions several CRASHes until first launch will be successful.

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50035 Michael Meeks michael.me...@novell.com changed: What|Removed |Added CC|

[Libreoffice-bugs] [Bug 49350] freeze when saving new entry to a large autocorrect replacement table

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49350 --- Comment #6 from tommy27 ba...@quipo.it 2012-05-17 03:57:03 PDT --- I start thinking this issue is Windows related. I tried with an high-performance PC (Win7 ultimate sp1 64bit; Intel Xeon @2.66 Ghz 2 processors; 8 GB RAM) and I still

[Libreoffice-bugs] [Bug 45864] UI: Make Glue Point deletion more intuitive

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45864 sasha.libreoff...@gmail.com changed: What|Removed |Added Platform|Other |All

[Libreoffice-bugs] [Bug 45864] UI: Add Glue Point deletion tool

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45864 sasha.libreoff...@gmail.com changed: What|Removed |Added Summary|UI: Make Glue Point |UI: Add Glue Point

[Libreoffice-bugs] [Bug 50040] New: build failed XServiceInfo::getImplementationId

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50040 Bug #: 50040 Summary: build failed XServiceInfo::getImplementationId Classification: Unclassified Product: LibreOffice Version: LibO Master Platform: x86 (IA32) OS/Version: Linux

[Libreoffice-bugs] [Bug 50041] New: FORMATTING: upper and lower case

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50041 Bug #: 50041 Summary: FORMATTING: upper and lower case Classification: Unclassified Product: LibreOffice Version: LibO 3.5.3 release Platform: Other OS/Version: All

[Libreoffice-bugs] [Bug 45869] PDF: PDF conversion different from original ODS

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45869 sasha.libreoff...@gmail.com changed: What|Removed |Added Platform|Other |All

[Libreoffice-bugs] [Bug 45869] PDF: PDF conversion different from original ODS

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45869 --- Comment #2 from sasha.libreoff...@gmail.com 2012-05-17 05:01:15 PDT --- @ Kohei Greetings What do You think about this bug? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail

[Libreoffice-bugs] [Bug 45874] Function show comments is always enabled.

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45874 sasha.libreoff...@gmail.com changed: What|Removed |Added CC||sasha.libreoff...@gmail.com

[Libreoffice-bugs] [Bug 45879] VIEWING: Selected Glue Point no longer highlighted

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45879 sasha.libreoff...@gmail.com changed: What|Removed |Added Platform|Other |All

[Libreoffice-bugs] [Bug 45884] LibreOffice does not understand scale value with style:rel-width and style:rel-height

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45884 sasha.libreoff...@gmail.com changed: What|Removed |Added CC||sasha.libreoff...@gmail.com

[Libreoffice-bugs] [Bug 45888] Custom page sizes for printing

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45888 sasha.libreoff...@gmail.com changed: What|Removed |Added CC||sasha.libreoff...@gmail.com

[Libreoffice-bugs] [Bug 41883] MinGW port Most Annoying Bugs

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=41883 Bug 41883 depends on bug 41985, which changed state. Bug 41985 Summary: MinGW: UI display broken https://bugs.freedesktop.org/show_bug.cgi?id=41985 What|Old Value |New Value

[Libreoffice-bugs] [Bug 49499] : Starting new LibreOffice v3.4.5+ crashes when starting during their splash screens.

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=49499 --- Comment #19 from Ant a...@zimage.com 2012-05-17 05:24:08 PDT --- So, any other ideas? :) -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee

[Libreoffice-bugs] [Bug 45893] PRINTING: add feature to print charts

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45893 sasha.libreoff...@gmail.com changed: What|Removed |Added Platform|Other |All

[Libreoffice-bugs] [Bug 50044] New: VIEWING: Wrong row height, all row are shown collapsed

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50044 Bug #: 50044 Summary: VIEWING: Wrong row height, all row are shown collapsed Classification: Unclassified Product: LibreOffice Version: LibO 3.5.1 Release Platform: Other

[Libreoffice-bugs] [Bug 50045] New: FILESAVE Cannot 'Save graphics' from OLE object

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50045 Bug #: 50045 Summary: FILESAVE Cannot 'Save graphics' from OLE object Classification: Unclassified Product: LibreOffice Version: LibO 3.5.2 Release Platform: Other OS/Version:

[Libreoffice-bugs] [Bug 45903] Can't go from ctrl+F search filed to ctrl+alt+f replace dialog

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45903 sasha.libreoff...@gmail.com changed: What|Removed |Added Platform|Other |All

[Libreoffice-bugs] [Bug 45922] xlr filetype not associated with Calc

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45922 sasha.libreoff...@gmail.com changed: What|Removed |Added CC||sasha.libreoff...@gmail.com

[Libreoffice-bugs] [Bug 50046] New: FILEOPEN: Unable to open html excel files

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50046 Bug #: 50046 Summary: FILEOPEN: Unable to open html excel files Classification: Unclassified Product: LibreOffice Version: LibO 3.5.1 Release Platform: Other OS/Version: All

[Libreoffice-bugs] [Bug 50046] FILEOPEN: Unable to open html excel files

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50046 --- Comment #1 from Nicola Ruggero nicola_rugg...@despar.it 2012-05-17 05:41:09 PDT --- Created attachment 61747 -- https://bugs.freedesktop.org/attachment.cgi?id=61747 file format post-excel2003 -- Configure bugmail:

[Libreoffice-bugs] [Bug 45927] Save as Microsoft Word 97/2000/XP/2003 does not preserve ithe layer position of the inserted pictures

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45927 sasha.libreoff...@gmail.com changed: What|Removed |Added CC||sasha.libreoff...@gmail.com

[Libreoffice-bugs] [Bug 45929] : Access to password prtected document in Librecalc prevented.

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45929 sasha.libreoff...@gmail.com changed: What|Removed |Added CC||sasha.libreoff...@gmail.com

[Libreoffice-bugs] [Bug 50047] New: Dutch language does not wrok

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50047 Bug #: 50047 Summary: Dutch language does not wrok Classification: Unclassified Product: LibreOffice Version: unspecified Platform: x86 (IA32) OS/Version: Windows (All)

[Libreoffice-bugs] [Bug 45947] EDITING: Autoincrement in external HSQLDB could not be created in GUI - wrong SQL-Code

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45947 --- Comment #1 from sasha.libreoff...@gmail.com 2012-05-17 06:01:12 PDT --- @ Lionel Greetings What do You think about this bug? -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email --- You are receiving this mail

[Libreoffice-bugs] [Bug 50048] New: FILEOPEN: no tooltip for file names in startcenter

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50048 Bug #: 50048 Summary: FILEOPEN: no tooltip for file names in startcenter Classification: Unclassified Product: LibreOffice Version: unspecified Platform: Other OS/Version: All

[Libreoffice-bugs] [Bug 45953] Incorrectly printing of documents when paper size in LO is not the default of the printer

2012-05-17 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=45953 sasha.libreoff...@gmail.com changed: What|Removed |Added CC||sasha.libreoff...@gmail.com

  1   2   >