summaryrefslogtreecommitdiffstats
path: root/extensions
Commit message (Collapse)AuthorAgeFilesLines
* fdo#43157 - Clean up OSL_ASSERT, DBG_ASSERTRadu Ioan2013-02-191-5/+4
| | | | | | | | | | - replaced osl_trace with sal_info - added new log areas to log-area.dox Change-Id: Ib47c4b4c9604bca1f8a635dd01bb89702b47b591 Reviewed-on: https://gerrit.libreoffice.org/2010 Reviewed-by: Thorsten Behrens <tbehrens@suse.com> Tested-by: Thorsten Behrens <tbehrens@suse.com>
* Guard against unsigned ickyness for files less than 1024 bytesTor Lillqvist2013-02-191-1/+7
| | | | Change-Id: I360fb8db35b36194c4f7ae08c93126e2a7bda853
* Fix scan for central directory end signature in ODF in Spotlight importerTor Lillqvist2013-02-191-5/+16
| | | | | | | | Once this was fixed it seems to work nicely. Add keywords in File:Properties and they show up in Finder's Properties, and Spotlight finds text from the document contents. Change-Id: I203576a5a7e53ca3485b0a82f0c6d06122f361d1
* Tweak properties orderingLionel Elie Mamane2013-02-191-1/+1
| | | | | | | | That's so that heavily related ones stay together: PRINTREPEATEDVALUES PRINTWHENGROUPCHANGE Change-Id: I90513da4ae9ce0798dec91e5057b112735c1cdc2
* property browser: respect property orderingLionel Elie Mamane2013-02-192-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | Consider the following situation: Property Name Property Order Index ------------- -------------------- propA4 4 propB5 5 propB4 4 And the loop goes over these properties in this order. propB4 should be before propB5, but with the old code, propB4 would be pushed after propB5: it asks for position 4, but as positions 4 and 5 are already occupied, it gets pushed to position 6. Remaining difficulty: properties from different property index ordering series will be interleaved. This should be solved at object model level; ideally property order index should be unique, at least within an object. Change-Id: Ie235a4b22155df97df139f1dc354247845626620
* janitorial: indentationLionel Elie Mamane2013-02-191-1/+1
| | | | Change-Id: Id21de98433f52c8659a3432c1c47354e18166f06
* Make sure MetadataImporterPluginFactory has external linkageTor Lillqvist2013-02-181-0/+1
| | | | | | | | Otherwise, in a LO built with hidden visibility (as gcc terminology, not ELF, Mac OS X does not use ELF), Spotlight won't be able to use our importer. Change-Id: Ie19082f9f14e4cc75ae6f7583031b929b7b75330
* avoid space in the version of the update information providerPetr Mladek2013-02-181-1/+2
| | | | | | LO-4.0.0.3 sends "4.0 .0.3" to the server. Change-Id: I2cda062778ac3632f89eb5c0d1cc85e57d8d1870
* Fix conversionJulien Nabet2013-02-151-2/+2
| | | | | | | to avoid error messages like: error: could not convert ‘(const char*)"LocalFile"’ from ‘const char*’ to ‘const rtl::OUString’ Change-Id: I8b55049bd29c63b837f80b1562b9e8cd8324c603
* multiple unsequenced modifications to 'nPos' [-Werror,-Wunsequenced]Stephan Bergmann2013-02-141-9/+4
| | | | | | | | | | | ...solved by removing the nPos member and instead calculating the index on the fly. The difference is that old indices were before calling std::sort in OPropertyInfoService::getPropertyInfo() while new ones are after, but that should probably be OK per the documentation of com.sun.star.inspection.XObjectInspectionModel.getPropertyOrderIndex (which appears to be the only client of that functionality). Change-Id: Id346bb219acbdad88ec43cf46feca8c37f2c7cf4
* Fix compilation error with older GCCTor Lillqvist2013-02-143-3/+3
| | | | | | | | | The GCC 4.0 we still use for the "official" Mac OS X build says: "error: conversion from ‘const char*’ to non-scalar type ‘rtl::OUString’ requested." Sigh, I guess there might be lots more of these elsewhere in the code. Change-Id: Ifad5722bbadd465ebfca1ac3f0b55f07a6895e12
* Removed several useless macros: UNISTRING, USTR, USTR_ASCII, ASCII_STR, ↵Jean-Noël Rouvignac2013-02-1410-287/+267
| | | | | | | | | ASCII_STRING, CONST_ASCII, ASCSTR, ASCII, DEFINE_CONST_UNICODE, DEFINE_CONST_OUSTRING Change-Id: I96d690bf9f9b319e9eeafcf218ec5ce87f21215f Reviewed-on: https://gerrit.libreoffice.org/1954 Reviewed-by: Tor Lillqvist <tml@iki.fi> Tested-by: Tor Lillqvist <tml@iki.fi>
* Some cppcheck cleaningJulien Nabet2013-02-131-3/+0
| | | | Change-Id: I099171d85a51095f0ff6d592c1260d931f9769b2
* Return the real result of the testJulien Nabet2013-02-131-3/+3
| | | | Change-Id: I05d4b62a32a44a7d174d7fa19f7814d45dab22b2
* Renamed hard-to-remember 8-char headers in editeng.Kohei Yoshida2013-02-121-3/+3
| | | | Change-Id: If255802082890e1b1b4c5197a791fa79a011773e
* fdo#46808, convert form::runtime::FormController to new-styleNoel Grandin2013-02-112-6/+6
| | | | Change-Id: Ied761cbb8e23d65596a5fdc4650e1cd2c95e9245
* fdo#46808, some simple conversions to XComponentContextNoel Grandin2013-02-114-16/+9
| | | | Change-Id: I68e90fde0645d4d1d518d22620d4c28ae91139d4
* fdo#46808, convert xml::xpath::XPathAPI to new-style serviceNoel Grandin2013-02-112-14/+4
| | | | Change-Id: I54bb0eb08d687e7d54c42601c826c580a7a17ebb
* replace (Xub)String with OUString in vclChr. Rossmanith2013-02-061-4/+4
| | | | | | | Change-Id: I0a44bab196ae239d3bdea75fd2b657bdfa4ecf31 Reviewed-on: https://gerrit.libreoffice.org/2011 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
* remove obsolete hidother.src filesAndras Timar2013-02-061-52/+0
| | | | Change-Id: Ieb30afd81d16d184e0276ce7699b848f26a00013
* cppCheck: Variable is reassigned a value before the old one has been used.jailletc362013-02-061-2/+2
| | | | | | | | Change-Id: I42cfb06dd8b6b0ff7d4fec6e3b296fa61302c1c0 Signed-off-by: jailletc36 <christophe.jaillet@wanadoo.fr> Reviewed-on: https://gerrit.libreoffice.org/2014 Tested-by: Tomáš Chvátal <tchvatal@suse.cz> Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
* fdo#57417: remove LDAP choice from non windows platformDavid Ostrovsky2013-02-061-15/+10
| | | | | | | Change-Id: I0557a7c9cf0d18fbe5620ef8869bb83d0a6a7904 Reviewed-on: https://gerrit.libreoffice.org/1983 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* ... and ssl3 tooDavid Tardon2013-02-041-0/+1
| | | | Change-Id: I16263e87855cc63a964d4f6780715739b6027bda
* must link with plc4 tooDavid Tardon2013-02-041-0/+1
| | | | Change-Id: I29deb025e3869dc495a84d6559708f5308a83ff1
* fdo#60115 build of ldapbe2 breaks if nss is in nonstd. locationDavid Tardon2013-02-041-10/+3
| | | | Change-Id: I32a0495edffbe13734457c230a3a1735aa254198
* Some cppcheck cleaningJulien Nabet2013-01-311-2/+1
| | | | Change-Id: I57baea223b0f0a78346d9872665ab85c00c8fc51
* Some cppcheck cleaningJulien Nabet2013-01-311-2/+1
| | | | Change-Id: I39e1dd985af6029e1fd688ff47350734c85928a6
* fix string literals concatenationLuboš Luňák2013-01-303-15/+15
| | | | Change-Id: I2dc86b3c24f22f4e52e25152a5741ecefad9c7d3
* extensions: fix wrongly converted OUString literalsMichael Stahl2013-01-301-3/+3
| | | | Change-Id: I23594fe715fbd8d34ea5d938bde963a17dffb296
* Removed several useless macros: A2OU, A2S, C2U, C2S, OUSTR, OUSTRINGJean-Noël Rouvignac2013-01-306-261/+256
| | | | | | | Change-Id: Ie859cb2dfdc7103c379fce56be88eef8fe390afd Reviewed-on: https://gerrit.libreoffice.org/1924 Tested-by: Luboš Luňák <l.lunak@suse.cz> Reviewed-by: Luboš Luňák <l.lunak@suse.cz>
* Some cppcheck cleaningJulien Nabet2013-01-271-2/+2
| | | | Change-Id: I7217ab7500de5d8220b85e56aceb6e843bd0769f
* fix omissions in a53586f4efe26b8875107d04001f4ecec760c343Michael Stahl2013-01-272-1/+3
| | | | Change-Id: I65e3fc3e34416b74365490a1cd7cba178ef7eb55
* gbuild: fix silly "expandtabs" in makefile VIM modelinesMichael Stahl2013-01-2633-33/+33
| | | | Change-Id: I54d8923ad315e8041fd3904da3a29f1a7a8c8b16
* gbuild: do not copy boost headers aroundMichael Stahl2013-01-2614-3/+33
| | | | | | | | | - do not use gb_UnpackedTarball_copy_header_files for boost - adapt the optimization in concat-deps.c for new path - use boost_headers in all LinkTargets that require it - add explicit include paths to mysqlc, mysqlcppconn, libvisio, liborcus Change-Id: I0c43e73ed43cc9d2e6bce8faf55e992d655a0bb9
* rename SfxSingleTabDialog to SfxNoLayoutSingleTabDialogCaolán McNamara2013-01-241-1/+1
| | | | Change-Id: I4922b719bf819879909e9949bf7946f20914d1e5
* Changed SetText() / GetText() to take/return OUStringChr. Rossmanith2013-01-216-14/+14
| | | | | | | | | replaced lots of Len() with isEmpty() Change-Id: I6b82d48245ee2a0782e05a326f7934e9357227d0 Reviewed-on: https://gerrit.libreoffice.org/1795 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
* fdo#46808, Adapt ui::AddressBookSourceDialog UNO service to new styleNoel Grandin2013-01-153-32/+15
| | | | | | The service already existed, it just did not have an IDL file. Change-Id: I34f9c29b7d5c91735cf1763b74d02516466bc78c
* QUARTZ is equivalent to MACOSXTor Lillqvist2013-01-113-10/+10
| | | | | | | So just check MACOSX in the sources, and don't pass any -DQUARTZ to compilations. Change-Id: Ia1de6024810f81f1eea01b8eb0b885d9d1ee8e20
* extensions: kill no longer needed C2U and C2SMiklos Vajna2013-01-0910-207/+185
|
* fdo#46808, use new method OConfigurationTreeRoot::createWithComponentContextNoel Grandin2013-01-094-22/+26
| | | | | | | .. everywhere that was using createWithServiceFactory, and delete the old method. Change-Id: I02cb2bfbcc2390494383579d2f14caa4fc5b8014
* fdo#46808, Adapt sdb::OrderDialog UNO service to new styleNoel Grandin2013-01-091-6/+2
| | | | | | The service already existed, it just did not have an IDL file. Change-Id: If24e9d6069bf7454bb0add3be8c4bc5916cc4d1f
* gbuild: replace all use of PRODUCT with ENABLE_DBGUTILMichael Stahl2013-01-031-1/+1
| | | | | | | Also fix the wrong check in cppunit/ExternalProject_cppunit.mk which caused cppunit to always be built without -D_GLIBCXX_DEBUG. Change-Id: Ia247dcd84e2c6fa0e9384fd27643537984d980b5
* More MSC -> _MSC_VER, sorryTor Lillqvist2012-12-271-2/+2
| | | | Change-Id: Ie5070d514c1f4dd9f9708253eb44134baec6524a
* Sigh, my git grep regexps missed some casesTor Lillqvist2012-12-271-1/+1
| | | | Change-Id: I085f14f40fb83cba171b35b14cf7c0d99091fc00
* Get rid of (most uses of) GUITor Lillqvist2012-12-257-9/+9
| | | | | | | | | | GUI only takes values UNX or WNT, so it is fairly pointless. One can check whether OS is WNT or not instead. Change-Id: I78ae32c03536a496a563e5deeb0fca78aebf9c34 Reviewed-on: https://gerrit.libreoffice.org/1304 Reviewed-by: Peter Foley <pefoley2@verizon.net> Tested-by: Peter Foley <pefoley2@verizon.net>
* use external for sane headersDavid Tardon2012-12-211-3/+4
| | | | Change-Id: I6fc53e185254a37df7d03ab6f91210b8e397db2e
* Fixes for my UNO commitsNoel Grandin2012-12-212-2/+2
| | | | | | | - fix missing SAL_CALL annotations - fix missing namespace usage Change-Id: I8fa462bcbeaad63ad6a73cba68236b74bbe97e70
* fdo#46808, Convert frame::Desktop to new style service.Noel Grandin2012-12-2111-109/+60
| | | | | | | | | | | | | | | | | | | | | | | | | I had to drop XEventBroadcaster from the merged interface because it introduced method name conflicts (addEventListener). Shouldn't be an issue since it was scheduled to be dropped anyhow, and the service implementation still implements it, so existing clients will be fine. I dropped the interface XPropertySet from the combined IDL because nobody seems to be using it, and it's primary purpose appears to be to set weird flags. I dropped the optional interfaces XStatusIndicatorFactory XDispatchInformationProvider from the combined IDL because the service does not implement them, and nobody seems to be using them. I suspect they were mistakenly copied from XFrame. I also did not convert the Title, UserDefinedAttributes and LayoutManager properties to attributes, again because no-one is using them. Change-Id: I678a00006ed2cca2d6c37c4e39465811442c33af
* fdo#46808, Adapt sdb::FilterDialog UNO service to new styleNoel Grandin2012-12-212-50/+23
| | | | | | The service already existed, it just did not have an IDL file. Change-Id: I2267bec182ad1cc8f6a37939861a7368a17fcef2
* extensions: oleautobridge: avoid boatloads of warning C4005Michael Stahl2012-12-208-93/+78
| | | | | | | | | ... "macro redefinition" mostly from tools/postsys.h by wrapping all inclusion of namespace polluting native windows headers in a single new winwrap.hxx that is then included by the other headers; also cleans up some inconsistent definitions of _WIN32_WINNT Change-Id: Ibfe82a531615d559db2e61e4cdf399e68d0b3223