Re: where can I load windows DLL file

2012-03-23 Thread Tor Lillqvist
I want to load some DLL files when Open File, how can I do this, please help! That doesn't make any sense, DLL files are not documents that could be opened in LibreOffice (or Microsoft Office, for that matter). Anyway, this is the developer list. Please ask on a user list or forum. --tml

Re: [PATCH] Initialize m_hFile in FileMapping constructor.

2012-03-23 Thread Stephan Bergmann
On 03/22/2012 10:32 PM, Catalin Iacob wrote: From 78d778a79cfe2292d03ac30bee825147cc56ead9 Mon Sep 17 00:00:00 2001 From: Catalin Iacobiacobcata...@gmail.com Date: Wed, 14 Mar 2012 23:35:49 +0100 Subject: [PATCH] Initialize m_hFile in FileMapping constructor. GCC gives the following warning

Re: fdo#46808 - [Easy Hack] Adapt UNO services to new-style

2012-03-23 Thread Noel Grandin
On 2012-03-22 15:19, Stephan Bergmann wrote: For code not below comphelper that only has a global XMultiServiceFactory at hand, but rather needs an XComponentContext (e.g., to pass it into a new-style service constructor), comphelper::getComponentContext (comphelper/processfactory.hxx) can

Re: fdo#46808 - [Easy Hack] Adapt UNO services to new-style

2012-03-23 Thread Stephan Bergmann
On 03/23/2012 09:09 AM, Noel Grandin wrote: I'm needing to modify some code in the UCB module, but I get linking errors because I'm referencing comphelper. Do I need to modify the makefile or is this one of those modules that are below comphelper? Module ucb already depends on module

Re: fdo#46808 - [Easy Hack] Adapt UNO services to new-style

2012-03-23 Thread Tor Lillqvist
What is a component context btw? Are there many kinds of such, or many instances of the same kind in a typical running LO? In what kind of environments/platforms/circumstances would the various kinds exist? --tml ___ LibreOffice mailing list

Re: fdo#46808 - [Easy Hack] Adapt UNO services to new-style

2012-03-23 Thread Noel Grandin
On 2012-03-23 10:13, Stephan Bergmann wrote: On 03/23/2012 09:09 AM, Noel Grandin wrote: I'm needing to modify some code in the UCB module, but I get linking errors because I'm referencing comphelper. Do I need to modify the makefile or is this one of those modules that are below comphelper?

Re: where can I load windows DLL file

2012-03-23 Thread huqitu du
I don't open DLL files, I invoke DLL's function. for example, when LO open a .txt file, my program(DLL function) handle something first and then let's LO process continue. 2012/3/23 Tor Lillqvist t...@iki.fi I want to load some DLL files when Open File, how can I do this, please help! That

Re: fdo#46808 - [Easy Hack] Adapt UNO services to new-style

2012-03-23 Thread Miklos Vajna
On Fri, Mar 23, 2012 at 10:16:12AM +0200, Tor Lillqvist t...@iki.fi wrote: What is a component context btw? Are there many kinds of such, or many instances of the same kind in a typical running LO? In what kind of environments/platforms/circumstances would the various kinds exist? As far as I

Re: fdo#46808 - [Easy Hack] Adapt UNO services to new-style

2012-03-23 Thread Stephan Bergmann
On 03/23/2012 09:16 AM, Tor Lillqvist wrote: What is a component context btw? Are there many kinds of such, or many instances of the same kind in a typical running LO? In what kind of environments/platforms/circumstances would the various kinds exist? There's typically just one. (That's why

Re: minutes of ESC call ...

2012-03-23 Thread Alexander Thurgood
Le 23/03/12 06:29, Tommy a écrit : * closing fixed bugs + about 1/2 of the calc regressions are already fixed in 3.5 + 3.4.x will get no more updates + no need to explain more, close them. + some already re-opened because not fixed in 3.4.x AA:+

Re: fdo#46808 - [Easy Hack] Adapt UNO services to new-style

2012-03-23 Thread Stephan Bergmann
On 03/23/2012 09:18 AM, Noel Grandin wrote: /home/noel/libo/workdir/unxlngx6.pro/CxxObject/ucb/source/ucp/ftp/ftpdynresultset.o:ftpdynresultset.cxx:function ftp::DynamicResultSet::DynamicResultSet(com::sun::star::uno::Referencecom::sun::star::lang::XMultiServiceFactory const,

Re: where can I load windows DLL file

2012-03-23 Thread Tor Lillqvist
I don't open DLL files, I invoke DLL's function. for example, when LO open a .txt file, my program(DLL function) handle something first and then let's LO process continue. OK. Then you need to look into customization of LO using some extension and modification of the configuration so that what

Java macros and 3.5.1.2 on Mac OSX

2012-03-23 Thread Alexander Thurgood
Hi all, There seems to be a problem with component registration of the Java macro scripting component registration in 3.5.1.2 on Mac OSX. If you fire up LO, then Tools Macro Run Macro : 1) Scroll down the list of macros to Memory Usage 2) Enter the folder, and only 1 entry is present (the

Re: Java macros and 3.5.1.2 on Mac OSX

2012-03-23 Thread Stephan Bergmann
On 03/23/2012 10:37 AM, Alexander Thurgood wrote: There seems to be a problem with component registration of the Java macro scripting component registration in 3.5.1.2 on Mac OSX. See https://bugs.freedesktop.org/show_bug.cgi?id=46102 script dispatch java extensions are broken. I'm currently

Re: Java macros and 3.5.1.2 on Mac OSX

2012-03-23 Thread Alexander Thurgood
Le 23/03/12 10:37, Alexander Thurgood a écrit : Well seems it is known already : https://bugs.freedesktop.org/show_bug.cgi?id=46102 The only reason I picked up on this is because there are users on the user mailing list complaining that their Java based extensions and macros no longer work in

Re: minutes of ESC call ...

2012-03-23 Thread Michael Meeks
Hi Tommy, Thanks for your mail ! :-) On Fri, 2012-03-23 at 06:29 +0100, Tommy wrote: + about 1/2 of the calc regressions are already fixed in 3.5 + 3.4.x will get no more updates + no need to explain more, close them. AA: + review and

Re: where can I load windows DLL file

2012-03-23 Thread drew
On Fri, 2012-03-23 at 11:09 +0200, Tor Lillqvist wrote: I don't open DLL files, I invoke DLL's function. for example, when LO open a .txt file, my program(DLL function) handle something first and then let's LO process continue. Hi That is a fairly common request - if you would move it to

Re: where can I load windows DLL file

2012-03-23 Thread Jesús Corrius
Can you tell *why* you want to do this, by the way? What is the high-level goal? We might be ableto tell you better ways to achieve the same end result. Or, in case there is some reason for your users to want to avoid your code being called when they open a document, tell you how easy it will

Re: where can I load windows DLL file

2012-03-23 Thread Michael Stahl
On 23/03/12 09:28, huqitu du wrote: I don't open DLL files, I invoke DLL's function. for example, when LO open a .txt file, my program(DLL function) handle something first and then let's LO process continue. perhaps the GlobalEventBroadcaster can help you, its OnNew and OnLoad events look

Re: fdo#46808 - [Easy Hack] Adapt UNO services to new-style

2012-03-23 Thread Michael Stahl
On 23/03/12 10:04, Stephan Bergmann wrote: On 03/23/2012 09:16 AM, Tor Lillqvist wrote: What is a component context btw? Are there many kinds of such, or many instances of the same kind in a typical running LO? In what kind of environments/platforms/circumstances would the various kinds exist?

Re: where can I load windows DLL file

2012-03-23 Thread drew
On Fri, 2012-03-23 at 11:51 +0100, Michael Stahl wrote: On 23/03/12 09:28, huqitu du wrote: I don't open DLL files, I invoke DLL's function. for example, when LO open a .txt file, my program(DLL function) handle something first and then let's LO process continue. perhaps the

Re: [Libreoffice-commits] .: solenv/gbuild

2012-03-23 Thread Lubos Lunak
On Thursday 22 of March 2012, Norbert Thiebaud wrote: solenv/gbuild/gbuild.mk |4 1 file changed, 4 insertions(+) New commits: commit 7be7f9a7863cbd862dd5a5462c508db03c56c8d1 Author: Norbert Thiebaud nthieb...@gmail.com Date: Thu Mar 22 17:26:11 2012 -0500 gbuild: allow

Preconfigured Windows Build VM updated!

2012-03-23 Thread Jesús Corrius
Hi fellow developers, I have updated the preconfigured Windows Build Virtual Box VM with the following changes: MINOR CHANGES * Updated LibreOffice repository (libreoffice-3-5 branch still the default one) * Updated Windows to latest security fixes. * Updated

Disabling dependency tracking (Re: [Libreoffice-commits] .: solenv/gbuild)

2012-03-23 Thread Lubos Lunak
On Friday 23 of March 2012, Lubos Lunak wrote: On Thursday 22 of March 2012, Norbert Thiebaud wrote: --- a/solenv/gbuild/gbuild.mk +++ b/solenv/gbuild/gbuild.mk @@ -113,8 +113,12 @@ endif # for clean, setuplocal and removelocal goals we switch off dependencies ifneq ($(filter

broken chart2_unoapi (was: Tinderbox failure, Linux-RHEL6-x86_64@14-with-check, MASTER, last success: 2012-03-22 05:28:28)

2012-03-23 Thread Stephan Bergmann
Hi all, If somebody into chart and/or calc -- yes Markus, I'm looking at you :) -- could have a look at this failure, that would be highly appreciated. Noel said he intends to look into this, too, but would take quite a while and he wouldn't mind a helping hand; and I would like to see this

Any JNI/UNO bridge experts around? Some assumptions about field ids are apparently not valid for Dalvik

2012-03-23 Thread Tor Lillqvist
It seems that the code assumes the field id for the Context field in com.sun.star.uno.Exception is also valid for that field in com.sun.star.uno.RuntimeException. This apparently holds for normal JVMs, but not Dalvik? I am still digging into what is actually going on, need to write some minimal

Re: broken chart2_unoapi (was: Tinderbox failure, Linux-RHEL6-x86_64@14-with-check, MASTER, last success: 2012-03-22 05:28:28)

2012-03-23 Thread Markus Mohrhard
Hey, 2012/3/23 Stephan Bergmann sberg...@redhat.com: Hi all, If somebody into chart and/or calc -- yes Markus, I'm looking at you :) -- could have a look at this failure, that would be highly appreciated.  Noel said he intends to look into this, too, but would take quite a while and he

[Bug 37361] LibreOffice 3.5 most annoying bugs

2012-03-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37361 Roman Eisele b...@eikota.de changed: What|Removed |Added Depends on|47662 | --- Comment #252 from

Re: Any JNI/UNO bridge experts around? Some assumptions about field ids are apparently not valid for Dalvik

2012-03-23 Thread Tor Lillqvist
Firstlty, I guess I need to quickly check what that debugging output says with a normal JVM, wteher the field ids are [different or identical] Except (pun not intended) that when running LO on Linux I can't figure out a way to get to the code lines in question;) (line 303 in jni_info.cxx, the

Invitation to the LibreOffice Hackfest 2012 in Hamburg

2012-03-23 Thread Bjoern Michaelsen
Hi all, Let me take this opportunity to shamelessly plug the LibreOffice Hamburg Hackfest 2012. The city of Hamburg has throughout history taken its freedom and independence as a high treasure -- as can be seen from its motto: Libertatem quam peperere maiores digne studeat servare posteritas.

[REVIEW-3-5] fdo#47736 Aragonese suggestions for misspelled English word

2012-03-23 Thread Andras Timar
Hi, It seems to me that http://cgit.freedesktop.org/libreoffice/dictionaries/commit/?id=6299bf66e3004cb8db805b360070762d0870cf50 solves fdo#47736. Please cherry pick to libreoffice-3-5. Thanks, Andras ___ LibreOffice mailing list

[Bug 37361] LibreOffice 3.5 most annoying bugs

2012-03-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37361 Roman Eisele b...@eikota.de changed: What|Removed |Added Depends on||47355 --- Comment #253

Re: [REVIEWED][PUSHED 3-5] fix for fdo#46220, infinite loop when exporting hidden column to html

2012-03-23 Thread Kohei Yoshida
On Fri, 2012-03-23 at 04:40 +0100, Markus Mohrhard wrote: [1] fixes the infinite loop in html export when we try to skip a hidden column. We need to increase nCol in this case to prevent that we will always test the same column. This fix is safe and simple and I think we should include it

Re: [PATCH] Initialize m_hFile in FileMapping constructor.

2012-03-23 Thread Caolán McNamara
On Fri, 2012-03-23 at 09:00 +0100, Stephan Bergmann wrote: That looks like a compiler error. Have you tried with a plain (non-OpenSUSE) GCC 4.6.2, too? (What's also odd is the mention of lockbyte.css -- is that a typo of yours, or is that a temporary file that specific compiler generates

[REVIEW-3-5][REVIEW-3-5-2?] fdo#46102 script dispatch java extensions are broken

2012-03-23 Thread Stephan Bergmann
To fix https://bugs.freedesktop.org/show_bug.cgi?id=46102 script dispatch java extensions are broken requires * http://cgit.freedesktop.org/libreoffice/core/commit/?id=91d60be7eeafa1f7872bda452bfb38936003f517 fdo#46102: Fix scripting jar manifests after gbuild'ification * and

Re: Any JNI/UNO bridge experts around? Some assumptions about field ids are apparently not valid for Dalvik

2012-03-23 Thread Tor Lillqvist
After some lengthy experimentation with test programs (which is something I love to do, honestly) (even if the slow iteration cycle on Android is a bit irrtating), the root cause to my problem seems pretty obvious. The concept of field ID in normal JVMs and in Android's Dalvik appears to be quite

[Bug 37361] LibreOffice 3.5 most annoying bugs

2012-03-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37361 Bug 37361 depends on bug 46102, which changed state. Bug 46102 Summary: script dispatch java extensions are broken https://bugs.freedesktop.org/show_bug.cgi?id=46102 What|Old Value |New Value

callcatcher oddness ...

2012-03-23 Thread Michael Meeks
Hi there, I just saw sfx2/source/view/viewfrm.cxx: long ReloadDecouple_Impl( void* pObj, void* pArg ) { ((SfxViewFrame*) pObj)-ExecReload_Impl( *(SfxRequest*)pArg ); return 0; } Which appears to be completely unused; at least - removing it compiles nicely, and I get no

Re: Any JNI/UNO bridge experts around? Some assumptions about field ids are apparently not valid for Dalvik

2012-03-23 Thread Stephan Bergmann
On 03/23/2012 04:59 PM, Tor Lillqvist wrote: Hmm. OK, I think I get it, Java's RuntimeException (and the subclasses of that) has significantly different semantics than that of its Exception (and subclasses), unchecked vs. checked. The intent is that the UNO exceptions be similarly divided when

Re: callcatcher oddness ...

2012-03-23 Thread Caolán McNamara
On Fri, 2012-03-23 at 16:00 +, Michael Meeks wrote: Is callcatcher filtering out _Impl symbols or somesuch ? The unusedcode.easy list is generated from a bigger unused.all list which contains ReloadDecouple_Impl. See the toplevel Makefile. I only include stuff with :: in them (seeing

[REVIEW-3-5] fix for fdo#47299, calculating matrix formulas takes too long

2012-03-23 Thread Markus Mohrhard
Hey, [1] improves the calculation time for matrix formulas by one magnitude. We now just cache the calls to mdds::mixed_type_matrix::size which brings the execution time back to the 3-3 level. It does not only help for this test document but should speed up all matrix formulas. I think the patch

sharing DB_ENV between DB berkeleydb instances

2012-03-23 Thread Caolán McNamara
Digging into our memory usage, I see that we have 6 berkeleydb DBs, all of which are opened with a NULL DB_ENV argument which makes berkeleydb create an internal one for each, which adds up to a substantial chunk of memory. On the face of it at least it seems to be legal to share a single DB_ENV

[[REVIEW][3-5-2] fdo#47717, fdo#45562 sw: yet more border painting regressions (was: Re: [REVIEW][3-5][PUSHED] fdo#42750 sw: thin table borders hidden by subsidiary lines)

2012-03-23 Thread Michael Stahl
On 20/03/12 12:19, Cedric Bosdonnat wrote: Hi Michael, On Fri, 2012-03-16 at 23:29 +0100, Michael Stahl wrote: this fix introduces a new array to store the borders and paints them after the subsidiary lines are done, effectively on top of the subsidiary lines.

Re: [PUSHED][REVIEW-3-5] fdo#47736 Aragonese suggestions for misspelled English word

2012-03-23 Thread Caolán McNamara
On Fri, 2012-03-23 at 14:40 +0100, Andras Timar wrote: Hi, It seems to me that http://cgit.freedesktop.org/libreoffice/dictionaries/commit/?id=6299bf66e3004cb8db805b360070762d0870cf50 solves fdo#47736. Please cherry pick to libreoffice-3-5. Yup, looks trivially sane, done. C.

[Bug 37361] LibreOffice 3.5 most annoying bugs

2012-03-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=37361 Bug 37361 depends on bug 47717, which changed state. Bug 47717 Summary: Paragraph border visible through an image https://bugs.freedesktop.org/show_bug.cgi?id=47717 What|Old Value |New Value

[PATCH] rename WEIT_WECH to FAR_AWAY

2012-03-23 Thread Nicolas Christener
Hi all I stumbled over #define WEIT_WECH [...] in sw/source/core/inc/frmtool.hxx while translating some German comments for Cedric. I asked on IRC if I should translate this to FAR_AWAY and got a go there. Attached is a patch which should do the trick - review much appreciated. I did a make

Re: [PATCH] Convert SV_DECL_VARARR_SORT, SV_IMPL_VARARR and SV_IMPL_VA­RARR_SORT with std::set/deque/vector

2012-03-23 Thread Bartosz
Hi Fridrich. Could you please also check and push this patch? Thanks in advance Bartosz W dniu 15 marca 2012 10:15 użytkownik Bartosz gan...@poczta.onet.plnapisał: Hi I converted the SV to std::set/vector/deque in sw component. Could you please push this path? This and later

Re: [libreoffice-projects] Invitation to the LibreOffice Hackfest 2012 in Hamburg

2012-03-23 Thread Italo Vignoli
Bjoern Michaelsen wrote: Nerdshirt.de kindly sponsors us ten T-shirts for the participants. We just decided to give those to the first ten people, who added themselves to the participant list completely with their name and shirtsize(*). First come, first serve here as is with travel

Re: [[REVIEW][3-5-2] fdo#47717, fdo#45562 sw: yet more border painting regressions

2012-03-23 Thread Cor Nouws
Michael Stahl wrote (23-03-12 17:44) because up until a week ago my knowledge of Writer's drawing code was precisely zero, it would be a good idea to test this a bit. Thanks for your attention for this one too! Hmm, testing. Will it be in a daily tomorrow? (I usually only look at the master,

Re: [[REVIEW][3-5-2] fdo#47717, fdo#45562 sw: yet more border painting regressions

2012-03-23 Thread Cor Nouws
Cor Nouws wrote (23-03-12 18:13) Will it be in a daily tomorrow? (I usually only look at the master, not at release branches). Last commit message here http://cgit.freedesktop.org/libreoffice/core/log/?h=libreoffice-3-5-2 is from three days back. But I guess I can compare the commit ID

Re: sharing DB_ENV between DB berkeleydb instances

2012-03-23 Thread Michael Meeks
On Fri, 2012-03-23 at 16:42 +, Caolán McNamara wrote: Digging into our memory usage, I see that we have 6 berkeleydb DBs, all of which are opened with a NULL DB_ENV argument which makes berkeleydb create an internal one for each, which adds up to a substantial chunk of memory.

Re: [PATCH] Initialize m_hFile in FileMapping constructor.

2012-03-23 Thread Catalin Iacob
On Fri, Mar 23, 2012 at 9:00 AM, Stephan Bergmann sberg...@redhat.com wrote: That looks like a compiler error.  Have you tried with a plain (non-OpenSUSE) GCC 4.6.2, too?  (What's also odd is the mention of lockbyte.css -- is that a typo of yours, or is that a temporary file that specific

Re: sharing DB_ENV between DB berkeleydb instances

2012-03-23 Thread Michael Stahl
On 23/03/12 17:42, Caolán McNamara wrote: Digging into our memory usage, I see that we have 6 berkeleydb DBs, all of which are opened with a NULL DB_ENV argument which makes berkeleydb create an internal one for each, which adds up to a substantial chunk of memory. On the face of it at

Base project in GSoC 2012

2012-03-23 Thread Waqas Iftikhar
I am writing about the LibreOffice Base project in GSoC 2012. I am interested in open source development particularly in all ex-Sun Micro systems open source products. I am from Pakistan, currently in my junior year of undergraduate studies in computer sciences at FAST-NU Lahore. I have extensive

Re: [REVIEW-3-5][REVIEW-3-5-2?] fdo#46102 script dispatch java extensions are broken

2012-03-23 Thread Michael Stahl
On 23/03/12 16:58, Stephan Bergmann wrote: To fix https://bugs.freedesktop.org/show_bug.cgi?id=46102 script dispatch java extensions are broken requires * http://cgit.freedesktop.org/libreoffice/core/commit/?id=91d60be7eeafa1f7872bda452bfb38936003f517 fdo#46102: Fix scripting jar

Re: Base project in GSoC 2012

2012-03-23 Thread Alex Thurgood
Le 23/03/2012 19:30, Waqas Iftikhar a écrit : Hi Waqas, I can't help you with your GSOC query, but if you could further the integration of SQLite into Base, that would in my opinion, be simply awesome !!! Just my 2c as a highly interested Base user. Alex

Re: sharing DB_ENV between DB berkeleydb instances

2012-03-23 Thread Caolán McNamara
On Fri, 2012-03-23 at 17:47 +, Michael Meeks wrote: On Fri, 2012-03-23 at 16:42 +, Caolán McNamara wrote: Digging into our memory usage, I see that we have 6 berkeleydb DBs, all of which are opened with a NULL DB_ENV argument which makes berkeleydb create an internal one for each,

Default Encryption Fails for Down-Level Implementations

2012-03-23 Thread Dennis E. Hamilton
Here is a message that I have just sent to ooo-dev about the silent switching to AES256 being an interoperability problem. The recommendation is to stay with the only cross ODF 1.0/1.1/1.2-conforming encryption of Save with Password by default, while accepting the newer optional ones

[PATCH] Remove unused code (scaddins)

2012-03-23 Thread Santiago Martinez
This patch removes unused code as listed in unusedcode.easy From 00975e8dec9da11e13b4523d1d9e918bac5f5222 Mon Sep 17 00:00:00 2001 From: Santiago Martinez smvar...@gmail.com Date: Fri, 23 Mar 2012 21:37:59 +0100 Subject: [PATCH] Remove unused code in scaddins. ---

Re: sharing DB_ENV between DB berkeleydb instances

2012-03-23 Thread Caolán McNamara
On Fri, 2012-03-23 at 19:29 +0100, Michael Stahl wrote: the Linux-RHEL6-x86_64@14-with-check tinderbox seems to think so: DB_THREAD mandates memory allocation flag on data DBT warn:legacy.osl:9258:1:/home/tinderbox/master/desktop/source/deployment/dp_persmap.cxx:63:

[PATCH] Remove unused code (vlc)

2012-03-23 Thread Santiago Martinez
This patch removes unused code as listed in unusedcode.easy From 8d0dca528f9cb12dc8e5cdb2f2c1dcaf2270a04f Mon Sep 17 00:00:00 2001 From: Santiago Martinez smvar...@gmail.com Date: Fri, 23 Mar 2012 22:05:00 +0100 Subject: [PATCH] Remove unused code in vlc. --- unusedcode.easy |1

Re: Default Encryption Fails for Down-Level Implementations

2012-03-23 Thread Caolán McNamara
On Fri, 2012-03-23 at 13:37 -0700, Dennis E. Hamilton wrote: Here is a message that I have just sent to ooo-dev about the silent switching to AES256 being an interoperability problem. The recommendation is to stay with the only cross ODF 1.0/1.1/1.2-conforming encryption of Save with Password

regression in charts introduced by one of the recent table to std::map commits

2012-03-23 Thread Markus Mohrhard
Hello Noel, I just noticed that one of the following commits introduced a serious regression in chart2. Can you please recheck them by opening the test document in fdo#47632 and switch to edit mode. Then select one data series and select the chart type menu entry in the pop-up menu. This will

Re: [UX advise] Key navigation in ValueSet controls

2012-03-23 Thread Matteo Casalin
Hi Cor, all On 03/21/2012 01:23 PM, Cor Nouws wrote: Hi Matteo, Stefan, Great that you care for this, Matteo! And of course that you helped with discussing, Stefan. I'm a bit late: trouble to keep in track with the various topics in the community, but found this important enough to read and

[PUSHED] Re: Disabling dependency tracking (Re: [Libreoffice-commits] .: solenv/gbuild)

2012-03-23 Thread Michael Stahl
On 23/03/12 12:42, Lubos Lunak wrote: On Friday 23 of March 2012, Lubos Lunak wrote: On Thursday 22 of March 2012, Norbert Thiebaud wrote: --- a/solenv/gbuild/gbuild.mk +++ b/solenv/gbuild/gbuild.mk @@ -113,8 +113,12 @@ endif # for clean, setuplocal and removelocal goals we switch off

[REVIEW][3-5] rhbz#789022: SwNodes: fix inconsistent outline check

2012-03-23 Thread Michael Stahl
there is some inconsistency in checking whether a SwTxtNode is added to the outline or not, leading to confusion, possibly crashes, and general unhappiness, so please apply this for libreoffice-3-5: http://cgit.freedesktop.org/libreoffice/core/commit/?id=082906e1f4cf58fdfab1a4064e2b7955fcdaeb8a

Re: Cppcheck reports Logical conjunction always evaluates to false in text_gfx.cxx

2012-03-23 Thread julien2412
Just for the update, is there anybody who could help about this ? Julien -- View this message in context: http://nabble.documentfoundation.org/Cppcheck-reports-Logical-conjunction-always-evaluates-to-false-in-text-gfx-cxx-tp3836511p3852917.html Sent from the Dev mailing list archive at

Re: [UX advise] Key navigation in ValueSet controls

2012-03-23 Thread Cor Nouws
Matteo Casalin wrote (23-03-12 21:30) On 03/21/2012 01:23 PM, Cor Nouws wrote: One could say, that because in other locations using modifiers do make a difference, it is good to have that here too, thus that unintended use of the modifiers, while no specific function is linked to that use,

[PATCH] Remove unused code (xmloff)

2012-03-23 Thread Santiago Martinez
This patch removes unused code as listed in unusedcode.easy From a934503727e8f8970695d3a61f78e7e2d66ce137 Mon Sep 17 00:00:00 2001 From: Santiago Martinez smvar...@gmail.com Date: Sat, 24 Mar 2012 01:01:49 +0100 Subject: [PATCH] Remove unused code in xmloff. --- unusedcode.easy |

Re: [REVIEW-3-5] fix for fdo#47299, calculating matrix formulas takes too long

2012-03-23 Thread Kohei Yoshida
On Fri, 2012-03-23 at 17:39 +0100, Markus Mohrhard wrote: [1] improves the calculation time for matrix formulas by one magnitude. [1] http://cgit.freedesktop.org/libreoffice/core/commit/?id=bbe088bc757fa120f50e4e104bdcd46c90f1feb1 Looks good to me. Pushed to 3-5 with my sign-off. Kohei

Re: [REVIEWED][PUSHED 3-5] fix for fdo#47299, calculating matrix formulas takes too long

2012-03-23 Thread Kohei Yoshida
Tagging. ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice

[Bug 35673] LibreOffice 3.4 most annoying bugs

2012-03-23 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=35673 Bug 35673 depends on bug 41054, which changed state. Bug 41054 Summary: FILESAVE odf file corrupted - cannot save after inserting new sheet https://bugs.freedesktop.org/show_bug.cgi?id=41054 What|Old Value |New

First build error

2012-03-23 Thread Pallav Shinghal
Hi, So I'm trying to build a fresh clone of libo. But running sh ./autogen.sh gives the following error: failed to generate configure at ./autogen.sh line 135. Could anyone help me out here? Thanks, Pallav ___ LibreOffice mailing list

[Libreoffice-commits] .: configure.in

2012-03-23 Thread Norbert Thiebaud
configure.in | 84 --- 1 file changed, 41 insertions(+), 43 deletions(-) New commits: commit c0a99301f5d854cad8baeaca798549424937598d Author: Norbert Thiebaud nthieb...@gmail.com Date: Fri Mar 23 02:02:53 2012 -0500 allow for the

[Libreoffice-commits] .: bootstrap

2012-03-23 Thread David Tardon
bootstrap |4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) New commits: commit 547249832d5cde98c2973fd5eb31bd30cddb63b9 Author: David Tardon dtar...@redhat.com Date: Fri Mar 23 08:45:49 2012 +0100 allow leading space diff --git a/bootstrap b/bootstrap index 3d1bc88..073f69a

[Libreoffice-commits] .: store/source

2012-03-23 Thread Stephan Bergmann
store/source/lockbyte.cxx |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 6776cb6f9cb91c3f86c4e66695eb7e9f4ffef715 Author: Catalin Iacob iacobcata...@gmail.com Date: Wed Mar 14 23:35:49 2012 +0100 Initialize m_hFile in FileMapping constructor. GCC

[Libreoffice-commits] .: Branch 'feature/tubes2' - 3 commits - tubes/inc tubes/qa tubes/source

2012-03-23 Thread Will Thompson
tubes/inc/tubes/conference.hxx |2 tubes/inc/tubes/file-transfer-helper.h |3 tubes/inc/tubes/manager.hxx|9 ++ tubes/qa/test_manager.cxx | 30 ++ tubes/source/conference.cxx|5 - tubes/source/file-transfer-helper.c| 29

[Libreoffice-commits] .: sw/CppunitTest_sw_subsequent_ooxmltok.mk sw/Module_sw.mk sw/qa

2012-03-23 Thread Miklos Vajna
sw/CppunitTest_sw_subsequent_ooxmltok.mk | 89 sw/Module_sw.mk |1 sw/qa/extras/ooxmltok/data/n751054.docx |binary sw/qa/extras/ooxmltok/ooxmltok.cxx | 97 +++ 4 files changed, 187 insertions(+)

[Libreoffice-commits] .: Branch 'feature/tubes2' - sc/source tubes/inc tubes/qa tubes/source

2012-03-23 Thread Eike Rathke
sc/source/ui/collab/collab.cxx | 99 +++ sc/source/ui/collab/sendfunc.cxx | 58 +- sc/source/ui/inc/collab.hxx | 67 ++ tubes/inc/tubes/conference.hxx |3 - tubes/inc/tubes/manager.hxx | 15

[Libreoffice-commits] .: Branch 'feature/tubes2' - 4 commits - tubes/inc tubes/qa tubes/source

2012-03-23 Thread Will Thompson
tubes/inc/tubes/contact-list.hxx |5 tubes/inc/tubes/manager.hxx |8 ++- tubes/qa/test_manager.cxx| 12 +- tubes/source/contact-list.cxx| 43 -- tubes/source/manager.cxx | 44

[Libreoffice-commits] .: 4 commits - berkeleydb/makefile.mk desktop/source framework/source sfx2/source

2012-03-23 Thread Caolán McNamara
berkeleydb/makefile.mk |4 ++ desktop/source/deployment/dp_persmap.cxx |4 +- desktop/source/deployment/inc/db.hxx |8 desktop/source/deployment/misc/db.cxx | 56 ++--- framework/source/jobs/jobexecutor.cxx | 20

[Libreoffice-commits] .: Branch 'feature/tubes2' - sc/source

2012-03-23 Thread Eike Rathke
sc/source/ui/collab/collab.cxx |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) New commits: commit f202e7f9e73331d8271cb00c314bdbcefd176d45 Author: Eike Rathke er...@redhat.com Date: Fri Mar 23 11:44:15 2012 +0100 tubes: adapt to new contact list interface diff --git

[Libreoffice-commits] .: Branch 'feature/tubes2' - 3 commits - tubes/qa tubes/source

2012-03-23 Thread Will Thompson
tubes/qa/test_manager.cxx | 13 +++-- tubes/source/contact-list.cxx |5 - 2 files changed, 7 insertions(+), 11 deletions(-) New commits: commit 4e2123df38772634684fea53b404274d3fac9ea9 Author: Will Thompson will.thomp...@collabora.co.uk Date: Fri Mar 23 11:22:05 2012

[Libreoffice-commits] .: Branch 'feature/tubes2' - sc/source

2012-03-23 Thread Michael Meeks
sc/source/ui/collab/collab.cxx | 37 ++-- sc/source/ui/collab/sendfunc.cxx | 44 +-- sc/source/ui/inc/collab.hxx | 12 +++--- 3 files changed, 85 insertions(+), 8 deletions(-) New commits: commit

[Libreoffice-commits] .: Branch 'feature/tubes2' - tubes/qa tubes/source

2012-03-23 Thread Will Thompson
tubes/qa/test_manager.cxx |2 +- tubes/source/manager.cxx |8 +++- 2 files changed, 8 insertions(+), 2 deletions(-) New commits: commit a0b9d1595f9cbabe29d63b85590cc66313eba203 Author: Will Thompson will.thomp...@collabora.co.uk Date: Fri Mar 23 11:31:26 2012 + Use a

[Libreoffice-commits] .: Branch 'feature/tubes2' - sc/source

2012-03-23 Thread Eike Rathke
sc/source/ui/collab/sendfunc.cxx |6 -- 1 file changed, 4 insertions(+), 2 deletions(-) New commits: commit 9a02dc094aaf9f7051fdcc103f1c2ef80e372479 Author: Eike Rathke er...@redhat.com Date: Fri Mar 23 12:39:35 2012 +0100 tubes: start session only if LIBO_TUBES=master diff --git

[Libreoffice-commits] .: Branch 'feature/tubes2' - sc/source

2012-03-23 Thread Michael Meeks
sc/source/ui/collab/sendfunc.cxx |3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) New commits: commit 5db9b41638b66b1198b65b72d31c36613475fd25 Author: Michael Meeks michael.me...@suse.com Date: Fri Mar 23 11:32:13 2012 + tubes: fix crash with no collaboration setup diff

[Libreoffice-commits] .: extensions/source

2012-03-23 Thread Fridrich Strba
extensions/source/macosx/spotlight/OOoSpotlightImporter.m |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit a7c11707cf43b13d75a039cae918fae7f268cbf0 Author: Fridrich Å trba fridrich.st...@bluewin.ch Date: Fri Mar 23 14:03:25 2012 +0100 Hop, a logical error diff

[Libreoffice-commits] .: Branch 'feature/tubes2' - sc/source

2012-03-23 Thread Michael Meeks
sc/source/ui/collab/sendfunc.cxx |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) New commits: commit 171bb4d0cd214ad436c691b1683c7cb7139c5920 Author: Michael Meeks michael.me...@suse.com Date: Fri Mar 23 13:13:30 2012 + tubes: more helpful exception printing on file load

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

2012-03-23 Thread Miklos Vajna
sw/qa/extras/rtftok/data/fdo47326.rtf |5 + sw/qa/extras/rtftok/rtftok.cxx |9 + writerfilter/source/rtftok/rtfdocumentimpl.cxx |8 3 files changed, 22 insertions(+) New commits: commit f84e0e6b1b0ec5f52ee963a62ac420cd872a771e Author:

[Libreoffice-commits] .: 2 commits - sal/qa sal/rtl sal/test sw/qa sw/source

2012-03-23 Thread Takeshi Abe
sal/qa/rtl_strings/rtl_OUString.cxx |1 - sal/rtl/source/logfile.cxx |1 - sal/rtl/source/random.cxx |1 - sal/rtl/source/uri.cxx |3 --- sal/test/unloading/unloadTest.cxx |1 - sw/qa/extras/regression-test.cxx|2 --

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

2012-03-23 Thread Kohei Yoshida
sc/source/filter/html/htmlexp.cxx |4 1 file changed, 4 insertions(+) New commits: commit 2ccb55183e1131039f062abbbd95caf1451c5efe Author: Markus Mohrhard markus.mohrh...@googlemail.com Date: Fri Mar 23 04:27:45 2012 +0100 increase nCol before next iteratation to prevent loop,

[Libreoffice-commits] .: Branch 'feature/tubes2' - 3 commits - sc/source tubes/inc tubes/qa tubes/source

2012-03-23 Thread Will Thompson
sc/source/ui/collab/collab.cxx |3 +++ tubes/inc/tubes/conference.hxx |3 ++- tubes/qa/test_manager.cxx | 11 --- tubes/source/conference.cxx| 17 ++--- tubes/source/manager.cxx |2 -- 5 files changed, 27 insertions(+), 9 deletions(-) New

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

2012-03-23 Thread Cédric Bosdonnat
oox/inc/oox/vml/vmlshape.hxx |1 + oox/source/token/properties.txt|2 ++ oox/source/vml/vmlshape.cxx|9 - oox/source/vml/vmlshapecontext.cxx |1 + 4 files changed, 12 insertions(+), 1 deletion(-) New commits: commit

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

2012-03-23 Thread Kohei Yoshida
sc/inc/globstr.hrc|3 ++- sc/source/ui/src/globstr.src |4 sc/source/ui/view/dbfunc3.cxx |3 +-- 3 files changed, 7 insertions(+), 3 deletions(-) New commits: commit 35fe6b9587a22e9faa669ebab05bf577f09a3438 Author: Kohei Yoshida kohei.yosh...@gmail.com Date: Fri

[Libreoffice-commits] .: 7 commits - scripting/examples scripting/java scripting/workben solenv/gbuild sw/source vcl/source

2012-03-23 Thread Michael Stahl
solenv/gbuild/JavaClassSet.mk | 20 +--- sw/source/core/layout/paintfrm.cxx | 27 +-- vcl/source/gdi/sallayout.cxx | 10 +++--- 3 files changed, 33 insertions(+), 24 deletions(-) New commits: commit

[Libreoffice-commits] .: Branch 'libreoffice-3-5' - solenv/gbuild

2012-03-23 Thread Stephan Bergmann
solenv/gbuild/JavaClassSet.mk |4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) New commits: commit 7d7fa43c3ce3dff07023ee483bdbd685ffe03bd8 Author: Michael Stahl mst...@redhat.com Date: Fri Mar 23 15:26:35 2012 +0100 JavaClassSet: giving only changed java files to javac is

[Libreoffice-commits] .: 5 commits - sc/source sfx2/inc sfx2/source sot/inc svtools/inc svtools/source sw/source tools/inc unusedcode.easy

2012-03-23 Thread Caolán McNamara
sc/source/ui/app/inputhdl.cxx |1 sc/source/ui/view/output.cxx |4 -- sc/source/ui/view/output2.cxx |3 - sfx2/inc/sfx2/docfile.hxx |3 - sfx2/source/doc/docfile.cxx| 11 +-

[Libreoffice-commits] .: binfilter/inc

2012-03-23 Thread Caolán McNamara
binfilter/inc/bf_svtools/cancel.hxx | 49 1 file changed, 49 insertions(+) New commits: commit 4d74905bf959fcce368f2dbf79021417484b75b8 Author: Caolán McNamara caol...@redhat.com Date: Fri Mar 23 12:23:21 2012 + move SvWeakBase etc into

[Libreoffice-commits] .: 5 commits - scp2/source scripting/examples scripting/Jar_HelloWorld.mk scripting/Jar_Highlight.mk scripting/Jar_MemoryUsage.mk scripting/java

2012-03-23 Thread Stephan Bergmann
scp2/source/ooo/common_brand.scp | 11 - scripting/Jar_HelloWorld.mk |2 scripting/Jar_Highlight.mk

  1   2   3   4   >