summaryrefslogtreecommitdiff
path: root/dbaccess
AgeCommit message (Collapse)AuthorFilesLines
2012-10-30Properly spell out "dbaccess"Stephan Bergmann2-9/+9
...so that these tests also work from a toplevel make. Change-Id: I82899ce6f1760b34b365ee5cfacbadb1f40de766
2012-10-29Use SvTreeListEntries to store child entries.Kohei Yoshida5-18/+18
This replaces SvTreeEntryList. The only thing to be wary of is that now we use ptr_vector to store child entries, which changes the scheme on the life cycle management of tree entries. Change-Id: I92b6e41ea500bc9b9227259c010887b798194909
2012-10-28fix some VS 2010 specific issuesDavid Ostrovsky4-5/+10
Change-Id: Iae27a96c1e2ed72d2744fcbe100d6ada7dc41c82 Reviewed-on: https://gerrit.libreoffice.org/914 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2012-10-25XubString->OUStringCaolán McNamara6-7/+7
Change-Id: I5835696a3246b4d8f401a1617d2b53ec8c7c5626
2012-10-24fdo#46808, use service constructor for frame::GlobalEventBroadcasterNoel Grandin1-3/+3
Add document::XEventBroadcaster interface to XGlobalEventBroadcaster, because a client uses it, and the service always implements it. This is safe to do because we haven't released an LO version with XGlobalEventBroadcaster in it yet.
2012-10-23fdo#46808, use service constructor for frame::ModuleManagerNoel Grandin2-2/+2
Change-Id: Iae2bd22a22213274d4a7697345b879f6573a30f0
2012-10-23fdo#46808, Adapt ui::dialogs::FolderPicker UNO service to new styleNoel Grandin2-9/+2
Create a merged XFolderPicker2 interface for this service to implement. Which is backwards-compatible, but does not require creating a new service. Change-Id: I4a2c2a8d491a8d5633c19ddcea547f0efe75b91d
2012-10-23Make SvTreeEntryList private to svtools.Kohei Yoshida2-22/+24
Change-Id: I283d897cd5a7c15b5b60e99c90c04b696d20c2a3
2012-10-22fdo#46808, Adapt xml::sax::XWriter UNO service to new styleNoel Grandin2-5/+6
Create a merged XWriter interface for the service. The xml.sax.Writer service already existed, it just did not have an IDL file. Change-Id: I4e6d3f3c68f9282a55fc7aa19778f97632fd8ad5
2012-10-19Merge SvLBoxTreeList and SvTreeList.Kohei Yoshida8-12/+12
Change-Id: I318ff6f1009b1aaa7d0bd3abb250f92fb51a21cd
2012-10-19Merge SvListEntry and SvLBoxEntry into SvTreeListEntry.Kohei Yoshida40-393/+393
Change-Id: I89cfc8c1288c00674fe64e791c149743d377d5ee
2012-10-19Remove direct reference to SvListEntry outside svtools.Kohei Yoshida2-6/+8
Not all instances are removed, however... Some are used in virtual method signatures, which will take a little more effort to fix. Change-Id: Ib30e6bbef5f27f970e6e19291501f7a09d94e0ab
2012-10-19Remove direct reference to SvTreeList outside svtools.Kohei Yoshida1-3/+3
Change-Id: Ia8055a1bf21531aeb808d797b2a73a08a897e79c
2012-10-12mark lcl_ functions static or rename them if they are not local at allLuboš Luňák1-1/+1
http://lists.freedesktop.org/archives/libreoffice/2012-October/039639.html Change-Id: I231f0b367bf0b513c6c1ce4c4cfdb7c3dc8660d5
2012-10-11Prevent infinite recursion during make check.Kohei Yoshida1-1/+1
Change-Id: Ib807c54195c867d5f54e48ae2a1fe7694dfa4882
2012-10-11Merged SvTreeListBox and SvLBox.Kohei Yoshida15-18/+17
There is no reason to keep SvLBox separate. Change-Id: I0b34aa8f8ca539d4f4f0f9cea9fa9b8faec241e8
2012-10-10add missing dep on svl/solar.hrcDavid Tardon1-1/+2
Change-Id: Ie3087a00e4aa537763fe36b1b96d644606e547b8
2012-10-07Handle lack of module loading/unloading API when DISABLE_DYNLOADINGTor Lillqvist2-1/+5
There are basicically two classes of cases: 1) Where the code is for obscure historical reasons or what I see as misguided "optimization" split into a more libraries than necessary, and these then are loaded at run-time. Instead, just use direct linking. 2) Where dynamic loading is part of the functionality offered to some upper (scripting etc) layer, or where some system-specific non-LO library is loaded dynamically, as it is not necessarily present on end-user machines. Can't have such in the DISABLE_DYNLOADING case. Change-Id: I9eceac5fb635245def2f4f3320821447bb7cd8c0
2012-10-04fdo#46808, Adapt xml::sax::XParser UNO service to new styleNoel Grandin2-16/+12
The xml.sax.Parser service already existed, it just did not have a new-style service to create it. Change-Id: I6f145a7504ff9e149c802f723991954a2801cbc9
2012-10-04Fixes/improvements on previous commitStephan Bergmann15-44/+32
* UUIInteractionHandler still needs to implement XInitialization. * Moved ambiguating InteractionHandler typedef out of the way. * Removed InteractionHandler.createDefault, as it was originally stated that "it is strongly recommended that [the "Parent"] property is supplied." * Added back documentation about Parent and Context. * Simplified some call-sites to directly use XInteractionHandler2. Change-Id: I1029b8f3cf079171c75920cafaaa44b5bbada883
2012-10-04fdo#46808, Adapt task::InteractionHandler UNO service to new styleNoel Grandin21-80/+73
Since we don't need to expose XInitialisation, we can make the new-style service implement XInteractionHandler2. Change-Id: Ib27beed1c12df17592c6472d6f58c233d2c41558
2012-10-03probable attempts to find the parent dialogCaolán McNamara2-2/+2
Change-Id: I033f3cd9b42df21c9b63dc03e8e0136971d5dc24
2012-10-01missing system headerNorbert Thiebaud3-2/+3
Change-Id: Ieb97d877238941d06aab1aa2ef67186bbc3a995a
2012-10-01missing system headerNorbert Thiebaud1-1/+1
Change-Id: Icba29c0ebfd30af36b18eb59a23643287985f8c8
2012-10-01Replace usage of rtl_*Memory with equivalent from string.hArnaud Versini10-12/+15
Change-Id: I50ffc10f007f03c3252ef0196b59b881429cc159 Reviewed-on: https://gerrit.libreoffice.org/734 Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com> Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
2012-09-29re-base on ALv2 code.Michael Meeks8-162/+105
2012-09-29fs34b: #i117552# check if query before call getByName in every caseOcke Janssen [oj]1-3/+4
2012-09-29fs34b: after the test, close all documents opened during the testFrank Schoenheit [fs]1-2/+7
2012-09-28gbuild: invert handling of standard system libraries:Michael Stahl7-14/+0
Always link in gb_STDLIBS, except when the library explicitly opts out with gb_LinkTarget_disable_standard_system_libs. Change-Id: I489a99114fbfa46d0421a27cf6c7b899dc268a4a
2012-09-28gbuild: gb_Library_PLAINLIBS_NONE cleanup for WNT:Michael Stahl1-1/+1
add a new gb_LinkTarget_use_system_win32_libs to abstract different linker options on MSVC and GCC. Change-Id: Ic9bf2545f59bf7871e6fc06b290c486ddfbec03d
2012-09-28gbuild: replace direct gb_STDLIBS use with ...Michael Stahl7-7/+14
... new gb_LinkTarget_add_standard_system_libs Change-Id: Ib2bc843098db3d8c6822b45a3d21724e67f57d69
2012-09-28gbuild: split uwinapi out of gb_STDLIBSMichael Stahl7-0/+7
Change-Id: I53316e0b9369d806197bccb42cf22d3497af43e7
2012-09-28having two SetPosSizePixel is a blasted nuisanceCaolán McNamara3-6/+3
Lets rename the multiargument SetPosSizePixel to setPosSizePixel drop the various using Window::SetPosSizePixel and work towards de-virtualizing SetPosSizePixel/SetPosPixel and SetSizePixel and doing the work in a virtual setPosSizePixel Change-Id: I7057654168001b67becee1791e97f9e9dc01f7b8
2012-09-27Improvements on previous commitStephan Bergmann14-30/+22
* Made XDatabaseContext inherit XDatabaseRegistrations non-optionally, adapted call-sites to just use XDatabaseContext w/o querying. (The previous commit had inadvertantly effectively removed support for XDatabaseRegistrations from the ODatabaseContext implementation, as an optional UNO super-interface does not lead to a super-class in the corresponding C++ class hierarchy, but making the super-interface non-optional fixes that anyway.) * Adapted some more call-sites to just use XDatabaseContext w/o querying. * Added @since tag. * Replaced new uses of comphelper::ComponentContext::getUNOContext with comphelper::getComponentContext (see 03a9f139bd9ea1a4f9096fc982e6b326def58532 "ComponentContext::getUnoContext -> getComponentContext simplification;" I intend to get rid of comphelper/componentcontext.hxx much sooner than of comphelper/processfactory.hxx). Change-Id: I68d09f2dbe651629f79ed21cd40cdb6d6b32c624
2012-09-27fdo#46808, Adapt sdb::DatabaseContext UNO service to new styleNoel Grandin16-47/+52
Create a merged XDatabaseContext interface for this service to implement. Which is backwards-compatible, but does not require creating a new service. Quite a few IDL files had to be marked as published for this to work. Change-Id: Ie9a0da88d8c33cc83fc9d2334ff83ab2744c222f
2012-09-26fdo#51304: Remove the author of some java source filesMarcos Paulo de Souza2-8/+0
This patch remove some '@author' for Java souce files, and removes some commented code founded when removing the '@author'. Change-Id: I7bff1507212e967069f3d18e6c1040f69501694a Signed-off-by: Marcos Paulo de Souza <marcos.souza.org@gmail.com>
2012-09-25replace remaining InterlockedCount() with inlined versionNorbert Thiebaud27-60/+60
Change-Id: Ifcfa48fc87f905a91470a5b0fd597b02f220784c Reviewed-on: https://gerrit.libreoffice.org/671 Tested-by: Norbert Thiebaud <nthiebaud@gmail.com> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
2012-09-19ComponentContext::getUnoContext -> getComponentContext simplificationStephan Bergmann10-18/+21
...and some further clean-up. Change-Id: If5dce53e382b56390c502d0d0d93fc06cbfe33ea
2012-09-17fdo#46808, Adapt i18n::LocaleData UNO service to new styleNoel Grandin1-3/+2
The implementation of the LocaleData implements the optional XLocaleData4, so rather than creating a new interface for the new-style service, we simply make the service implement XLocaleData4, which in turn implements XLocaleData3, XLocaleData2, XLocaleData. Change-Id: I3e9a48b031be6b2aa5e04b376b3940b942add85a
2012-09-14Improvement on previous commit, UCB clean upStephan Bergmann6-20/+20
* As UCB is only ever initialized with "Local"/"Office", remove this configuration vector completely. The "create" ctor creates an instance internally initialized with those "Local"/"Office" keys. Special (test) code can still instantiate an uninitialized one via plain createInstance. And for backwards compatilibity process startup still ensures to create an initialized instance early, in case there is still code out there (in extensions) that later calls plain createInstance and expects to get the already-initialized (single) instance. * XInitialization is an "implementation detail" of the UniversalContentBroker service, do not expose in XUniversalContentBroker. * ucbhelper/configurationkeys.hxx is no longer needed and is removed. * ucbhelper/contentbroker.hxx is an empty wrapper and is removed; however, that requires ucbhelper::Content constructors to take explicit XComponentContext arguments now. * The only remaining code in ucbhelper/source/client/contentbroker.cxx is Android-only InitUCBHelper. Is that relevant still? Change-Id: I3f7bddd0456bffbcd13590c66d9011915c760f28
2012-09-13fdo#37529 clear DataColumns read-only information when we clear DataColumnsLionel Elie Mamane1-0/+3
Change-Id: I6f3b4f1646df1244d97ae98f56ba054bc26e3314
2012-09-06offapi: move css.ui.UICommandDescription to css.frame.UICommandDescription:Michael Stahl1-2/+2
The service implementation used "com.sun.star.frame.UICommandDescription" since forever, so the IDL file was essentially wrong documentation. But since 7a464263cc5c2ca2b7128734ff4860e02d662818 converted the service to new-style, it cannot be instantated any more and e.g. clicking on Tools->Customize crashes. (Adapting the implementation instead would be an incompatible change.) Change-Id: I564bddaf3836827f5b72360a2bde19d6158b7ba5
2012-09-05remove some obsolete boilerplate Test.javaMichael Stahl1-55/+0
Change-Id: I694cff583fddb713a59e5d6b8e15ea06a2be63b6
2012-09-05Java cleanup, make package name match folder nameNoel Grandin1-1/+1
Although, as far as a I can tell, this file is completely unused. Change-Id: Ib680f53d239f8de7edcb9b98f7c19eca3d146caa
2012-09-05Some clean up of previous commitStephan Bergmann2-3/+3
Change-Id: I14097acf09e9663af7d7abc5f0c9d481880ecc51
2012-09-05fdo#46808, Adapt frame::ModuleManager UNO service to new styleNoel Grandin2-4/+6
Create a merged XModuleManager2 interface for this service to implement. Which is backwards-compatible, but does not require creating a new service. Explicitly document the XNameReplace interface in the IDL, which is already implemented by the service, since there is code currently using it. Change-Id: Ib46349174b1ce495c240031e93c9427fc33d9853
2012-09-03fdo#46808, Adapt util::NumberFormatter UNO service to new styleNoel Grandin6-20/+25
Create a merged XNumberFormatter2 interface for this service to implement. Which is backwards-compatible, but does not require creating a new service. Change-Id: I57f35cde0a9dbbe91c1d2c3d068cb3a97c7245e3
2012-09-03fdo#46808, Adapt UICommandDescription UNO service to new styleNoel Grandin1-8/+6
Change-Id: Ibca112904f137ff981ae9be3e5bd56aa11aec352
2012-09-03fdo#46808, Adapt ModuleUIConfigurationManagerSupplier UNO service to new styleNoel Grandin3-14/+11
Change-Id: I58b17349474b974edd24aa17ec08ffa848a92ae9
2012-08-31fdo#53557: use metadata's idea of column count to allocate a rowLionel Elie Mamane1-2/+3
m_pColumnNames contains only the columns that come straight from a table, not calculated columns Change-Id: I2706790e8c1447d1c4e144bbdef773deeca3e2e8