UNO, virtual base (or the lack thereof) problem

2013-05-30 Thread Noel Grandin
an modify the non-public bits first, flushing out bugs slowly and gaining experience with the likely problems. Also, we can mandate that new UNO interfaces use virtual inheritance. Then whenever we do our ABI-breaking release, we can spend that dev cycle sorting out the public interfaces. Regards,

[Libreoffice-commits] core.git: Branch 'libreoffice-4-1' - dbaccess/source

2013-05-30 Thread Noel Grandin
dbaccess/source/sdbtools/connection/connectiontools.cxx | 11 --- 1 file changed, 8 insertions(+), 3 deletions(-) New commits: commit bf51a0b97c63801654c3052c36f9408873c5ad36 Author: Noel Grandin Date: Thu May 30 08:18:16 2013 +0200 fdo#64984 - EDITING: Creating table with GUI

[Libreoffice-commits] core.git: xmloff/source

2013-06-03 Thread Noel Grandin
xmloff/source/forms/elementimport.cxx |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit d47fb9474421e950b828a921565656babab9d9ba Author: Noel Grandin Date: Mon Jun 3 10:37:33 2013 +0200 fix for unused return value. This code was introduced by

Re: Doubt about OpenSymbol and Math

2013-06-04 Thread Noel Grandin
On 2013-06-04 10:41, Michael Meeks wrote: > > On Mon, 2013-06-03 at 19:20 -0300, Marcos Souza wrote: >> Some after looking at all Math bugs, I saw something interesting: >> About 30 % of bugs are about Symbols. Someone asking to put new symbols, >> another guys asking about a "Symbol manager" to

[Libreoffice-commits] core.git: xmlsecurity/source

2013-06-05 Thread Noel Grandin
xmlsecurity/source/framework/encryptorimpl.cxx |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit d11e59088fc747a338572bdd62c738e364c0332a Author: Noel Grandin Date: Wed Jun 5 15:22:49 2013 +0200 fix superclass-constructor call. Was introduced in commit

anyone else having unit test failures on master

2013-04-11 Thread Noel Grandin
Hi Until recently (about a week ago) I could do a "make check" on my machine and it worked fine. Now I seem to be having a reproducible failure in make JunitTest_sw_unoapi It's trigger an assert in String::Len, see trace below. Any ideas? Thread 1 (Thread 0x2b52c695d700 (LWP 27076)): #0

Re: anyone else having unit test failures on master

2013-04-12 Thread Noel Grandin
On 2013-04-12 15:17, Eike Rathke wrote: Hi Noel, On Thursday, 2013-04-11 14:23:47 +0200, Noel Grandin wrote: Now I seem to be having a reproducible failure in make JunitTest_sw_unoapi It's trigger an assert in String::Len, see trace below. Presumably the underlying UniString::mpDa

[Libreoffice-commits] core.git: sfx2/source

2013-04-12 Thread Noel Grandin
sfx2/source/inc/mnucfga.hxx | 43 --- sfx2/source/inc/virtmenu.hxx |1 - sfx2/source/menu/mnumgr.cxx |1 - 3 files changed, 45 deletions(-) New commits: commit adcae497ce48a6ff6e994817b17840842faa8732 Author: Noel Grandin Date: Fri Apr 12 16

[Libreoffice-commits] core.git: sfx2/inc sfx2/source

2013-04-15 Thread Noel Grandin
: Noel Grandin Date: Mon Apr 15 10:36:16 2013 +0200 remove dead class SfxResourceManager Change-Id: I33590e7907c593d821e2eafda0e04c76c8b99879 Reviewed-on: https://gerrit.libreoffice.org/3393 Reviewed-by: Thomas Arnhold Tested-by: Thomas Arnhold diff --git a/sfx2/inc

blink getting faster build times on windows using single -I path

2013-04-16 Thread Noel Grandin
In light of the recent discussion around /include . One of the Opera guys hacking on Blink has a patch that demonstrates a 20% build-time speedup on Windows by switching to a single include path. https://groups.google.com/a/chromium.org/d/msg/blink-dev/QOA3ETK6lyY/dlTI_Od3J5oJ Disclai

Re: [comment] Deprecated warnings disabled for Office Beans.

2013-04-16 Thread Noel Grandin
On 2013-04-16 12:26, Chris Sherlock wrote: I'm a bit curious about the deprecation warnings: LocalOfficeConnection is being derived from a deprecated class, but is not itself deprecated. I'm a but confused how this makes any sense? The Java stuff needs an awful lot of TLC. I started doing

Re: [comment] Deprecated warnings disabled for Office Beans.

2013-04-16 Thread Noel Grandin
On 2013-04-16 13:24, Chris Sherlock wrote: Oh. But what exactly *are* the new interfaces? The interfaces were deprecated in commit eb99e74c6248c4bc60f4191154ea18319550b28d [1] some time in 2005, the only reference I have to why is the cryptic comment "INTEGRATION: CWS jl22 (1.2.26); FILE MERG

Re: patch for postgresql driver

2013-04-16 Thread Noel Grandin
On 2013-04-16 16:16, Wols Lists wrote: if( args[i].Name.matchIgnoreAsciiCaseAsciiL( keyword_list[j] )) Surely this will work: if( args[i].Name.matchIgnoreAsciiCaseAsciiL( keyword_list[j], strlen( keyword_list[j] ))) ?? Disclaimer: http://www.peralex.com/disclaimer.html __

Re: patch for postgresql driver

2013-04-16 Thread Noel Grandin
nk is warranted in this case. On 2013-04-16 16:44, Wols Lists wrote: On 16/04/13 15:38, Noel Grandin wrote: On 2013-04-16 16:16, Wols Lists wrote: if( args[i].Name.matchIgnoreAsciiCaseAsciiL( keyword_list[j] )) Surely this will work: if( args[i].Name.matchIgnoreAsciiCaseAsciiL( keyword_l

Re: patch for postgresql driver

2013-04-16 Thread Noel Grandin
On Tue, Apr 16, 2013 at 6:36 PM, Wols Lists wrote: > > I need to force some type of type conversion - basically from "const > char *" to "const rtl::OUString&", I presume. You can either call matchIgnoreAsciiCase( OUString ( p ) ) or matchIgnoreAsciiCase( p, strlen(p) )

[Libreoffice-commits] core.git: sfx2/inc sfx2/source

2013-04-16 Thread Noel Grandin
sfx2/inc/sfx2/bindings.hxx |3 - sfx2/source/control/bindings.cxx | 95 --- 2 files changed, 52 insertions(+), 46 deletions(-) New commits: commit d3a279cbd308486250e2b652aac01d41e2a52f14 Author: Noel Grandin Date: Fri Apr 12 09:38:45 2013 +0200

[Libreoffice-commits] core.git: sfx2/source

2013-04-16 Thread Noel Grandin
sfx2/source/dialog/tabdlg.cxx | 72 ++ 1 file changed, 32 insertions(+), 40 deletions(-) New commits: commit a43dc5802eacca8451e65bf2229858cfe89408eb Author: Noel Grandin Date: Fri Apr 12 15:35:07 2013 +0200 Convert SfxPtrArray to std::vector in

[Libreoffice-commits] core.git: sfx2/inc sfx2/source

2013-04-16 Thread Noel Grandin
sfx2/inc/sfx2/objface.hxx | 17 -- sfx2/source/control/objface.cxx | 65 ++-- 2 files changed, 30 insertions(+), 52 deletions(-) New commits: commit 3f153805b84e91dec3819a15ae04d2ba1a9721dc Author: Noel Grandin Date: Fri Apr 12 16:24:02

[Libreoffice-commits] core.git: sfx2/source

2013-04-16 Thread Noel Grandin
sfx2/source/doc/docfac.cxx | 19 +-- 1 file changed, 9 insertions(+), 10 deletions(-) New commits: commit 9b9f1c4b6f21eb30eb365da3cca4ca4a1d2d0069 Author: Noel Grandin Date: Fri Apr 12 16:35:25 2013 +0200 Convert SfxViewFactoryArr_Impl from SfxPtrArray to std::vector

[Libreoffice-commits] core.git: sfx2/source

2013-04-16 Thread Noel Grandin
sfx2/source/appl/workwin.cxx | 80 +++ sfx2/source/inc/workwin.hxx |4 +- 2 files changed, 38 insertions(+), 46 deletions(-) New commits: commit f1c91970cba512452bb138c5af262b910068589e Author: Noel Grandin Date: Fri Apr 12 17:06:07 2013 +0200

[Libreoffice-commits] core.git: sfx2/source

2013-04-16 Thread Noel Grandin
sfx2/source/appl/workwin.cxx | 125 --- sfx2/source/inc/workwin.hxx | 10 --- 2 files changed, 63 insertions(+), 72 deletions(-) New commits: commit 74af27fef6505d4e47b53ea765b9cc4a96629fa4 Author: Noel Grandin Date: Mon Apr 15 09:57:55 2013 +0200

[Libreoffice-commits] core.git: sfx2/inc sfx2/source

2013-04-16 Thread Noel Grandin
sfx2/inc/sfx2/dispatch.hxx |4 + sfx2/source/control/dispatch.cxx | 99 ++- 2 files changed, 49 insertions(+), 54 deletions(-) New commits: commit 7e4db91a3900fd0bbce0f0592a045458a37862b3 Author: Noel Grandin Date: Mon Apr 15 11:21:16 2013 +0200

[Libreoffice-commits] core.git: sfx2/inc sfx2/Package_inc.mk sfx2/source

2013-04-16 Thread Noel Grandin
sfx2/Package_inc.mk |1 sfx2/inc/sfx2/minstack.hxx | 56 sfx2/source/menu/mnumgr.cxx |1 3 files changed, 58 deletions(-) New commits: commit 187a592df9bc9c1ef4b53fe6dce40a3c74f6bb67 Author: Noel Grandin Date: Mon Apr 15 11:26

[Libreoffice-commits] core.git: starmath/inc starmath/source

2013-04-16 Thread Noel Grandin
starmath/inc/utility.hxx| 104 +++--- starmath/source/utility.cxx | 150 ++-- 2 files changed, 64 insertions(+), 190 deletions(-) New commits: commit c6e9926468b1ab7eade9c1afc9e2216dd7c97330 Author: Noel Grandin Date: Mon

[Libreoffice-commits] core.git: cui/source sfx2/inc sfx2/Library_sfx.mk sfx2/Package_inc.mk sfx2/source

2013-04-16 Thread Noel Grandin
files changed, 351 deletions(-) New commits: commit e2ce3538943c510efa8041fca3c83728acf3a155 Author: Noel Grandin Date: Mon Apr 15 15:18:43 2013 +0200 remove dead class SfxPtrAr and it's header sfx/inc/sfx2/minarray.hxx Change-Id: I23c9f905e6f679299f95baa6d8d4bafa97a

[Libreoffice-commits] core.git: sw/source

2013-04-16 Thread Noel Grandin
insertions(+), 46 deletions(-) New commits: commit 7cac1bc73c53d8bfb0b7d87966ae19ce2e918883 Author: Noel Grandin Date: Tue Apr 16 15:28:39 2013 +0200 Convert SwDrawTextInfo.pText from XubString to OUString Change-Id: Ie567feb315a018a1f5bd794a4d12435865e67ec4 Reviewed-on: https

[Libreoffice-commits] core.git: sfx2/source

2013-04-17 Thread Noel Grandin
sfx2/source/control/dispatch.cxx |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit c3b1ce2097ea3b43234be3dfb1d529335b980ff8 Author: Noel Grandin Date: Wed Apr 17 10:18:33 2013 +0200 Fix assert statement which I messed up in

Re: [Libreoffice-commits] core.git: sfx2/inc sfx2/source

2013-04-17 Thread Noel Grandin
On 2013-04-17 10:06, Miklos Vajna wrote: On Tue, Apr 16, 2013 at 01:04:46PM -0700, Noel Grandin wrote: sfx2/inc/sfx2/dispatch.hxx |4 + sfx2/source/control/dispatch.cxx | 99 ++- 2 files changed, 49 insertions(+), 54 deletions(-) New

[Libreoffice-commits] core.git: bean/qa

2013-04-17 Thread Noel Grandin
bean/qa/complex/bean/OOoBeanTest.java |8 bean/qa/complex/bean/WriterFrame.java |4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) New commits: commit cb6b6e286cf4664c0036560908ec28f3bba3aaa6 Author: Noel Grandin Date: Wed Apr 17 10:49:20 2013 +0200 Fix for method

[Libreoffice-commits] core.git: odk/examples

2013-04-17 Thread Noel Grandin
odk/examples/java/Inspector/ProtocolHandlerAddon.java | 50 -- 1 file changed, 23 insertions(+), 27 deletions(-) New commits: commit bea18dd581ac9341a19e757a72662ab7a2e34b0a Author: Noel Grandin Date: Wed Apr 17 12:57:16 2013 +0200 fix compile error in unused Java file

[Libreoffice-commits] core.git: swext/mediawiki

2013-04-19 Thread Noel Grandin
deletions(-) New commits: commit a79d43dcd7989ee927de1b8c69ebc2981cc7166e Author: Noel Grandin Date: Wed Apr 17 13:51:15 2013 +0200 Java cleanup in mediawiki extension - remove unnecessary casts - convert Hashtable->Map and Vector->ArrayList - remove dead fields

[Libreoffice-commits] core.git: forms/qa odk/examples

2013-04-19 Thread Noel Grandin
/OfficeDev/OfficeConnect.java |8 8 files changed, 20 insertions(+), 20 deletions(-) New commits: commit 0d8719b0ff9aacb7cdd8a238b8060540d4d00eff Author: Noel Grandin Date: Wed Apr 17 15:10:06 2013 +0200 Java cleanup, use generics in calls to UnoRuntime#queryInterface

Re: LO project Extensions and master build on OSX 10.8.3

2013-04-19 Thread Noel Grandin
On Friday, 19 April 2013, Alexander Thurgood wrote: > It seems like something has gone wrong with registration/activation of > the extensions in my latest build of LO from master, the following no > > That could be my java cleanup work. What version of java are you using? _

Re: Zotero extension hosed with master build on OSX 10.8.3

2013-04-19 Thread Noel Grandin
On Friday, 19 April 2013, Alexander Thurgood wrote: > More extension woes with my master build > > Version: 4.1.0.0.alpha0+ > Build ID: f182521948f0d31b0f6ad7b98eb5fc32562ba3d > > > on OSX, this time with Zotero : > > The extension appears as disable in the Extensions Manager. If I try to > enable

Re: LO project Extensions and master build on OSX 10.8.3

2013-04-19 Thread Noel Grandin
On Friday, 19 April 2013, Fridrich Strba wrote: > Noel, > > Maybe I revert until we understand what the problem is? > > Given that python extensions are also failing for Alexander I suspect something else is at work. ___ LibreOffice mailing list LibreOff

Re: Calc statistical accuracy

2013-04-21 Thread Noel Grandin
On Sun, Apr 21, 2013 at 1:56 PM, Chris Sherlock wrote: >> I think it is off-topic here and should be moved to the discuss list. > > > Why is that? It's a fairly innocent enquiry. > This is a list for people actually working on modifying the code of LO. Discussions about what modifications are de

[Libreoffice-commits] core.git: solenv/bin

2013-04-22 Thread Noel Grandin
0 files changed New commits: commit 93ca7f0b74d4b1423f7a6e5ac4e751bfd2008553 Author: Noel Grandin Date: Mon Apr 22 15:39:37 2013 +0200 fix shell script execute permissions looks like it was inadvertantly removed by commit 62badf38283ef31e50d40e62f5d8bc3824c615d7 "Mo

[Libreoffice-commits] core.git: qadevOOo/runner qadevOOo/tests

2013-04-22 Thread Noel Grandin
37eee65fbf1ee7ef5c86731594e33b056b6612d2 Author: Noel Grandin Date: Wed Apr 17 15:31:23 2013 +0200 Java cleanup - static fields that should not be static Somebody appears to have been confused about the purpose of static in Java. These are instance fields and should therefore not be

[Libreoffice-commits] core.git: odk/examples

2013-04-23 Thread Noel Grandin
odk/examples/DevelopersGuide/Spreadsheet/ExampleDataPilotSource.java |7 +++ 1 file changed, 7 insertions(+) New commits: commit 4f6adb0585037013241bd59e5c869a261c1f20c1 Author: Noel Grandin Date: Tue Apr 23 08:53:16 2013 +0200 Fix compilation of Spreadsheet odk example

[Libreoffice-commits] core.git: qadevOOo/runner qadevOOo/tests sw/qa

2013-04-23 Thread Noel Grandin
- qadevOOo/tests/java/mod/_sw/SwAccessibleTextGraphicObject.java |4 - sw/qa/complex/accessibility/AccessibleRelationSet.java |8 +- 22 files changed, 46 insertions(+), 91 deletions(-) New commits: commit ada02981672ae74bbdf6c4e5606d78c9211b2317 Author: Noel Grandin Date: Tue Apr 23 09

[Libreoffice-commits] core.git: odk/examples

2013-04-23 Thread Noel Grandin
/DevelopersGuide/Forms/SalesFilter.java | 2 - odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/OfficeConnect.java | 12 +- 5 files changed, 16 insertions(+), 16 deletions(-) New commits: commit bc8b419b0dc8bffb70accce443f4f46aa48cbd58 Author: Noel Grandin

Re: [ANN] global header move on Tuesday 2013-04-23 between 1200UTC and 2000UTC

2013-04-23 Thread Noel Grandin
On 2013-04-23 14:25, Bjoern Michaelsen wrote: On Thu, Apr 18, 2013 at 10:46:26PM +0200, Bjoern Michaelsen wrote: - I will rebase the script against master on 2013-04-23 1200 UTC and again execute and trigger the build on gerrit The 1200UTC last sanity is running: https://gerrit.libreoffice.o

Re: [ANN] global header move on Tuesday 2013-04-23 between 1200UTC and 2000UTC

2013-04-23 Thread Noel Grandin
On 2013-04-23 15:29, Stephan Bergmann wrote: On 04/23/2013 03:09 PM, Bjoern Michaelsen wrote: Why are you rebasing daily? I work on patches and rebase them once directly before pushing them to master sparing myself a lot of pain (and severely reducing the risk of ending up with rebasing on a br

[Libreoffice-commits] core.git: forms/source

2013-04-23 Thread Noel Grandin
forms/source/component/FormsCollection.hxx | 12 ++-- 1 file changed, 6 insertions(+), 6 deletions(-) New commits: commit a5f675c3d3254f03da8fbf42028a9c6b048df635 Author: Noel Grandin Date: Tue Apr 23 17:57:24 2013 +0200 fix, forget SAL_CALL again Change-Id

[Libreoffice-commits] core.git: bridges/test extensions/qa forms/qa nlpsolver/ThirdParty odk/examples scripting/workben

2013-04-24 Thread Noel Grandin
: Noel Grandin Date: Tue Apr 23 09:30:47 2013 +0200 Java cleanup, use generic containers where possible Change-Id: Icd830004de3e121f5b96393e7d7b447775833419 Reviewed-on: https://gerrit.libreoffice.org/3569 Reviewed-by: Fridrich Strba Tested-by: Fridrich Strba diff --git a

[Libreoffice-commits] core.git: 3 commits - animations/source dbaccess/source extensions/source offapi/com offapi/UnoApi_offapi.mk sd/CppunitTest_sd_filters_test.mk sd/CppunitTest_sd_regression_test.m

2013-04-24 Thread Noel Grandin
Author: Noel Grandin Date: Tue Apr 23 16:04:30 2013 +0200 fdo#46808 Convert animations::ParallelTimeContainer to new style Change-Id: Iac6337828c807a132e561b5e9017a708be2e9729 diff --git a/animations/source/animcore/animcore.cxx b/animations/source/animcore/animcore.cxx index

conversion operators for UNO

2013-04-25 Thread Noel Grandin
leave the question as to whether or not is implementable for later :-) Regards, Noel Grandin Disclaimer: http://www.peralex.com/disclaimer.html ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/lis

[Libreoffice-commits] core.git: forms/source offapi/com offapi/UnoApi_offapi.mk sdext/source sd/source

2013-04-25 Thread Noel Grandin
/PresenterPaneBorderManager.cxx |6 -- sdext/source/presenter/PresenterSlideShowView.cxx |8 --- 6 files changed, 44 insertions(+), 15 deletions(-) New commits: commit 746784e16f31133e4dc4e062fa5b7f1620e8cda6 Author: Noel Grandin Date: Thu Apr 25 11:02:24 2013 +0200 fdo#46808

Re: conversion operators for UNO

2013-04-25 Thread Noel Grandin
On 2013-04-25 11:00, Miklos Vajna wrote: On Thu, Apr 25, 2013 at 10:35:29AM +0200, Noel Grandin wrote: Then we typically have C++ code that looks like void foo(Reference a) void bar() { Reference b = methodThatTakesA( Reference(b, UNO_QUERY_THROW) ); } I want to

Re: conversion operators for UNO

2013-04-25 Thread Noel Grandin
On 2013-04-25 11:59, Michael Stahl wrote: e.g. this problem here caused a 3 % or so slowdown in ODF file load and/or save (i forgot which), mainly due to 2 additional queryInterface calls in a critical place: https://issues.apache.org/ooo/show_bug.cgi?id=108161 with your proposal it would be pos

[Libreoffice-commits] core.git: 6 commits - offapi/com offapi/UnoApi_offapi.mk sd/inc sd/source

2013-04-25 Thread Noel Grandin
insertions(+), 133 deletions(-) New commits: commit 3286827b38ce6f6aff2da123e9f246ad923932cd Author: Noel Grandin Date: Thu Apr 25 14:43:24 2013 +0200 fdo#46808, Convert some XMultiServiceFactory to XComponentContext Change-Id: I1dcfee9fa0fdc4457754396ffb52cc8462f3906a diff --git

Re: (KDE4) file dialog broken (Re: [Libreoffice-commits] core.git: 14 commits - basctl/source cui/source dbaccess/source desktop/source dtrans/Library_dnd.mk dtrans/Library_ftransl.mk dtrans/Library_s

2013-02-19 Thread Noel Grandin
Will do. On Tue, Feb 19, 2013 at 6:59 PM, Lubos Lunak wrote: > On Tuesday 12 of February 2013, Noel Grandin wrote: > > commit 4b51374a7021d52f7f1be1861e2ee6a011b30ecd > > Author: Noel Grandin > > Date: Tue Feb 12 09:23:05 2013 +0200 > > > > fdo#46808,

[Libreoffice-commits] core.git: fpicker/source vcl/unx

2013-02-19 Thread Noel Grandin
d4b904f7d15be8460dbff4cf6c8d500aea5a4fa3 Author: Noel Grandin Date: Wed Feb 20 08:41:56 2013 +0200 more fixes for my FilePicker changes in 4b51374a7021d52f7f1be1861e2ee6a011b30ecd "fdo#46808, Adapt ui::dialogs::FilePicker UNO service to new style"

Re: (KDE4) file dialog broken (Re: [Libreoffice-commits] core.git: 14 commits - basctl/source cui/source dbaccess/source desktop/source dtrans/Library_dnd.mk dtrans/Library_ftransl.mk dtrans/Library_s

2013-02-19 Thread Noel Grandin
On 2013-02-19 18:59, Lubos Lunak wrote: On Tuesday 12 of February 2013, Noel Grandin wrote: commit 4b51374a7021d52f7f1be1861e2ee6a011b30ecd Author: Noel Grandin Date: Tue Feb 12 09:23:05 2013 +0200 fdo#46808, Adapt ui::dialogs::FilePicker UNO service to new style Change-Id

Re: Unable to build due to libwpd-stream.h missing

2013-02-19 Thread Noel Grandin
On 2013-02-20 01:09, Jean-Noël Rouvignac wrote: 2013/2/19 Jack Wakefield > Hello, I'm unable to build the latest LibreOffice git on ArchLinux due to the following error: VSDInternalStream.h:37:41: fatal error: libwpd-stream/libwpd-stream.h:

[Libreoffice-commits] core.git: vcl/unx

2013-02-20 Thread Noel Grandin
vcl/unx/kde/UnxFilePicker.cxx |8 +--- vcl/unx/kde/UnxFilePicker.hxx | 10 ++ 2 files changed, 7 insertions(+), 11 deletions(-) New commits: commit f3ceb0be8805657a3b886509ac255128a11b5974 Author: Noel Grandin Date: Wed Feb 20 13:43:03 2013 +0200 fixup class vs

[Libreoffice-commits] core.git: fpicker/source

2013-02-22 Thread Noel Grandin
fpicker/source/office/OfficeFilePicker.hxx | 25 + 1 file changed, 17 insertions(+), 8 deletions(-) New commits: commit c04c95958030bd4872fbbc0b3d4bc996fb041488 Author: Noel Grandin Date: Thu Feb 21 15:41:36 2013 +0200 fix for fdo#61187 ... "CRASH

execute bits in GIT

2013-02-26 Thread Noel Grandin
Perhaps we need to add a new rule to the git-commit-hook? Original Message Subject:[Libreoffice-commits] core.git: config_host.mk.in configure.ac Date: Tue, 26 Feb 2013 00:38:55 -0800 (PST) From: Stephan Bergmann Reply-To: libreoffice@lists.freedesktop.org T

Re: about documenting infrastructure

2013-02-26 Thread Noel Grandin
On 2013-02-26 13:06, Florian Effenberger wrote: mail this documentation to the admin team at hostmas...@documentfoundation.org. Using somewhere on the DocumentationFoundation wiki to document this might be friendlier to maintain, and easier to update since you don't have to guess what it is

Re: Leftover dmake makefiles

2013-03-01 Thread Noel Grandin
On 2013-03-01 10:39, Stephan Bergmann wrote: On 03/01/2013 12:35 AM, Peter Foley wrote: We still have 153 dmake files left over in test, qa, and workben directories. Somebody should go through them and decide which of the various examples, tests, etc. are worth keeping. There's a few places,

Re: undefined reference error while build

2013-03-01 Thread Noel Grandin
On 2013-03-01 11:24, Prashant Pandey wrote: The most recent issue I am having is that, I 'make', the cpu reaches this state and then does nothing (I left cpu for around 7 hours): What processes are running while it's stuck? Disclaimer: http://www.peralex.com/disclaimer.html

[Libreoffice-commits] core.git: 5 commits - forms/source i18npool/source offapi/com offapi/type_reference offapi/UnoApi_offapi.mk sd/source sfx2/source svtools/source svx/source sw/source toolkit/sour

2013-03-04 Thread Noel Grandin
| 24 + xmloff/source/xforms/xformsapi.hxx |6 - 37 files changed, 294 insertions(+), 164 deletions(-) New commits: commit b313e37a92a18bc663ea5eb97ea0a569c6b0a962 Author: Noel Grandin Date: Fri Mar 1 16:32:32 2013 +0200 fdo#46808

[Libreoffice-commits] core.git: sfx2/source

2013-03-04 Thread Noel Grandin
sfx2/source/dialog/filedlghelper.cxx |1 + 1 file changed, 1 insertion(+) New commits: commit 85871c984b14b7ceb72634095660081ef16054e5 Author: Noel Grandin Date: Mon Mar 4 13:03:49 2013 +0200 fix missing return statement ...introduced in my commit

Re: archive / install slowness ...

2013-03-05 Thread Noel Grandin
On 2013-03-05 11:39, Michael Meeks wrote: The deliverable to the install of the vast majority of external projects is not a .zip file in my experience - but a .so / .dll or , and lots that are (apparently) some hack-around scp2 so that it's not necessary to list lots of individual files:

Re: [HELP] Java expert needed on fdo#61726

2013-03-05 Thread Noel Grandin
On 2013-03-05 16:01, Lionel Elie Mamane wrote: Hi, If someone with a better clue at Java could take a look at https://bugs.freedesktop.org/show_bug.cgi?id=61726 I'd be grateful. It completely breaks ReportBuilder, blocks other work on quite annoying / important bugs in ReportBuilder, ... >From

[Libreoffice-commits] core.git: cui/source offapi/com sc/source svtools/source vcl/win

2013-03-05 Thread Noel Grandin
+- 5 files changed, 17 insertions(+), 23 deletions(-) New commits: commit 3554b3653049cb8fffa2a56ca0c9a2d8e972f5ec Author: Noel Grandin Date: Tue Mar 5 11:34:53 2013 +0200 fix for fdo#61801 ... "crash on Tools - Options - LibreOffice - Personalization - Select Backg

Re: Missing service SvgWriter - forgotten when rebasing with AOO

2013-03-07 Thread Noel Grandin
how about you give it a try and ask back here if you have difficulties. On Thursday, 7 March 2013, Fernand Vanrie wrote: > Michael , > > OK , but we need SVG and a working Native mySQL connector :-) > > so: any news about a volonteer to compile Connector for 4.0 (windows) ? > > Greetz > > Fernan

Re: gcc wrapper for MSVC

2013-03-07 Thread Noel Grandin
On 2013-03-07 17:39, Caolán McNamara wrote: On Wed, 2013-03-06 at 14:23 -0500, Peter Foley wrote: All, I wanted to give you a heads-up that I've decided to take a shot at creating a gcc wrapper for MSVC. (see https://wiki.documentfoundation.org/Development/Gsoc/Ideas#Gcc_like_wrapper_for_MSC_o

[Libreoffice-commits] core.git: 2 commits - forms/qa nlpsolver/ThirdParty odk/examples

2013-04-25 Thread Noel Grandin
/EuroAdaption.java | 19 odk/examples/java/Text/StyleInitialization.java |2 11 files changed, 347 insertions(+), 355 deletions(-) New commits: commit fb39e719895689a290d3eb910bee994e5ffa2c25 Author: Noel Grandin

[Libreoffice-commits] core.git: cppcanvas/source

2013-04-29 Thread Noel Grandin
cppcanvas/source/mtfrenderer/emfplus.cxx | 10 +++--- 1 file changed, 3 insertions(+), 7 deletions(-) New commits: commit 2f1a293e1a119ad12e0b592da9f7e2f7d88e2479 Author: Noel Grandin Date: Fri Apr 26 13:27:32 2013 +0200 Clang cleanup, unaligned if statement The extra semi

[Libreoffice-commits] core.git: drawinglayer/source svx/source

2013-04-29 Thread Noel Grandin
-- drawinglayer/source/primitive3d/sdrlatheprimitive3d.cxx|2 -- svx/source/sdr/primitive2d/sdrprimitivetools.cxx |4 +++- 6 files changed, 5 insertions(+), 16 deletions(-) New commits: commit 3872be543252a30d020e35233415c5fccc0ea806 Author: Noel Grandin Date: Fri Apr 26 13:41:29 2013

Re: conversion operators for UNO

2013-05-01 Thread Noel Grandin
On Tuesday, 30 April 2013, Stephan Bergmann wrote: > > So I came up in parallel with > > > > Awesome! I'm working on a clang plugin to find places that can make use of the constructor. I've got it partially wo

Re: master build failure

2013-05-03 Thread Noel Grandin
That looks like it has to do with the splitting out of some ODF stuff. You might need to do a "make clean" On 2013-05-02 21:02, Ruslan Kabatsayev wrote: Hi all, I'm facing a build failure with current master, here's the error output: [build CUT] sal_rtl_cipher [build CUT] sal_rtl_crc32 [build

Re: How to add a new spell checker?

2013-05-03 Thread Noel Grandin
Have a look at how Lightproof works. http://extensions.libreoffice.org/extension-center/lightproof-editor ___ LibreOffice mailing list LibreOffice@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice

Re: Annoyance (Bug?) in Page Preview while Gallery is displayed (Writer 4.0.2)

2013-05-05 Thread Noel Grandin
If you plan on developing a fix for the bug, then this is the right place. Otherwise, https://www.libreoffice.org/bugzilla/ or disc...@documentfoundation.org is where you want to be. On Sun, May 5, 2013 at 6:32 PM, CVAlkan wrote: > I'm not sure if this is where bugs should be posted, but FWIW

[Libreoffice-commits] core.git: 5 commits - offapi/com offapi/UnoApi_offapi.mk sfx2/source sw/CppunitTest_sw_ooxmlexport.mk sw/CppunitTest_sw_rtfimport.mk udkapi/com vcl/source vcl/unx

2013-05-06 Thread Noel Grandin
insertions(+), 118 deletions(-) New commits: commit 46662428b2b17043e1d09c4107e7a5c0cf490b86 Author: Noel Grandin Date: Fri May 3 17:23:20 2013 +0200 fdo#46808, Convert graphic::Primitive2DTools to new style Change-Id: I9719b43dbf98cfca29638f54cc907e48c7ad28b7 diff --git a/offapi

psprint::CompatMetricOverride - can I kill it?

2013-05-06 Thread Noel Grandin
6 pl 1.77.2.2: #146890# algorithm is needed 2007/05/09 12:13:59 pl 1.77.2.1: #146890# backwards compatibility service for metrics But the commit did not introduce the associated service. Regards, Noel Grandin Disclaimer: http://www.peralex.com/di

Re: psprint::CompatMetricOverride - can I kill it?

2013-05-06 Thread Noel Grandin
On 2013-05-06 13:40, Michael Stahl wrote: aha... the requested interface is XMaterialHolder... that is strong hint that some really ugly hack is taking place... i would not be surprised if the other end of that hack was in the Sun internal repository (StarOffice only) and this "feature" is real

Re: New Tags on BSA

2013-05-06 Thread Noel Grandin
this has some nice XSLT explanations http://www.w3schools.com/xsl/ with explanations and an on-line executor here http://www.w3schools.com/xsl/xsl_examples.asp The hardest part is normally working out the XPath expressions to use in the match values. _

can we get more parallelism in make check?

2013-05-07 Thread Noel Grandin
m waiting, which only makes the waiting worse :-) We did try speeding this up last year sometime, but the mix of dmake and gmake made it quite difficult. I'm hoping that with the New Improved makefiles this is less of an issue. Thanks, Noel Grandin. Discl

Re: can we get more parallelism in make check?

2013-05-07 Thread Noel Grandin
On 2013-05-07 10:59, Michael Stahl wrote: On 07/05/13 10:52, Noel Grandin wrote: Hi Any build experts feel like speeding up "make check". I will definitely owe you a beverage of your choice :-) The "subsequentcheck" part of "make check" spends most of it'

[Libreoffice-commits] core.git: 4 commits - offapi/com offapi/UnoApi_offapi.mk package/inc vcl/source

2013-05-07 Thread Noel Grandin
insertions(+), 118 deletions(-) New commits: commit ae0cb395d8e2b887054e5cfd4fc5525a94fab240 Author: Noel Grandin Date: Tue May 7 08:07:01 2013 +0200 fdo#46808, Convert ZipFileAccess service to new style Dropped XComponent from merged interface because noone is using it

[Libreoffice-commits] core.git: 2 commits - framework/inc sc/source

2013-05-13 Thread Noel Grandin
framework/inc/services/pathsettings.hxx |2 +- sc/source/ui/unoobj/appluno.cxx |4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) New commits: commit e2fcf87e7f981ef4138054a59e10f87e925e1cae Author: Noel Grandin Date: Mon May 13 10:49:08 2013 +0200 fix: left out

Re: new-style service and create with arguments

2013-05-13 Thread Noel Grandin
Hi Ooops, that would be my fault. I'll push a fix shortly. The IDL will look something like: service ConnectionTools : XConnectionTools { createWithConnection([in] com::sun::star::sdbc::XConnection Connection); }; Regards, Noel. On 2013-05-14 08:21, Lionel Elie Mamane wrote: Hi, With re

[Libreoffice-commits] core.git: dbaccess/source offapi/com

2013-05-14 Thread Noel Grandin
dbaccess/source/core/dataaccess/connection.cxx|7 +-- offapi/com/sun/star/sdb/tools/ConnectionTools.idl |9 - 2 files changed, 9 insertions(+), 7 deletions(-) New commits: commit 3abe867790a1a896e30e9887546aef8b9e651b53 Author: Noel Grandin Date: Tue May 14 09:12:06

Re: new-style service and create with arguments

2013-05-14 Thread Noel Grandin
Fixed in commit 3abe867790a1a896e30e9887546aef8b9e651b53 On 2013-05-14 08:37, Noel Grandin wrote: Hi Ooops, that would be my fault. I'll push a fix shortly. The IDL will look something like: service ConnectionTools : XConnectionTools { createWithConnection([in] com::sun::star:

[Libreoffice-commits] core.git: 3 commits - basic/source eventattacher/source include/linguistic lingucomponent/source linguistic/source linguistic/workben offapi/com pyuno/source udkapi/com udkapi/ty

2013-05-14 Thread Noel Grandin
/InvocationAdapterFactory.idl| 18 -- udkapi/type_reference/udkapi.rdb |binary 17 files changed, 97 insertions(+), 128 deletions(-) New commits: commit 708cab47c4457637f87815750a026168b3f10c84 Author: Noel Grandin Date: Tue May 14 13:10:53 2013 +0200

[Libreoffice-commits] core.git: 6 commits - basctl/source basic/source cui/source offapi/com offapi/UnoApi_offapi.mk sw/inc sw/source xmloff/source

2013-05-14 Thread Noel Grandin
| 24 ++-- 26 files changed, 131 insertions(+), 161 deletions(-) New commits: commit 3e563377333881efa60aaa93d2feeaf647cf19ff Author: Noel Grandin Date: Tue May 14 15:54:42 2013 +0200 fdo#46808, More LinguProperties fun Change-Id: Ia3173e980370f532fcabc8f1c7a913e5d66d6d8a

Re: SolarMutex: please educate me

2013-05-15 Thread Noel Grandin
On 2013-05-15 12:09, Caolán McNamara wrote: Yeah, and I'm continually dithering as to where to put one for the various writer mail merge wizard "oh my god its not locked" asserts. Instead of trying to get locking correct everywhere, perhaps we should be doing a Java-Swing style thing where we

Re: SolarMutex: please educate me

2013-05-15 Thread Noel Grandin
On 2013-05-15 13:10, Stephan Bergmann wrote: Sure, as I already wrote: "all GUI frameworks have settled on 'confine relevant code to run in a single event-loop thread' instead" for a reason. However, doing that change is an endeavor far from trivial... Perhaps one approach would be (a) d

Re: SolarMutex: why & a sketch plan ...

2013-05-16 Thread Noel Grandin
On 2013-05-16 11:21, Michael Meeks wrote: Right. So - here are the rules that I'm sticking to: + splitting: I/O -> unzip -> XML parse + namespage -> fast-parser from - interpreting that XML in the core. Personally I think that using a pull-style un

[Libreoffice-commits] core.git: avmedia/source compilerplugins/clang filter/source oox/source reportdesign/source sd/source svtools/source svx/source sw/source vcl/source xmloff/source

2017-09-05 Thread Noel Grandin
/source/window/scrwnd.cxx| 16 - xmloff/source/draw/shapeexport.cxx | 16 - 27 files changed, 433 insertions(+), 434 deletions(-) New commits: commit dccd1633a111ba124f9868a4a51579c95200d745 Author: Noel Grandin Date: Tue Sep 5 08:29:58 2017 +0200

[Libreoffice-commits] core.git: include/o3tl include/sfx2 o3tl/qa sd/source sfx2/source

2017-09-06 Thread Noel Grandin
(+), 28 deletions(-) New commits: commit 4d830ab33c75dc07d77796d422d909c235c2c127 Author: Noel Grandin Date: Wed Sep 6 10:25:54 2017 +0200 const correctness in o3tl::array_view Change-Id: I44c1ace97ae44069c5a0c6a247aa8a0b49896ad3 Reviewed-on: https://gerrit.libreoffice.org/41985

[Libreoffice-commits] core.git: sfx2/Library_sfx.mk sfx2/source

2017-09-06 Thread Noel Grandin
sfx2/Library_sfx.mk |1 - sfx2/source/bastyp/dummytypes.cxx | 16 2 files changed, 17 deletions(-) New commits: commit a71b454eabb18c3aeb672e0b57650aadbb7c40a0 Author: Noel Grandin Date: Wed Sep 6 16:49:51 2017 +0200 remove unused dummytypes.cxx

[Libreoffice-commits] core.git: compilerplugins/clang cui/source editeng/source include/editeng include/svl include/vcl sd/source svl/source toolkit/source vcl/source

2017-09-08 Thread Noel Grandin
deletions(-) New commits: commit 2e0a25ce2b87d3a4bbf944025fc3720933fb391d Author: Noel Grandin Date: Fri Sep 8 08:31:42 2017 +0200 loplugin:constantparam Change-Id: Ic87f0cc863490858b7cc7e74a7f90ec31992dd53 Reviewed-on: https://gerrit.libreoffice.org/42089 Tested-by: Jenkins

[Libreoffice-commits] core.git: compilerplugins/clang include/sfx2 sfx2/source

2017-09-08 Thread Noel Grandin
/dialog/dinfdlg.cxx |7 - 5 files changed, 24 insertions(+), 224 deletions(-) New commits: commit a84026031db35e9388c76c3b365a23e6bf1ed3e6 Author: Noel Grandin Date: Fri Sep 8 08:47:32 2017 +0200 loplugin:unusedfields Change-Id

[Libreoffice-commits] core.git: include/sfx2

2017-09-08 Thread Noel Grandin
include/sfx2/dinfdlg.hxx |2 -- 1 file changed, 2 deletions(-) New commits: commit 7b9cb381702a408c3cf54bfaa1f8a7b2c30882a7 Author: Noel Grandin Date: Fri Sep 8 08:58:55 2017 +0200 loplugin:unusedmethods Change-Id: Idba437cf35606e782e94c020c8ac3bb265703d00 Reviewed-on

[Libreoffice-commits] core.git: sc/source

2017-09-08 Thread Noel Grandin
sc/source/ui/dbgui/pfiltdlg.cxx | 18 +++--- sc/source/ui/inc/pfiltdlg.hxx |5 - 2 files changed, 11 insertions(+), 12 deletions(-) New commits: commit f120e21012d1fcdaf9862d3818a43f37d3d0fb0b Author: Noel Grandin Date: Fri Sep 8 10:54:30 2017 +0200 convert

[Libreoffice-commits] core.git: include/svx svx/source

2017-09-08 Thread Noel Grandin
: commit 030273e2e28ef9c4d2118ca3851c64498dfe000a Author: Noel Grandin Date: Fri Sep 8 13:30:05 2017 +0200 clean up SdrDragStat - some light formatting in the header file - change aPnts from std::vector to std::vector, no point in dynamically allocating a small value class

[Libreoffice-commits] core.git: extensions/source sd/source svx/source

2017-09-08 Thread Noel Grandin
tps://gerrit.libreoffice.org/42103 Tested-by: Jenkins Reviewed-by: Noel Grandin diff --git a/extensions/source/scanner/sane.cxx b/extensions/source/scanner/sane.cxx index db8ef50d186c..80b6bb30f5c9 100644 --- a/extensions/source/scanner/sane.cxx +++ b/extensions/source/scanner/sane.cxx @@ -623,7 +62

<    1   2   3   4   5   6   7   8   9   10   >