Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-02-07 | Remove dead code | Thomas Arnhold | |
2011-02-07 | use locally built cppunittester | David Tardon | |
2011-02-07 | actually enable the STL adaptation | David Tardon | |
2011-02-07 | WaE: format not a string literal and no format arguments | Thomas Arnhold | |
2011-02-07 | add (pre|post)extstl.h around cppunit headers | David Tardon | |
2011-02-07 | TESTSHL2LIB does not exist anymore | David Tardon | |
2011-02-07 | Remove unused header | Thomas Arnhold | |
2011-02-07 | WaE: comparison between signed and unsigned integer | David Tardon | |
2011-02-07 | add (pre|post)extstl.h around cppunit headers | David Tardon | |
2011-02-07 | comment out the failing test case for now | David Tardon | |
2011-02-07 | use rtl::OStringBuffer for message | David Tardon | |
2011-02-07 | Removed unnecessary includes | Wilhelm Pflueger | |
2011-02-07 | Re-animated tests that were based on testshl. | Wilhelm Pflueger | |
One test in test_outstring_convert.cxx fails for method rtl::OUString::convertToString(). | |||
2011-02-06 | std::hash -> boost::hash | Fridrich Štrba | |
2011-02-06 | OSL_DEBUG_LEVEL formatting | Thomas Arnhold | |
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-04 | OString: New method isEmpty() | Thomas Arnhold | |
2011-02-04 | Clean up makefiles | Thomas Arnhold | |
2011-02-04 | Put this two includes back | Fridrich Štrba | |
2011-02-03 | Add missing #include <vector> to the file. | Joseph Powers | |
2011-02-04 | moving the rest of ure repository to boost unordered containers | Fridrich Strba | |
2011-02-04 | move bridges to boost::unordered_map | Fridrich Strba | |
2011-02-03 | move module rdbmaker to boost unordered containers | Fridrich Strba | |
2011-02-03 | move module cppuhelper to boost unordered containers | Fridrich Strba | |
2011-02-03 | move module cppu to boost unordered containers | Fridrich Strba | |
2011-02-03 | move codemaker module to the boost unordered containers | Fridrich Strba | |
2011-02-03 | some std::hash_map/set -> boost::unordered_map/set changes | Fridrich Strba | |
2011-02-03 | Build module registry with MSVC stl | Fridrich Strba | |
2011-02-03 | Use rtl::Allocator in MSVC hash containers | Fridrich Strba | |
2011-02-03 | include MSVC STL code path | Fridrich Strba | |
2011-02-02 | More work on except.cxx, intermediate commit | Tor Lillqvist | |
Now I have some understanding what it is the code here should do, and have found 3rd-party documentation (in source code form even) for the exception-related data structures. It still crashes, but I hope that is just because of thinkos that need to be fixed by debugging, or reading the code. There are some horrible code with quite complex casts in places, I need to introduce some macros or inline functions instead to make the casting from RVAs to real pointers and back cleaner. Also maybe just use DWORD instead of sal_uInt32 for terseness, and use a specific typedef name for DWORDs that actually are RVAs for clarity? | |||
2011-02-01 | Clean up makefiles | Thomas Arnhold | |
2011-02-01 | Remove RCS information | Thomas Arnhold | |
2011-02-01 | Some fixes to documentation (part 6) | Aurimas Fišeras | |
Fixes many spelling errors (checked with en_US spell checker). Unifies spelling of some common words. Replaces single quotes ('') with double quotes (""). Fixes several other errors. | |||
2011-01-31 | Remove RCS lines. | Thomas Arnhold | |
2011-01-31 | Revert "Temporary revert to compile on Windows XP" | Fridrich Štrba | |
This reverts commit 6734127f11b49e65571f8e1d6b346db9e94ea64d. | |||
2011-01-31 | Some fixes to documentation (part 5) | Aurimas Fišeras | |
Fixes many spelling errors (checked with en_US spell checker). Unifies spelling of some common words. Replaces single quotes ('') with double quotes (""). Fixes several other errors. | |||
2011-01-31 | Fix thinko | Tor Lillqvist | |
2011-01-31 | Now the C++-UNO bridge on x64 Windows works a bit better | Tor Lillqvist | |
I had implemented a couple of basic things quite wrong, partly because of easily misunderstood Microsoft documentation. A couple of things I just had forgot to do properly. Attempt to make the source code more consistent in spacing and variable naming. Clean away meaningless vertical space wasting non-verbal comments. The bridgetest over in testtools now runs through quite a lot of its paces successfully. But exception handling and RTTI, the stuff in except.cxx, is still not really done at all. And even if I comment out those checks in bridgetest so that no exceptios are thrown, I then get a crash later. | |||
2011-01-29 | Temporary revert to compile on Windows XP | Jesús Corrius | |
2011-01-29 | Use errno to get the correct error message if mkstemp() fails. | Thomas Arnhold | |
2011-01-29 | cppcheck: remove unused variable strLen. | Thomas Arnhold | |
2011-01-29 | Remove double line spacing and correct indentation | Thomas Arnhold | |
2011-01-29 | that decrement doesn't look right | Caolán McNamara | |
2011-01-28 | Fix interlck.c to work on Mac OS again... | Joseph Powers | |
mmeeks, we love your patch; however, some of us are forced to use the very old 4.0 version of GCC (I blame Apple) and __sync_add_and_fetch() wasn't added until version 4.4. PS: Moving the target OS version to 10.5 wont help because that still uses the 4.2.1 version. | |||
2011-01-29 | Skip the this pointer in cpp2uno_call() | Tor Lillqvist | |
Also change a few variable names to consistently use the "TD" suffix for typelib_TypeDescription variables. | |||
2011-01-28 | Let's use a shared privateSnippetExecutor() approach as on x64 Linux | Tor Lillqvist | |
It simplifies function table and unwinding info management, as those are now static for the privateSnippetExecutor() function in call.asm. Even if it is slightly ugly to have to poke in more instructions in codeSnippet(). Out privateSnippetExecutor() is much simpler than the x64 Linux one, thanks to the simpler calling convention. | |||
2011-01-28 | Fix typo and thinko | Tor Lillqvist | |