summaryrefslogtreecommitdiffstats
path: root/comphelper
Commit message (Collapse)AuthorAgeFilesLines
* fixincludeguards.sh: comphelperThomas Arnhold2014-04-196-15/+15
|
* Typo: s/cant/can't/Tor Lillqvist2014-04-181-1/+1
| | | | Change-Id: Id76b4ea569246c4b96da48dbc8d5a557367e0cca
* cppu::OMultiTypeInterfaceContainerHelperVar hashImpl param is unusedStephan Bergmann2014-04-151-1/+1
| | | | | | | | | ...since f059134fab0f91b7a15594ad06536a13fbfae034 "INTEGRATION: CWS cppuhelpshrink: #i72766# save memory in cppuhelper, using a vector instead of a hash_map" (but a dummy "void" default is left in place for backwards compatibility). Change-Id: I3bb0af8158f34737d41c344464f3cf944e2891ed
* typo: ommit -> omitThomas Arnhold2014-04-141-1/+1
|
* It's "its", not "it's"Tor Lillqvist2014-04-101-1/+1
| | | | Change-Id: Ieaa787afd7cc622b4750a2ee8f17f6dad934ba63
* Clean up function declarations and some unused functionsStephan Bergmann2014-04-0718-51/+66
| | | | Change-Id: I5817a5ad3966918cfb1920be568b7401dd6f948c
* remove unnecessary scope qualifier from sal_Bool usesNoel Grandin2014-04-0312-39/+39
| | | | | | i.e. convert "::sal_Bool" to "sal_Bool" Change-Id: Ie5943aee4fee617bf2670655558927ed25b7e067
* Explicitly mark overriding destructors as "virtual"Stephan Bergmann2014-04-012-3/+3
| | | | | | | | It appears that the C++ standard allows overriding destructors to be marked "override," but at least some MSVC versions complain about it, so at least make sure such destructors are explicitly marked "virtual." Change-Id: I0e1cafa7584fd16ebdce61f569eae2373a71b0a1
* typo: tempoary -> temporaryThomas Arnhold2014-03-291-1/+1
|
* typo: previos -> previousThomas Arnhold2014-03-291-1/+1
|
* typo: decription -> descriptionThomas Arnhold2014-03-291-7/+1
|
* typo: temorary -> temporaryThomas Arnhold2014-03-291-1/+1
|
* typo: Exceptiopn -> ExceptionThomas Arnhold2014-03-291-1/+1
|
* typo: enoungh -> enoughThomas Arnhold2014-03-291-1/+1
|
* typo: unfortunally -> unfortunatelyThomas Arnhold2014-03-291-1/+1
|
* typo: sicne -> sinceThomas Arnhold2014-03-291-1/+1
|
* typo: tranfer -> transferThomas Arnhold2014-03-291-1/+1
|
* typo: persistance -> persistenceThomas Arnhold2014-03-291-5/+5
|
* typo: optimisation -> optimizationThomas Arnhold2014-03-291-1/+1
|
* typo: approriate -> appropriateThomas Arnhold2014-03-291-1/+1
|
* Avoid possible resource leaks by boost::scoped_arrayTakeshi Abe2014-03-272-38/+18
| | | | Change-Id: I3d26325995995f658cd6adcc80e0716cfcee7de0
* First batch of adding SAL_OVERRRIDE to overriding function declarationsStephan Bergmann2014-03-2619-224/+224
| | | | | | | ...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: I71fa20213e86be10de332ece0aa273239df7b61a
* No need for a virtual OPropertyContainer::getTypesStephan Bergmann2014-03-141-1/+1
| | | | | | (and rename to getBaseTypes for clarity) Change-Id: Icfe6202eea9b1f4ec2e46ade3fc8e001ca6b649f
* OAccessibleContextWrapperHelper does not implement XAccessibleContextStephan Bergmann2014-03-141-6/+6
| | | | | | | ...but rather some (non-virtual) base functionality for use in derived classes (that do implement XAccessibleContext) Change-Id: Idb0023906108db22bb9696245f07b9a4c053a0d1
* Fix races in AsyncEventNotifier::executeStephan Bergmann2014-03-141-68/+28
| | | | | | | | | | | | | | | | | | | | * m_aDeadProcessors was useless; for one, removeEventsForProcessor could never have run (and set m_aDeadProcessors) between execute's reading from aEvents and checking m_aDeadProcessors (because of the use of aMutex in both functions), and if that were addressed, there would always be a race that execute would run a processor that has just been removed. Clients have to be aware that a call to removeEventsForProcessor is just an optimization hint, but does not guarantee that the given processor is not called from the execute thread after removeEventsForProcessor returns. * The sequence aGuard.clear(); aPendingActions.reset(); aPanedingActions.wait(); could cause calls to aPendingActions.set() to get lost, both for signalling new content in the queue and for signalling termination. Change-Id: I43293e3d5090c2d46db8bc8ed6fb9c71e049d55c
* comphelper,connectivity: prefer passing OUString by referenceNoel Grandin2014-03-142-3/+3
| | | | Change-Id: I19b2613918ec62ee39bb3e447f3587c5dba1e36a
* forward*PropertyValue functions need not be SAL_CALLStephan Bergmann2014-03-131-4/+4
| | | | | | ...and _bSuccess parameter is unused Change-Id: Iee5e1d5c2d4272f342b2867bfe76f8c87dcd69d4
* comphelper::OIHWrapNoFilterDialog does not implement XInitializationStephan Bergmann2014-03-131-10/+0
| | | | Change-Id: Idce153607c3deb3f0a1809b9d18cbcc6f30cf04d
* Leftover SAL_CALLStephan Bergmann2014-03-111-1/+1
| | | | Change-Id: I895b2132ee752f191f30d6adc0af35cad005afe5
* OPropertyStateHelper::getTypes isn't an override of XTypeProvider::getTypesStephan Bergmann2014-03-111-1/+1
| | | | Change-Id: I633c711aabbd2ec7d1385d106b512f14672393f1
* comphelper: simplify deprecated XTypeProvider.getImplementationIdStephan Bergmann2014-03-102-16/+2
| | | | Change-Id: I8da24ffd5eb1ac1fe6a6d2312ddc4ab13828bf07
* Introduce com.sun.star.beans.theIntrospection singletonStephan Bergmann2014-03-071-2/+2
| | | | | | ...deprecating com.sun.star.beans.Introspection (single-instance) service. Change-Id: Ica2e3a3541c7dcb1aab79222c5abf40d6988c882
* Clean up uses of rtl_ustr_ascii_shortenedCompareIgnoreAsciiCase_WithLengthStephan Bergmann2014-03-011-5/+2
| | | | Change-Id: Ie37614dac882bfe05f8ce595ae6b20326dce872e
* coverity#1187647 try and help coverity out hereCaolán McNamara2014-02-271-4/+4
| | | | Change-Id: I94a0dad8113b8b6ac06ddf5456ff8c35d7c64fc1
* coverity#1187646 unused mpAbortCaolán McNamara2014-02-271-6/+4
| | | | Change-Id: I1fc3f0253c2af4779ba59b5b85ea7fc400226177
* Remove visual noise from comphelperAlexander Wilms2014-02-2757-398/+398
| | | | | | | Change-Id: I7e5512b43240beee05404cff9d49a87d0217ea89 Reviewed-on: https://gerrit.libreoffice.org/8242 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* cppuhelper: retrofit std::exception into overriding exception specsStephan Bergmann2014-02-2656-605/+605
| | | | Change-Id: I56e32131b7991ee9948ce46765632eb823d463b3
* coverity#983702 Uncaught exceptionCaolán McNamara2014-02-253-6/+12
| | | | Change-Id: I3a0b4c8fe4208d0945860f6b4e1b31852aef8502
* comphelper: EmbeddedObjectContainer::GetObjectStream methodsJacobo Aragunde Pérez2014-02-241-0/+40
| | | | | | | These methods were added to provide access to the stream to the embedded object itself. Change-Id: I0a47a54852cddbd5ddd0a6599bba21999afd96ba
* comphelper: code refactorJacobo Aragunde Pérez2014-02-241-15/+1
| | | | Change-Id: Ica71d0691cf02aeaa03b6570015d9828cd7daeed
* Remove unneccessary commentsAlexander Wilms2014-02-2357-747/+739
| | | | | | | Change-Id: I939160ae72fecbe3d4a60ce755730bd4c38497fb Reviewed-on: https://gerrit.libreoffice.org/8182 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
* comphelper: sal_Bool -> bool sequelStephan Bergmann2014-02-192-6/+6
| | | | Change-Id: I2b9bd19abf4510fccef0374a539069cb8222ccae
* comphelper: sal_Bool -> boolStephan Bergmann2014-02-1745-306/+306
| | | | Change-Id: I6fc331ae0706f4bb193543011c8d4ae0a385fcc0
* ucbhelper: sal_Bool -> boolStephan Bergmann2014-02-171-2/+2
| | | | Change-Id: Iee327c3dd75bebb35d99de01eaa7103956e08974
* Unwind comphelper::OPropertyContainer_Base typedefStephan Bergmann2014-02-121-2/+2
| | | | Change-Id: Ied87e18f8297fb8e85fdbcab38d719664e3ed066
* silence coverity#1027865 Out-of-bounds accessCaolán McNamara2014-02-071-2/+14
| | | | | | and coverity#1027864 Change-Id: Ic3d1b91ef77ab3510c7428b7135dd9f249d56b4b
* typo fixes in commentsAndras Timar2014-02-061-1/+1
| | | | Change-Id: Idd49478d59cd062118fbf8e99d1c8bc5250013fc
* fdo#54938 Convert comphelper and vcl to cppu::supportsServiceAlexandre Vicenzi2014-02-053-21/+6
| | | | | | | Change-Id: I391a7324bf92208fe632dac17874943343b1f65a Reviewed-on: https://gerrit.libreoffice.org/7757 Reviewed-by: Marcos Souza <marcos.souza.org@gmail.com> Tested-by: Marcos Souza <marcos.souza.org@gmail.com>
* Remove needless SAL_DLLPRIVATE annotationsStephan Bergmann2014-02-031-1/+1
| | | | Change-Id: Ib8d1eae0dce29756da626c73db75f59666bb0ea5
* Remove UNOIDL "array" and "union" vaporware remnantsStephan Bergmann2014-01-312-4/+0
| | | | | | ...and deprecate what cannot be removed for compatibility. Change-Id: I1ea335af775b867b468b8285113631167729a92a