summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2011-02-07Remove dead codeThomas Arnhold
2011-02-07use locally built cppunittesterDavid Tardon
2011-02-07actually enable the STL adaptationDavid Tardon
2011-02-07WaE: format not a string literal and no format argumentsThomas Arnhold
2011-02-07add (pre|post)extstl.h around cppunit headersDavid Tardon
2011-02-07TESTSHL2LIB does not exist anymoreDavid Tardon
2011-02-07Remove unused headerThomas Arnhold
2011-02-07WaE: comparison between signed and unsigned integerDavid Tardon
2011-02-07add (pre|post)extstl.h around cppunit headersDavid Tardon
2011-02-07comment out the failing test case for nowDavid Tardon
2011-02-07use rtl::OStringBuffer for messageDavid Tardon
2011-02-07Removed unnecessary includesWilhelm Pflueger
2011-02-07Re-animated tests that were based on testshl.Wilhelm Pflueger
One test in test_outstring_convert.cxx fails for method rtl::OUString::convertToString().
2011-02-06std::hash -> boost::hashFridrich Štrba
2011-02-06OSL_DEBUG_LEVEL formattingThomas Arnhold
2011-02-06don't crash trying to erase one past endFridrich Štrba
2011-02-06Revert "revert this change for now as its triggering a crash in saxparser"Fridrich Štrba
This reverts commit b73cf2b1ef3892b4c200c05fd617bfd099aceee5.
2011-02-04revert this change for now as its triggering a crash in saxparserCaolán McNamara
2011-02-04OString: New method isEmpty()Thomas Arnhold
2011-02-04Clean up makefilesThomas Arnhold
2011-02-04Put this two includes backFridrich Štrba
2011-02-03Add missing #include <vector> to the file.Joseph Powers
2011-02-04moving the rest of ure repository to boost unordered containersFridrich Strba
2011-02-04move bridges to boost::unordered_mapFridrich Strba
2011-02-03move module rdbmaker to boost unordered containersFridrich Strba
2011-02-03move module cppuhelper to boost unordered containersFridrich Strba
2011-02-03move module cppu to boost unordered containersFridrich Strba
2011-02-03move codemaker module to the boost unordered containersFridrich Strba
2011-02-03some std::hash_map/set -> boost::unordered_map/set changesFridrich Strba
2011-02-03Build module registry with MSVC stlFridrich Strba
2011-02-03Use rtl::Allocator in MSVC hash containersFridrich Strba
2011-02-03include MSVC STL code pathFridrich Strba
2011-02-02More work on except.cxx, intermediate commitTor 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-01Clean up makefilesThomas Arnhold
2011-02-01Remove RCS informationThomas Arnhold
2011-02-01Some 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-31Remove RCS lines.Thomas Arnhold
2011-01-31Revert "Temporary revert to compile on Windows XP"Fridrich Štrba
This reverts commit 6734127f11b49e65571f8e1d6b346db9e94ea64d.
2011-01-31Some 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-31Fix thinkoTor Lillqvist
2011-01-31Now the C++-UNO bridge on x64 Windows works a bit betterTor 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-29Temporary revert to compile on Windows XPJesús Corrius
2011-01-29Use errno to get the correct error message if mkstemp() fails.Thomas Arnhold
2011-01-29cppcheck: remove unused variable strLen.Thomas Arnhold
2011-01-29Remove double line spacing and correct indentationThomas Arnhold
2011-01-29that decrement doesn't look rightCaolán McNamara
2011-01-28Fix 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-29Skip 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-28Let's use a shared privateSnippetExecutor() approach as on x64 LinuxTor 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-28Fix typo and thinkoTor Lillqvist