[PATCH] Recompute column widths in BackingWindow::Resize() to partially fix #34392

2012-04-06 Thread Gábor Stefanik
With this patch, the start screen displays correctly on startup with scaling set to 130% (tested on OpenSUSE 11.4 x86-64). However, if you start LibreOffice with scaling @ 100%, then change scaling to 130% with the start screen still open, the bug remains. I've looked into it, and this appears to

License Statement

2012-04-06 Thread Gábor Stefanik
I confirm that all of my past and future contributions to the LibreOffice project are licensed under the MPL / LGPLv3+. --Gábor Stefanik ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreof

Build failed on cairo (Win32)

2012-04-06 Thread Mat M
Good evening all, Since 3 days, my environment does not build fully (it did last week). Win7 x64, building Win32 with msvc 2008 Express under Cygwin. It stops when building libcairo. I tried to relaunch with: /opt/lo/bin/make cairo.clean cairo which lead to the command: cl -MD -O2 -MD -LD -Ferel

Re: Using OOoPython from an external script

2012-04-06 Thread Miklos Vajna
On Sat, Apr 07, 2012 at 08:32:37AM +1200, Glenn Ramsey wrote: > In order for a system python script to be able to execute lo-python it > needs to know where LO is installed and what platform it is running on. I > hacked up code that does this on Windows by looking in the registry for > soffice.ex

Re: Using OOoPython from an external script

2012-04-06 Thread Glenn Ramsey
On Fri, Apr 6, 2012 at 10:09 PM, Glenn Ramsey wrote: > On Fri, Apr 6, 2012 at 7:32 PM, Miklos Vajna wrote: > >> On Fri, Apr 06, 2012 at 09:05:29AM +1200, Glenn Ramsey < >> glenn.ram...@slidespeech.com> wrote: >> > with OOoPython on the command line (in OSX 10.6) I discovered that the >> > PYTHONP

[PUSHED] Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator

2012-04-06 Thread Jan Holesovsky
Hi Szabolcs, I've pushed your megapatch removing tons of equalsAsciiL :-) I've split it to several chunks to be able to automate at least part of the review: http://cgit.freedesktop.org/libreoffice/core/commit/?id=f770c5d6bc7fd54f3cd3781d250820b5e86922e7 http://cgit.freedesktop.org/libreoffice/c

[no subject]

2012-04-06 Thread nilesh gupta
-- *NILESH GUPTA* B.Tech, III year Electrical Engineering Deptt. MNIT Jaipur 8233043423 ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice

Re: a new mac mini available for libreoffice dev but ...

2012-04-06 Thread Tor Lillqvist
> honnestly, i tried a lot of things, and even if it always ended whith the > same error, this link let some things to be installed > > http://catacombae.blogspot.fr/2011/07/installing-xcode-326-in-mac-os-x-lion.html Hmm. Now that you mention it, I do think I might in fact have had to do some tric

Re: SF during build of LibO3-5

2012-04-06 Thread Kálmán „KAMI” Szalai
Hi, My build platform is Ubuntu 10.04 32/64 bit. KAMI ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice

SF during build of LibO3-5

2012-04-06 Thread Kálmán „KAMI” Szalai
Hi, I got Segmentation Fault during build of LibreOffice 3-5. How can I avoid this problem? [ build LNK ] CppunitTest/libtest_sc_filters_test.so R=/home/libo32 && S=$R/libo && O=$S/solver/unxlngi6.pro && W=$S/workdir/unxlngi6.pro && mkdir -p $W/LinkTarget/CppunitTest/ && g++ -shared -Wl,-z,

Re: [CFT] Windows native file/folder picker (fop/fps)

2012-04-06 Thread Cor Nouws
Hi Michael, Michael Stahl wrote (02-04-12 16:55) it would be great if somebody could test if both native folder and file picker still work as they did before (e.g. compare with 3.5 branch) on the various supported Windows releases. On Win 7, in LOdev 3.6.0alpha0+ Build ID: fe51974-6299bf6-ec

Re: RTL_CONSTASCII_(U)STRINGPARAM officially obsolete

2012-04-06 Thread Jan Holesovsky
Hi Olivier, On 2012-04-06 at 09:15 -0300, Olivier Hallot wrote: > Thanks for pointing this.. I have reviewed one of the patch and I hope > that is ok now. If not, please let me know. Thank you, looks great! :-) > Also, please confirm if I get it right: > > - rtl::OUString aOUstring = OUString(

Re: RTL_CONSTASCII_(U)STRINGPARAM officially obsolete

2012-04-06 Thread Miklos Vajna
On Fri, Apr 06, 2012 at 09:15:41AM -0300, Olivier Hallot wrote: > Also, please confirm if I get it right: > > - rtl::OUString aOUstring = OUString("foo"); > + rtl::OUString aOUString = "foo"; Or even, the shorter and more C++-ish: rtl::OUString aOUString("foo"); ___

Re: [Libreoffice-qa] Proposal: Calls for Testing

2012-04-06 Thread Cor Nouws
Bjoern Michaelsen wrote (30-03-12 12:12) On Tue, Mar 27, 2012 at 09:43:21AM +0200, Cor Nouws wrote: My take on this: - What does make sense, is having indeed a list of areas that can be clearly pointed at, and to mention them in a sort of standard post on our official TDF blog. E.g. every two w

Re: RTL_CONSTASCII_(U)STRINGPARAM officially obsolete

2012-04-06 Thread Olivier Hallot
Hi Kendy Em 06-04-2012 03:44, Jan Holesovsky escreveu: > Hi Olivier, > > On 2012-04-03 at 18:17 +0200, Lubos Lunak wrote: > >> functionFoo( rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("X"))) >> >> can be written as >> >> functionFoo( "X" ); > > Thank you for cleaning up the RTL_CONSTASCII

Re: RTL_CONSTASCII_(U)STRINGPARAM officially obsolete

2012-04-06 Thread Lubos Lunak
On Friday 06 of April 2012, Jan Holesovsky wrote: > Thank you for cleaning up the RTL_CONSTASCII_USTRINGPARAM! I just > noticed though that your recent commit > > http://cgit.freedesktop.org/libreoffice/core/commit/?id=fe51974e6515f48a6e6 >881e5837027d08c8d66e9 > > changes > > - xProps->setPropert

[PATCH] Re: librO python & ssl support

2012-04-06 Thread Laurent Godard
Hi Caolan thanks a lot for your response We should probably be tweaking the python build to find the headers and (static) library of our internal openssl, e.g. see libxslt/makefile.mk (and others) and SOLARINCDIR/SOLARLIBDIR, there we point the build to our internal libs. i had a look and he

[PUSHED] Re: [PATCH] Remove unused code (vcl)

2012-04-06 Thread Matúš Kukan
Hello, On 4 April 2012 17:14, Thomas Collerton wrote: > Hello all, > this patch removes unused code in the Slider class as listed in > unusedcode.easy Looks good => pushed Thanks, Matúš ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org h

Re: Using OOoPython from an external script

2012-04-06 Thread Glenn Ramsey
On Fri, Apr 6, 2012 at 7:32 PM, Miklos Vajna wrote: > On Fri, Apr 06, 2012 at 09:05:29AM +1200, Glenn Ramsey < > glenn.ram...@slidespeech.com> wrote: > > with OOoPython on the command line (in OSX 10.6) I discovered that the > > PYTHONPATH needs to be set up properly before uno can be successfull

Re: a new mac mini available for libreoffice dev but ...

2012-04-06 Thread Laurent Godard
Hi all sorry, i'm a bit lost right now ... as usual, it is when crying at email that things evolve honnestly, i tried a lot of things, and even if it always ended whith the same error, this link let some things to be installed http://catacombae.blogspot.fr/2011/07/installing-xcode-326-in-m

Re: GSoC 2012 Student Application deadline

2012-04-06 Thread Jesús Corrius
Hi Daniel, > I just curious : did you receive my application? My name is Daniel Korostil. We have an application named "Lightproof improvements" with your name. На все добре! -- Jesús Corrius ___ LibreOffice mailing list LibreOffice@lists.freedeskto

Re: [Libreoffice] GSoC 2012 - Improving Impress svg export filter

2012-04-06 Thread Marco Cecchetti
On Thu, 05 Apr 2012 23:44:15 +0200, Thorsten Behrens wrote: Marco Cecchetti wrote: >really glad to see you back - your CV is impressive, wrt the project >plan - the above can IMO be done quicker, all those slide >transitions are mostly coded individually - so if you can do wipe >up, the othe

Re: a new mac mini available for libreoffice dev but ...

2012-04-06 Thread Laurent Godard
Hi all first, many thanks to all for your responses No need to create the folder first, surely. Until Laurent tells exactly what his problem was, no use guessing. i deployed XCode4 in Application by drag and drop then, launched the XCode 3.2.6 installer and only selected Documentation and S

Re: GSoC 2012 Student Application deadline

2012-04-06 Thread Коростіль Данило
Hello, good people, This is just to remind you that the applications of students for Google Summer of Code 2012 have to be submitted in mélanges before 6th of April 2012 noon Mountain-View time, which is something like 9 PM in the Continental Europe and 8 PM for the subjects of Her Majesty sout

[Bug 37361] LibreOffice 3.5 most annoying bugs

2012-04-06 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37361 Bug 37361 depends on bug 43229, which changed state. Bug 43229 Summary: Unable to un-protect password protected MS-Word .doc document https://bugs.freedesktop.org/show_bug.cgi?id=43229 What|Old Value |New Value -

Re: Patch review for About Dialog redesign

2012-04-06 Thread Andrew Higginson
On 05/04/12 20:11, Caolán McNamara wrote: > On Fri, 2012-03-30 at 18:19 +0100, Andrew Higginson wrote: >> Hi, >> >> So this is my first time contributing to LibreOffice so I was wondering >> if I could have some critique on my patch. >> >> All the info is this the bug report >> https://bugs.freedes

[REVIEW:3-5] fdo#45394 RTF import table and footnote fixes

2012-04-06 Thread Miklos Vajna
Hi, See http://cgit.freedesktop.org/libreoffice/core/commit/?id=b475bc4 http://cgit.freedesktop.org/libreoffice/core/commit/?id=6b7942f Regression from 3.4, testcase at sw/qa/extras/rtftok/data/fdo45394.rtf on master. Thanks, Miklos ___ LibreOffice ma

Re: RTL_CONSTASCII_(U)STRINGPARAM officially obsolete

2012-04-06 Thread Jan Holesovsky
Hi Olivier, On 2012-04-03 at 18:17 +0200, Lubos Lunak wrote: > functionFoo( rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("X"))) > > can be written as > > functionFoo( "X" ); Thank you for cleaning up the RTL_CONSTASCII_USTRINGPARAM! I just noticed though that your recent commit http://c

Re: Using OOoPython from an external script

2012-04-06 Thread Miklos Vajna
On Fri, Apr 06, 2012 at 09:05:29AM +1200, Glenn Ramsey wrote: > with OOoPython on the command line (in OSX 10.6) I discovered that the > PYTHONPATH needs to be set up properly before uno can be successfully > imported. > > Is there a way to automatically set this up, or do I have to write > some

Re: Disabling Temporary Files?

2012-04-06 Thread Enrico Weigelt
Hi, > My colleagues found out that the temp file is password-protected too, > so that part is fine. > But images inside the file are saved as temporary files too! Is there > something we can do about that? What's the actual goal to reach by this ? If you wanna protect against the scenario that s