summaryrefslogtreecommitdiff
path: root/cppuhelper
AgeCommit message (Collapse)AuthorFilesLines
2011-11-27remove include of pch header in cppuhelperNorbert Thiebaud37-70/+0
2011-11-27remove PCH support in dmake-moduleNorbert Thiebaud1-8/+0
2011-11-17Look for libboostrap.uno.so and not bootstrap.uno.so on AndroidTor Lillqvist1-1/+8
Not sure if we need to be more generic here, and always add a "lib" prefix if not present. Or do the changes to the makefilery take care of it, so that for other UNO components than bootstrap, the name as stored wherever it is stored does contain the "lib" prefix we are forces to use on Android?
2011-11-17Enforce a "lib" prefix for UNO components for AndroidTor Lillqvist1-1/+1
This commit for the old build system. (Don't bother for components not relevant for Android.) The Android package installer (as invoked through "adb install", from "ant debug install") silently ignores native libraries in app packages (.apk files) whose names don't start with "lib" and end with ".so". The package builder (as invoked through "ant debug") in the SDK gladly includes also thusly named native libraries in the .apk, though. Yay for consistency.
2011-11-15fdo#42865: cppu,cppuhelper,testtools: no mapfileMichael Stahl4-16/+4
Instead, build with VISIBILITY_HIDDEN.
2011-11-10New LO_{LIB,JAVA}_DIR make special inbuild component handling superfluous.Stephan Bergmann1-2/+2
2011-11-02Simplify addition of optional components to URE_MORE_{SERVICES,TYPES}.Stephan Bergmann1-43/+120
Those bootstrap variables now support <XXX>* syntax to include all files (non- recursively) contained in the directory denoted by XXX. Optional components can put their data simply into program/services/ and program/types/.
2011-11-02Minor clean up.Stephan Bergmann1-46/+22
2011-10-28typo/spelling/grammar in commentLionel Elie Mamane1-1/+1
2011-10-18Some fixes for "clang version 3.1 (trunk 142234)" (with --enable-werror, on ↵Stephan Bergmann1-1/+1
Linux x86_64).
2011-09-22just silence the auto_ptr deprecations in isolationCaolán McNamara1-11/+15
2011-09-21Improved some error reporting.Stephan Bergmann1-1/+1
2011-09-21OSL_TRACE: Remove trailing newlinesThomas Arnhold1-2/+2
Done with perl regex: s/(\n\s*OSL_TRACE\(\s*\"[^\n]+?)\s*(\\n)+(\"[^\n]*\)\;\n)/$1$3/gs; - removed trailing whitespaces and (multiple) newlines
2011-09-12sb140: #i113503# mixing system CppUnit and OOo STLport does not work, backed ↵Stephan Bergmann6-4/+12
out a6913c9677c2 For LibO, that just means replacing sal/cppunit.h with sal/precppunit.hxx.
2011-09-12sb140: #i117698# no implementations of XIdlClassProvider remain, so code ↵Stephan Bergmann1-24/+0
that checks for it can be removed
2011-09-12sb140: #i117697# simplify obsolete cppuhelper/stdidlclass.hxx implementationStephan Bergmann3-380/+56
2011-09-12sb140: #i117694# some CppUnit related cleanupStephan Bergmann2-35/+3
2011-09-07This seems to help the MSVC build alongTor Lillqvist1-2/+3
2011-09-07correct OPropertySetHelper2 copy constructor and assignment operatorLionel Elie Mamane2-4/+2
allows to get rid of export of vtable
2011-09-07apparently vtable & thunks necessary after all in gcc3.mapLionel Elie Mamane1-11/+15
2011-09-07Restore ABI compatibility with LO 3.4 and earlierLionel Elie Mamane4-35/+94
Factor out ABI-breaking changes to OPropertySetHelper into a derived class OPropertySetHelper2. Only gcc3.map is up-to-date.
2011-09-02Typo in commentLionel Elie Mamane1-1/+1
2011-08-30Tweak some DLL and import library names in the WNTGCC caseTor Lillqvist2-4/+4
2011-08-22OSL_DEBUG_LEVEL > 1Caolán McNamara1-0/+2
2011-08-22servicefactory fixGabor1-0/+1
2011-08-16Renamed XPropertySet2 to XPropertySetOption.Kohei Yoshida4-7/+7
To avoid making it appear to be a derived interface of XPropertySet when it's not.
2011-08-16Make XPropertSet2 not a child interface of XPropertySet.Kohei Yoshida2-1/+4
This is to preserve ABI backward compatibility with cppu::OPropertySetHelper.
2011-08-16Changing the vtable symbol from XPropertySet to XPropertySet2.Kohei Yoshida1-1/+1
NOTE: This needs to be double-checked by an expert. I'm modifying a symbol that's defined in the UDK_3_0_0 section. I'm not really sure if this will cause any ABI breakages for either the core code or extensions.
2011-08-16Added symbol for MSVC.Kohei Yoshida2-3/+8
2011-08-16Added XPropertySet2 to allow disabling of change event notifications.Kohei Yoshida4-3/+29
Sometimes broadcasting changes to the property set on every new value insertion makes no sense especially during import. Turning that off also improves performance especially when inserting millions of property values.
2011-08-08Can't build the iOS static cppuhelper test here nowTor Lillqvist1-1/+0
Since we now link to the (also static) bootstrap.uno component which hasn't been built yet.
2011-08-08For iOS just link directly to the bootstrap componentTor Lillqvist1-1/+25
2011-08-08Don't bother trying to truncate parts debugging outputTor Lillqvist1-1/+1
Murphy says it's the part that is dropped which will be interesting one anyway.
2011-08-08Add invokeStaticComponentFactory() for statically linked componentsTor Lillqvist3-77/+150
Will be used for iOS at least. Factor out the part of loadSharedLibComponentFactory() that handle the symbol that has been successfully looked up.
2011-08-08Add metacommentTor Lillqvist1-0/+7
2011-08-08OSL_TRACE adds trailing newline itselfTor Lillqvist1-1/+1
2011-08-08Add XServiceInfo.hpp needed when OSL_DEBUG_LEVEL > 1Tor Lillqvist1-0/+1
2011-08-08Factor out "bootstrap.uno" repeated for all bootstrap servicesTor Lillqvist1-12/+4
2011-08-08Move function to the file where it is usedTor Lillqvist2-68/+63
2011-08-07getLibEnv always returned an empty string anyway so make it void insteadTor Lillqvist1-109/+108
2011-08-04Bin OS/2 .map filesTor Lillqvist1-378/+0
2011-08-01Use separate unit testers for subsequent and normal tests for iOSTor Lillqvist5-18/+165
2011-08-01Try to use the app executable module on iOS for nowTor Lillqvist1-0/+11
2011-08-01Nah, these must be subsequent tests also for iOSTor Lillqvist2-1/+7
2011-08-01Add statically linked cpphelper unit test for iOSTor Lillqvist8-21/+209
2011-07-28we are searching for prefix in activateMatúš Kukan1-21/+0
also fix small typo
2011-07-12Remove component_getImplementationEnvironmentMatúš Kukan2-13/+0
2011-07-11Default to current language binding name, if not specified.Matúš Kukan1-16/+6
Signed-off-by: Michael Meeks <michael.meeks@novell.com>
2011-06-27Export the new loadSharedLibComponentFactory() overload, tooTor Lillqvist1-0/+1
2011-06-24re-work prefix handling and undo cppuhelper ABI change, add unit testMichael Meeks6-6/+40
use a separate prefix enabled method instead of changing the ABI of cppuhelper also - lookup the prefix in the dllcomponentloader in case we are called this way also - add a unit test for the prefix change