Contextual menu of Libreoffice Writer

2012-12-27 Thread Carmen Alonso
LibreOffice developers: I am a math teacher who used a lot this suite (on Ubuntu). And I really miss in the contextual menutwo commands: - Command to equalize properties (to match the format brush) - An equation editor, like MathType(for me, the better) Many colleagues use MS Word

License Statement

2012-12-27 Thread Joren
I confirm that all of my past and future contributions to the LibreOffice project are licensed under the MPL / LGPLv3+. Kind regards, Joren De Cuyper ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org

[Libreoffice-commits] .: basctl/source

2012-12-27 Thread Libreoffice Gerrit user
basctl/source/basicide/baside2.cxx |9 ++--- 1 file changed, 2 insertions(+), 7 deletions(-) New commits: commit 47139512bc5df08704fd9df362c7de86b99fe7e8 Author: Marcos Paulo de Souza marcos.souza@gmail.com Date: Wed Dec 26 14:44:52 2012 -0200 fdo#57950: remove consecutive

[PUSHED] fdo#57950: remove consecutive append in basctl with StringBu...

2012-12-27 Thread Tor Lillqvist (via Code Review)
Hi, Thank you for your patch! It has been merged to LibreOffice. If you are interested in details, please visit https://gerrit.libreoffice.org/1486 Approvals: Tor Lillqvist: Verified; Looks good to me, approved -- To view, visit https://gerrit.libreoffice.org/1486 To unsubscribe,

Temporary shutdown of my two tinderboxes during holiday season

2012-12-27 Thread Thorsten Behrens
MacOSX-Intel_3-OSX_10.6.0-gcc_4.0.1 and Linux-Fedora17-x86_64_4-gcc-4.7-dbgutil located at my place, will be off for the next ~7 days. And I'll be mostly off the grid, too. ;) All the best, -- Thorsten signature.asc Description: Digital signature

[Libreoffice-commits] .: solenv/gbuild svl/source sw/source tools/source

2012-12-27 Thread Libreoffice Gerrit user
solenv/gbuild/platform/com_MSC_defs.mk |1 - svl/source/inc/poolio.hxx |2 +- sw/source/filter/html/css1atr.cxx |4 +++- sw/source/filter/html/htmlatr.cxx |4 +++- sw/source/filter/ww8/ww8atr.cxx|4 +++- tools/source/fsys/dirent.cxx |

[Libreoffice-commits] .: sw/source

2012-12-27 Thread Libreoffice Gerrit user
sw/source/filter/html/css1atr.cxx | 20 sw/source/filter/html/htmlatr.cxx | 27 --- sw/source/filter/ww8/ww8atr.cxx | 27 --- 3 files changed, 74 deletions(-) New commits: commit f7ad8786736c4682c2ee45c33665c8364bab6547

[PATCH] String Cleanup and news OUString methods/constructors

2012-12-27 Thread Ricardo Montania (via Code Review)
Hi, I have submitted a patch for review: https://gerrit.libreoffice.org/1491 To pull it, you can do: git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/91/1491/1 String Cleanup and news OUString methods/constructors Change-Id: Ia6142020330d0e12650fdc519b66f00e607eac42 ---

No UNSIGNED_BYTE in Any

2012-12-27 Thread Lionel Elie Mamane
Hi, The following code does not do what one would think: sal_uInt8 nValue = 255; Any aValue; aValue = nValue; aValue now contains a *BOOLEAN*. That's rather... surprising, and could bite any of us one day. In particular: sal_uInt8 naValue; aValue = naValue; now naValue contains 1. Not

Re: [PATCH] Base: fix incorrect field removal in criterion inside query design view

2012-12-27 Thread Lionel Elie Mamane
On Wed, Dec 19, 2012 at 06:34:18PM +0100, Olivier Ploton wrote: On Thu, 13 Dec 2012 07:53:24 +0100 Lionel Elie Mamane lio...@mamane.lu wrote: On Wed, Dec 12, 2012 at 10:53:07PM +0100, Olivier Ploton wrote: Problem: you cannot type a field name inside a criterion if the field name is also the

Cppcheck reports Resource leak in setup_native/source/win32/wintools/makecab/parseddf.c

2012-12-27 Thread julien2412
Hello, cppcheck reported this: [setup_native/source/win32/wintools/makecab/parseddf.c:381]: (error) Resource leak: ddf it's in the function ParseDdf fclose function seems to miss. (see http://opengrok.libreoffice.org/xref/core/setup_native/source/win32/wintools/makecab/parseddf.c#356) I'm not

[GERRIT DOWN FOR MAINTENANCE] is over

2012-12-27 Thread David Ostrovsky
Hi, gerrit is available again (version 2.5.1). Thanks David ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice

Cppcheck reports an assignment which isn't used in sd/source/ui/func/fupage.cxx

2012-12-27 Thread julien2412
Hello, Cppcheck reported this: [sd/source/ui/func/fupage.cxx:243]: (style) Variable 'pPtr' is assigned a value that is never used Here are some lines: 236 const sal_uInt16* pPtr = aNewAttr.GetRanges(); 237 sal_uInt16 p1 = pPtr[0], p2 = pPtr[1]; 238 while(pPtr[2] (pPtr[2]

Cppcheck false positive? (eg 'PropEntry::operator=' should return 'PropEntry ')

2012-12-27 Thread julien2412
Hello, Cppcheck reports this kind of thing: [sd/source/filter/ppt/propread.hxx:116]: (style) 'PropEntry::operator=' should return 'PropEntry '. 116 const PropEntry operator=(const PropEntry rPropEntry); Indeed, I understand this cppcheck report, if you assign a variable, the result can't

[PUSHED] convert icu to gbuild and add to tail_build

2012-12-27 Thread Tor Lillqvist (via Code Review)
Hi, Thank you for your patch! It has been merged to LibreOffice. If you are interested in details, please visit https://gerrit.libreoffice.org/1488 Approvals: Tor Lillqvist: Verified; Looks good to me, approved -- To view, visit https://gerrit.libreoffice.org/1488 To unsubscribe,

Re: Cppcheck false positive? (eg 'PropEntry::operator=' should return 'PropEntry ')

2012-12-27 Thread Kohei Yoshida
On Thu, Dec 27, 2012 at 9:53 AM, julien2412 serval2...@yahoo.fr wrote: Hello, Cppcheck reports this kind of thing: [sd/source/filter/ppt/propread.hxx:116]: (style) 'PropEntry::operator=' should return 'PropEntry '. 116 const PropEntry operator=(const PropEntry rPropEntry); Indeed,

Re: Cppcheck false positive? (eg 'PropEntry::operator=' should return 'PropEntry ')

2012-12-27 Thread Julien Nabet
On 27/12/2012 19:36, Kohei Yoshida wrote: On Thu, Dec 27, 2012 at 9:53 AM, julien2412 serval2...@yahoo.fr mailto:serval2...@yahoo.fr wrote: Hello, Cppcheck reports this kind of thing: [sd/source/filter/ppt/propread.hxx:116]: (style) 'PropEntry::operator=' should return

Re: Contextual menu of Libreoffice Writer

2012-12-27 Thread Regina Henschel
Hi Carmen, this is the wrong list. This list is for doing actual development. Please use us...@global.libreoffice.org or disc...@documentfoundation.org to discuss your ideas. If a feature is really missing, then you should write a feature request in our Bugzilla. Carmen Alonso schrieb:

Re: Cppcheck false positive? (eg 'PropEntry::operator=' should return 'PropEntry ')

2012-12-27 Thread Lubos Lunak
On Thursday 27 of December 2012, Julien Nabet wrote: But there are still these: [lingucomponent/source/languageguessing/simpleguesser.hxx:43]: (style) 'SimpleGuesser::operator=' should return 'SimpleGuesser '. [reportdesign/source/filter/xml/xmlComponent.hxx:37]: (style)

[PUSHED] fdo#58222 The BASIC HEX Command now returns uppercase hexade...

2012-12-27 Thread Norbert Thiebaud (via Code Review)
Hi, Thank you for your patch! It has been merged to LibreOffice. If you are interested in details, please visit https://gerrit.libreoffice.org/1428 Approvals: Norbert Thiebaud: Verified; Looks good to me, approved -- To view, visit https://gerrit.libreoffice.org/1428 To unsubscribe,

Re: Cppcheck false positive? (eg 'PropEntry::operator=' should return 'PropEntry ')

2012-12-27 Thread julien2412
Thank you Lubos for the reference. So I won't change these since it could generate some regressions if badly done. About first report, I meant that = operator is a priori for assignment not for comparison. So even if the one who did this, did it right (and I suppose it's the case), it could be a

[PATCH] fdo#56976 fixes up Arrow import bug

2012-12-27 Thread Lennard Wasserthal (via Code Review)
Hi, I have submitted a patch for review: https://gerrit.libreoffice.org/1492 To pull it, you can do: git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/92/1492/1 fdo#56976 fixes up Arrow import bug Importing an LibreOffice upArrow from an pptx document caused it and

[PATCH] convert redland to gbuild and add to tail_build

2012-12-27 Thread Peter Foley (via Code Review)
Hi, I have submitted a patch for review: https://gerrit.libreoffice.org/1493 To pull it, you can do: git pull ssh://gerrit.libreoffice.org:29418/core refs/changes/93/1493/1 convert redland to gbuild and add to tail_build Change-Id: I953fb203b1a24920f236c2f6e1fd9d82edda1f0f --- M

Missing sane/sane.h check

2012-12-27 Thread Robert Peters
Hello, as mentioned in this bug report https://bugs.freedesktop.org/show_bug.cgi?id=56158 build problems should be communicated over the mailing list. So do I. I never tried to build LibreOffice before on my machine, so that the configure script had many complaints about missing dependencies I

[Libreoffice-commits] Changes to 'refs/tags/ooo/OOO340_m0'

2012-12-27 Thread Libreoffice Gerrit user
Tag 'ooo/OOO340_m0' created by Jan Holesovsky ke...@suse.cz at 2012-06-27 14:28 -0700 merged tag ooo/OOO340_m0 from old repositories -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.9 (GNU/Linux) iEYEABECAAYFAk/rCoMACgkQ3NffDXVGNbFbcgCeK70gY0iguBJR9WmFdLoOn+BO ZtkAn0Pltj4xyzebthUPIkAr0WIHO9mr

[Libreoffice-commits] Changes to 'refs/tags/ooo/OOO340_m1'

2012-12-27 Thread Libreoffice Gerrit user
Tag 'ooo/OOO340_m1' created by Jan Holesovsky ke...@suse.cz at 2012-06-27 14:40 -0700 merged tag ooo/OOO340_m1 from old repositories -BEGIN PGP SIGNATURE- Version: GnuPG v2.0.9 (GNU/Linux) iEYEABECAAYFAk/rDWMACgkQ3NffDXVGNbH1VwCdHAUZZQzPAJxW2K6AG9B/Y6QX TAsAoJy7XBERMavLg4EeMX1OMnXwtHE+

[Libreoffice-bugs] [Bug 55079] EDITING: program crashes

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

[Libreoffice-bugs] [Bug 55124] : crash on start

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

[Libreoffice-bugs] [Bug 54618] : Crash at start

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

[Libreoffice-bugs] [Bug 54415] Correction of textes in english -LibreOffice 3.5.2.2 is crashing, restore is possible

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

[Libreoffice-bugs] [Bug 54656] Inserted Columns do not evaluate formulas

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

[Libreoffice-bugs] [Bug 58160] Program not starts after installation

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58160 --- Comment #3 from Zoltán Reizinger zreizin...@hdsnet.hu --- I installed beta2 and program starts correctly. -- You are receiving this mail because: You are the assignee for the bug. ___

[Libreoffice-bugs] [Bug 54720] FILESAVE: System crashes and becomes unresponsive on saving to xslx format

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54720 Julien Nabet serval2...@yahoo.fr changed: What|Removed |Added Status|UNCONFIRMED |NEEDINFO

[Libreoffice-bugs] [Bug 48114] EDITING: Spell Grammar dialog in a loop after Resume

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48114 --- Comment #1 from A stgohi-lob...@yahoo.de --- not reproducible with LO 3.6.4.3. (Win7 Home, 64bit) Please inform about the necessary steps if this bug still exists. -- You are receiving this mail because: You are the assignee for the bug.

[Libreoffice-bugs] [Bug 58796] New: : Query to Oracle database in Base / Missing function

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58796 Priority: medium Bug ID: 58796 Assignee: libreoffice-bugs@lists.freedesktop.org Summary: : Query to Oracle database in Base / Missing function Severity: normal Classification: Unclassified

[Libreoffice-bugs] [Bug 43585] FORMATTING: Crash when we modify the second or lewel level indentation line in the mask mode

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

[Libreoffice-bugs] [Bug 50917] Header keeps disappearing after re-opening a file saved in .doc format

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50917 --- Comment #1 from A stgohi-lob...@yahoo.de --- not reproducible with LO 3.6.4.3. (Win7 Home, 64bit) -- You are receiving this mail because: You are the assignee for the bug. ___ Libreoffice-bugs

[Libreoffice-bugs] [Bug 58797] New: Date field format contain excess quotation mark in Hungarian version

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58797 Priority: medium Bug ID: 58797 Keywords: l10n CC: tima...@gmail.com Assignee: libreoffice-bugs@lists.freedesktop.org Summary: Date field format contain excess quotation mark in

[Libreoffice-bugs] [Bug 54472] VIEWING: Equations Objects

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54472 A stgohi-lob...@yahoo.de changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever confirmed|0

[Libreoffice-bugs] [Bug 43054] Broken odp crashes Impress

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43054 Julien Nabet serval2...@yahoo.fr changed: What|Removed |Added CC||serval2...@yahoo.fr

[Libreoffice-bugs] [Bug 43054] Broken odp crashes Impress

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43054 --- Comment #5 from Julien Nabet serval2...@yahoo.fr --- Created attachment 72171 -- https://bugs.freedesktop.org/attachment.cgi?id=72171action=edit bt + console logs on 3.6 I reproduced a crash with 3.6 sources updated yesterday. -- You are

[Libreoffice-bugs] [Bug 43054] Broken odp crashes Impress

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=43054 Julien Nabet serval2...@yahoo.fr changed: What|Removed |Added CC||r...@novell.com,

[Libreoffice-bugs] [Bug 58798] New: Draw - Unit of Measurement always reset to Inch

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58798 Priority: medium Bug ID: 58798 Assignee: libreoffice-bugs@lists.freedesktop.org Summary: Draw - Unit of Measurement always reset to Inch Severity: normal Classification: Unclassified

[Libreoffice-bugs] [Bug 54578] PRINTING: During Black white printing, script locks up system

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54578 --- Comment #1 from A stgohi-lob...@yahoo.de --- not reproducible with LO 3.6.4.3. (Win7 Home, 64bit) -- You are receiving this mail because: You are the assignee for the bug. ___ Libreoffice-bugs

[Libreoffice-bugs] [Bug 57915] Impress - Setting Ruler Visible reset Unit of Measurement to Default.

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57915 --- Comment #4 from Stephen stephenletter...@gmail.com --- @Thankyou Cuyper. I don't know the version means first version. Additional Information: Grid is also affected. How to reproduce: Set View-Display-Rulers Visible to Off (uncheck the

[Libreoffice-bugs] [Bug 36635] WMV/WMA missing in All movie and sound files filter of insert movie and sound command

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=36635 --- Comment #4 from Gerry gerry.trep...@googlemail.com --- Sending a ping with regards to this IMHO *very very easy to fix* bug. Issue in Version 3.6.2.2 (Build ID: 360m1(Build:2)) Ubuntu is still the same: Issue: The WMV filter works perfectly,

[Libreoffice-bugs] [Bug 54594] Formatting

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54594 --- Comment #1 from A stgohi-lob...@yahoo.de --- Could you please provide more information how to reproduce this bug. -- You are receiving this mail because: You are the assignee for the bug. ___

[Libreoffice-bugs] [Bug 58417] BASIC: Libreoffice 4.0 crashes on startup on Ubuntu 12.10 64bit

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58417 A.S. as...@isa.upv.es changed: What|Removed |Added Status|NEEDINFO|REOPENED --- Comment #6 from

[Libreoffice-bugs] [Bug 48114] EDITING: Spell Grammar dialog in a loop after Resume

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=48114 --- Comment #2 from Urmas davian...@gmail.com --- I happened with master too, but I haven't got how to reproduce it. -- You are receiving this mail because: You are the assignee for the bug. ___

[Libreoffice-bugs] [Bug 58092] : Does not start

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58092 --- Comment #7 from A.S. as...@isa.upv.es --- Likely duplicate of bug 58417. -- You are receiving this mail because: You are the assignee for the bug. ___ Libreoffice-bugs mailing list

[Libreoffice-bugs] [Bug 54642] FILEOPEN: wrong layout in .doc generated by crystal reports

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54642 A stgohi-lob...@yahoo.de changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever confirmed|0

[Libreoffice-bugs] [Bug 58798] Draw - Unit of Measurement always reset to Inch

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58798 --- Comment #1 from Stephen stephenletter...@gmail.com --- Note: If I directly edit and save the default template using Centimeter, Draw opens a new drawing in Centimeter, but if I check Options-Draw-View-Display-Rulers Visible to Off (uncheck

[Libreoffice-bugs] [Bug 57915] Impress - Setting Ruler Visible reset Unit of Measurement to Default.

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57915 --- Comment #5 from Stephen stephenletter...@gmail.com --- Note: If I directly edit and save the default template using Centimeter, Impress opens a new presentation in Centimeter, but if I check Options-Impress-View-Display-Rulers Visible to Off

[Libreoffice-bugs] [Bug 54653] FORMATTING: Incorrect spacing in multiline right justified cells

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54653 --- Comment #1 from A stgohi-lob...@yahoo.de --- Reproducible with LO 3.6.4.3. (Win7 Home, 64bit), but I do not think that this is a bug, because for the example cell description you have a character (= space) between the two words. If wrap

[Libreoffice-bugs] [Bug 58612] copy/paste in search/replace does not function.

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

[Libreoffice-bugs] [Bug 55942] UI: Problem with the English(GB) help pack file 'Lib0_3.6.2_Win_x86_helppack_en-GB.msi'

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55942 --- Comment #1 from Peter Lusmore pe...@lusmore.org.uk --- Can confirm that this happens with LibO 4 beta 2 vesion and Norton 2013 as well -- You are receiving this mail because: You are the assignee for the bug.

[Libreoffice-bugs] [Bug 54684] FILEOPEN Anchored pictures jump to second page

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54684 A stgohi-lob...@yahoo.de changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever confirmed|0

[Libreoffice-bugs] [Bug 58779] Ctrl+P. print dialog not shown. prints file directly

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58779 --- Comment #9 from tommy27 ba...@quipo.it --- Created attachment 72175 -- https://bugs.freedesktop.org/attachment.cgi?id=72175action=edit File/Print button still confirming the bug after resetting the user profile. LOdev beta2 on Vista 64bit.

[Libreoffice-bugs] [Bug 58160] Program not starts after installation

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58160 VX vangeli...@aol.com changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever confirmed|0

[Libreoffice-bugs] [Bug 58433] Wrong open file .odt with MS

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58433 Rainer Bielefeld libreoff...@bielefeldundbuss.de changed: What|Removed |Added Status|UNCONFIRMED

[Libreoffice-bugs] [Bug 58793] FILEOPEN: Crash when trying to open attachment fdo#58277

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58793 Joren De Cuyper joren.libreoff...@telenet.be changed: What|Removed |Added CC|

[Libreoffice-bugs] [Bug 58482] PDF Export: the all Bitmap background can be seen behind a shape when a transparency gradient is used on it

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58482 cedrc...@gmail.com changed: What|Removed |Added Version|3.6.4.3 release |3.4.2 release --- Comment #8 from

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

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57894 Roman Eisele b...@eikota.de changed: What|Removed |Added Hardware|Other |All See

[Libreoffice-bugs] [Bug 55876] Improve the look of selected text

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=55876 Roman Eisele b...@eikota.de changed: What|Removed |Added See Also|https://bugs.freedesktop.or |

[Libreoffice-bugs] [Bug 58793] FILEOPEN: Crash when trying to open attachment fdo#58277

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58793 --- Comment #3 from Joren De Cuyper joren.libreoff...@telenet.be --- Still can't reproduce using LO 4.1.0.0.alpha0+ (Build ID: 699132c269a6c6d9e815fc582e2e6a106e46923) TinderBox: MacOSX-Intel@1-built_no-moz_on_10.6.8, Branch:master, Time:

[Libreoffice-bugs] [Bug 58740] soffice.bin: segfault in libuno_sal.so.3

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58740 --- Comment #2 from akf...@hotmail.co.jp --- Generating frequency is irregular. The file is not opening one. segfault is about 13 times per day. Only, soffice.bin is monitoring pid and port 8100 by monit 5.1.1, check intervals 5 sec. And

[Libreoffice-bugs] [Bug 58779] Ctrl+P. print dialog not shown. prints file directly

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58779 mariosv mari...@miguelangel.mobi changed: What|Removed |Added Status|REOPENED|NEW --- Comment #10

[Libreoffice-bugs] [Bug 58760] EDITING: CRASH when Insert Indexes and Tables Indexes and Tables...

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58760 --- Comment #9 from manj_k courrier.oou.fr@googlemail.com --- @Julien Nabet (In reply to comment #6) All my tested builds are the official tinderbox builds on → http://dev-builds.libreoffice.org/daily/master/Win-x86@6/ . -- You are

[Libreoffice-bugs] [Bug 56268] : Comments are shifting when a partial row is added or deleted.

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56268 Rainer Bielefeld libreoff...@bielefeldundbuss.de changed: What|Removed |Added Attachment #68895|text/plain

[Libreoffice-bugs] [Bug 58760] EDITING: CRASH when Insert Indexes and Tables Indexes and Tables...

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58760 --- Comment #10 from manj_k courrier.oou.fr@googlemail.com --- @Rainer Bielefeld (In reply to comment #7): Thanks for confirming. 'Bug 57142 - Recovery does not work after particular crash' doesn't occur consistently with this command, and

[Libreoffice-bugs] [Bug 56268] EDITING: Comments shifting when a partial row is inserted or deleted.

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=56268 Rainer Bielefeld libreoff...@bielefeldundbuss.de changed: What|Removed |Added Status|UNCONFIRMED

[Libreoffice-bugs] [Bug 58802] New: Font not

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58802 Priority: medium Bug ID: 58802 Assignee: libreoffice-bugs@lists.freedesktop.org Summary: Font not Severity: normal Classification: Unclassified OS: Mac OS X (All)

[Libreoffice-bugs] [Bug 58802] Font after installation not available

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58802 jost jost.schu...@web.de changed: What|Removed |Added Summary|Font not|Font after installation not

[Libreoffice-bugs] [Bug 58779] Ctrl+P. print dialog not shown. prints file directly

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58779 --- Comment #11 from tommy27 ba...@quipo.it --- (In reply to comment #10) I can reproduce now with the latest version But only in writer, spreadsheet/draw/impress open the box with Ctrl+P. that's true. the Ctrl+P bug affects only Writer. --

[Libreoffice-bugs] [Bug 58779] Ctrl+P. print dialog not shown. prints file directly

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58779 --- Comment #12 from john.pr...@cantab.net --- I cannot reproduce this bug in 4.0beta2 running on Windows XP, so maybe not all windows versions affected. -- You are receiving this mail because: You are the assignee for the bug.

[Libreoffice-bugs] [Bug 38840] add coverage analysis to unit tests

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=38840 John Smith lbalba...@gmail.com changed: What|Removed |Added URL|http://dev-builds.libreoffi

[Libreoffice-bugs] [Bug 39596] use the CLang++ static analyser to find bugs

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=39596 John Smith lbalba...@gmail.com changed: What|Removed |Added URL|http://dev-builds.libreoffi

[Libreoffice-bugs] [Bug 50833] SLIDESHOW: Custom Animations doesn't repeat

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50833 cedrc...@gmail.com changed: What|Removed |Added OS|Linux (All) |All CC|

[Libreoffice-bugs] [Bug 58779] Ctrl+P. print dialog not shown. prints file directly

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58779 --- Comment #13 from mariosv mari...@miguelangel.mobi --- Hi @John.pratt, is new for me in: 4.0.0.0.beta2+ (Build ID: 350ae8294a8df78403fd8cdce56b9aeb8178e13) but not was in: 4.0.0.0.beta2 (Build ID: 4104d660979c57e1160b5135634f732918460a0) --

[Libreoffice-bugs] [Bug 54246] Calc filtration by color

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54246 Sören scren2...@yahoo.de changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever confirmed|0

[Libreoffice-bugs] [Bug 54255] MATCH does not find empty cells

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54255 Sören scren2...@yahoo.de changed: What|Removed |Added Status|UNCONFIRMED |NEW Ever confirmed|0

[Libreoffice-bugs] [Bug 58794] FORMATTING: loss of information from column when multiple columns are created and insert footnote

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58794 Joren De Cuyper joren.libreoff...@telenet.be changed: What|Removed |Added OS|Linux (All) |All

[Libreoffice-bugs] [Bug 54286] EDITING: paste special doesn't operate on multiple selection

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54286 Sören scren2...@yahoo.de changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Libreoffice-bugs] [Bug 54309] EDITING: CRASH if in middle of table a field of columns and rows are marked to insert new cells /shift right

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54309 Sören scren2...@yahoo.de changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Libreoffice-bugs] [Bug 58794] FORMATTING: loss of information from column when multiple columns are created and insert footnote

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58794 Joren De Cuyper joren.libreoff...@telenet.be changed: What|Removed |Added Version|3.6.4.3 release |3.5.7.2

[Libreoffice-bugs] [Bug 50193] FILESAVE particular .xls (MSO 97) takes long time

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=50193 --- Comment #7 from Matthieu matthieu@capgemini.com --- Hello, We have this bug on LibreOffice 3.5.7.2, Do you have a patch for this version? Thank you. -- You are receiving this mail because: You are the assignee for the bug.

[Libreoffice-bugs] [Bug 58805] New: Report builder: Wrong date and time in report header footer

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58805 Priority: medium Bug ID: 58805 Keywords: regression Assignee: libreoffice-bugs@lists.freedesktop.org Summary: Report builder: Wrong date and time in report header footer

[Libreoffice-bugs] [Bug 47223] Link from calc to writer with relative-path

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47223 cébé cyril.be...@laposte.net changed: What|Removed |Added OS|All |Windows (All)

[Libreoffice-bugs] [Bug 58807] New: BASIC: macro doesn't beep

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58807 Priority: medium Bug ID: 58807 Assignee: libreoffice-bugs@lists.freedesktop.org Summary: BASIC: macro doesn't beep Severity: normal Classification: Unclassified OS: Linux

[Libreoffice-bugs] [Bug 58649] EDITING: Overflowing text on image (regression)

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58649 webofht-libreofficebugs...@yahoo.com.hk changed: What|Removed |Added CC|

[Libreoffice-bugs] [Bug 46116] Handling of multiple instances of LO applications in the Unity Launcher

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=46116 --- Comment #11 from pharmankur pharman...@gmail.com --- Created attachment 72186 -- https://bugs.freedesktop.org/attachment.cgi?id=72186action=edit libreoffice launcher issue in unity libreoffice launcher issue is still there in ubuntu12.10

[Libreoffice-bugs] [Bug 33617] lines created in report builder are not shown in report

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33617 marco braida marcobra.ubu...@gmail.com changed: What|Removed |Added Version|3.4.3 release |4.0.0.0.beta2

[Libreoffice-bugs] [Bug 58808] New: Mail Merge Wizard quits when Print Preview is shown

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58808 Priority: medium Bug ID: 58808 Assignee: libreoffice-bugs@lists.freedesktop.org Summary: Mail Merge Wizard quits when Print Preview is shown Severity: normal Classification: Unclassified

[Libreoffice-bugs] [Bug 54713] PRINTING: 100% copy of a page from wikipedia, does that libreoffice dont printing

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54713 --- Comment #1 from A stgohi-lob...@yahoo.de --- not reproducible with LO 3.6.4.3. (Win7 Home, 64bit) -- You are receiving this mail because: You are the assignee for the bug. ___ Libreoffice-bugs

[Libreoffice-bugs] [Bug 58798] Draw - Unit of Measurement always reset to Inch

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=58798 Joren De Cuyper joren.libreoff...@telenet.be changed: What|Removed |Added Status|UNCONFIRMED |RESOLVED

[Libreoffice-bugs] [Bug 57915] Impress - Setting Ruler Visible reset Unit of Measurement to Default.

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=57915 --- Comment #6 from Joren De Cuyper joren.libreoff...@telenet.be --- *** Bug 58798 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are the assignee for the bug.

[Libreoffice-bugs] [Bug 33617] lines created in report builder are not shown in report

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33617 Lionel Elie Mamane lio...@mamane.lu changed: What|Removed |Added Version|4.0.0.0.beta2 |3.3.1 RC1 -- You

[Libreoffice-bugs] [Bug 33617] lines created in report builder are not shown in report

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=33617 Lionel Elie Mamane lio...@mamane.lu changed: What|Removed |Added Version|3.3.1 RC1 |3.3.0 release --

[Libreoffice-bugs] [Bug 54520] VIEWING: References to footnotes not super scripted

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=54520 --- Comment #3 from A stgohi-lob...@yahoo.de --- reproducible with LO 3.6.4.3. (Win7 Home, 64bit) But I think the footnote should not belong to the header, otherwise you would need maybe this footnote also on further pages if the reference text

[Libreoffice-bugs] [Bug 47223] Link from calc to writer with relative-path

2012-12-27 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=47223 cébé cyril.be...@laposte.net changed: What|Removed |Added Version|3.6.4.3 release |4.0.0.0.beta2 --- Comment

  1   2   >