Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-03-14 | Use explicitly cast zeros to avoid compilation error with MSVC2010 | Tor Lillqvist | |
Could also use nullptr, is it supported by all compiler versions we use? | |||
2011-03-12 | Move OSL_ENSURE(0,...) to OSL_FAIL(...) | Thomas Arnhold | |
2011-03-12 | Move OSL_ENSURE(false,...) to OSL_FAIL(...) | Thomas Arnhold | |
2011-03-02 | Remove "using namespace ::rtl" | Julien Nabet | |
2011-02-24 | remove empty TESTSHL2LIB | Caolán McNamara | |
2011-02-15 | dragonfly stuff | Francois Tigeot | |
2011-02-09 | Trying to remove the stlport mention from the code | Fridrich Štrba | |
2011-02-09 | Removing the ext_std masterpiece | Fridrich Štrba | |
2011-02-06 | don't crash trying to erase one past end | Fridrich Štrba | |
2011-02-06 | Revert "revert this change for now as its triggering a crash in saxparser" | Fridrich Štrba | |
This reverts commit b73cf2b1ef3892b4c200c05fd617bfd099aceee5. | |||
2011-02-04 | revert this change for now as its triggering a crash in saxparser | Caolán McNamara | |
2011-02-03 | move module cppu to boost unordered containers | Fridrich Strba | |
2011-01-29 | Remove double line spacing and correct indentation | Thomas Arnhold | |
2011-01-24 | WaE: gcc 4.6.0 various warnings | Caolán McNamara | |
2011-01-23 | If CPPU_LEAK_STATIC_DATA is defined, don't bother with assertions | Tor Lillqvist | |
Re-introduce the possibility to define CPPU_LEAK_STATIC_DATA. This time use it to bypass just the assertions that check that the type description counts really are zero at the end of the TypeDescriptor_Init_Impl destructor. Add more informative debugging printout of which counts are non-zero. Define CPPU_LEAK_STATIC_DATA for x64 Windows for now. But we do get the same assertions also on x86 Windows if cppu is built with OSL_DEBUG_LEVEL>1. | |||
2011-01-23 | Remove pointless debugging output | Tor Lillqvist | |
We do print out a message if struct size verifications fail. That is enough. No point in printing out the same > sizeof(AlignSize_Impl) = 16 > sizeof(M) = 8 > sizeof(N) = 12 etc messages every time a cppu-using program is run and cppu has been built for debugging. | |||
2011-01-16 | Use separate .map files for 64-bit MSVC build | Tor Lillqvist | |
Unfortunately the C++ name mangling in a 64-bit MSVC compilation is slightly different from that in a 32-bit one: -- An 'E' is inserted for pointers to indicate that they are 64 bits. I don't fully understand the rationale for this; isn't that the only kind of pointer in 64-bit code produced by a C++ compiler anyway? -- As there is only one calling convention on x64 Windows, __cdecl, the indications for other calling conventions (here, especially __thiscall) change to that for __cdecl. It should be possible to write a tool to at least partially automate conversion of 32-bit mangled names to 64-bit ones, and thus make it easy to create mscx map files from the corresponding msci ones in LibreOffice. Sure, it probably wouldn't work 100% correctly in all cases, but it would help a lot. | |||
2011-01-15 | fix break on parallel build | David Tardon | |
2011-01-14 | cppunit: enable these tests | Caolán McNamara | |
2011-01-14 | cppunit: port these tests over to canonical cppunit | Caolán McNamara | |
2011-01-13 | add an explicit | Caolán McNamara | |
2011-01-12 | Some cppcheck cleaning | Julien Nabet | |
2010-12-23 | suppress compiler warning | David Tardon | |
2010-12-16 | Handle NetBSD like the other BSDs in more cases. | Thomas Klausner | |
2010-12-06 | Replace all occured, occurance etc. | Takeshi Abe | |
2010-12-05 | Remove redundant comments | J. Graeme Lingard | |
2010-11-26 | cppcheck: use prefix variant | Caolán McNamara | |
2010-11-12 | Revert "Add workaround to avoid crash when exiting LibreOffice" | Jan Holesovsky | |
This reverts commit 146e2fbca20f5cba3410d3d042ae6222a565dd7e. The workaround is has to be present in libreoffice-3-3, but we do not want to have it in master, so that eventually it is fixed in the end :-) | |||
2010-11-10 | Add workaround to avoid crash when exiting LibreOffice | Tor Lillqvist | |
Reintroduce the horrible CPPU_LEAK_STATIC_DATA hack used in OOo 3.2.1, but only for Windows builds. No idea what causes the crash. See fdo#31494. Don't know if this hack has some bad consequences then, i#107490 seems to say so. | |||
2010-11-08 | Patches for ure, neeed by OpenBSD | Robert Nagy | |
Adds the necessary distinctions in the system abstraction layers. | |||
2010-11-05 | can undo this now with dial-down in solenv | Caolán McNamara | |
(cherry picked from commit 23b34d1adafa71612f093d6b5aa015f307785a3f) | |||
2010-11-03 | Workaround for the registration breakage on SUSE. | Jan Holesovsky | |
Commit 55c3066e52ad1843549c442e8d74f886507c58f4 seems to break the SUSE boxes, this is a workaround for that. | |||
2010-10-27 | add modelines to .h and .c files as well | Caolán McNamara | |
2010-10-24 | micro opts | Caolán McNamara | |
2010-10-24 | give me a deterministic ctor/dtor ordering I can trust, and defer to first use | Caolán McNamara | |
2010-10-20 | #i101100# strict-alias clean | Caolán McNamara | |
2010-10-16 | Make calls to unary_function and binary_function less ambiguous for VC10 | Jesús Corrius | |
2010-10-14 | Add vim/emacs modelines to all source files | Sebastian Spaeth | |
Fixes #fdo30794 Based on bin/add-modelines script (originally posted in mail 1286706307.1871.1399280959@webmail.messagingengine.com) Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de> | |||
2010-10-13 | AIX cppu quirks | Caolán McNamara | |
2010-10-13 | Remove redundant #include, #define & comments | J. Graeme Lingard | |
2010-10-13 | micro optimization to avoid global ctor that including iostream creates | Caolán McNamara | |
2010-10-11 | #i107490# cppu lifecycle cleanup | Caolán McNamara | |
2010-10-05 | more removed include guards using fixguard.py | Petr Mladek | |
2010-10-05 | remove include guards using fixguard.py | Petr Mladek | |
2010-10-05 | all of these compiler checks can go, the result is overridden anyway | Caolán McNamara | |
2010-09-17 | cppu-lbnames-enable-gcc-4.5.diff: enable build with gcc-4.5 | Petr Mladek | |
i#109853 | |||
2010-09-14 | win32-vs2005-compat.diff: Fix build with Visual Studio 2005 | Thorsten Behrens | |
2010-03-10 | sb120: #i83192# removed cppu/test, superseded by testtools tests | sb | |
2010-03-04 | sb118: #i109791# improved CPPUNIT_CFLAGS handling | sb | |
2010-03-04 | sb118: add missing CFLAGS+= $(CPPUNIT_CFLAGS) to loads of other makefiles, too | Rene Engelhard | |