Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2012-04-14 | stoc: accelerate opening of multiple XML .rdb files in a directory | Michael Meeks | 3 | -16/+92 | |
Instead of nesting these, we aggregate them into a single non-nested registry, which saves lots of CPU at startup, sadly we can only do that for the new-style XML registries, so we have to sniff files, nevertheless this is still far faster. The merged xml files also break the XSimpleRegistry::getURL() method - but it appears not to get called. | |||||
2012-04-08 | Replaced a few equal calls with == | Szabolcs Dezsi | 1 | -10/+2 | |
2012-04-08 | gbuild: "use" vs. "add": | Michael Stahl | 10 | -20/+20 | |
Naming convention for gbuild methods: - "add" is used for stuff that is logically a part of the target (i.e. not registered at the Module, but defined in the target's makefile) - "use" is used for stuff that is logically a different target (i.e. it is registered at the Module, has it's own makefile, may be in a different module than the target) | |||||
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | 11 | -50/+31 | |
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | 1 | -2/+2 | |
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *) *{$/\1\2 ( \3 == \4 ) {/' \{\} \; | |||||
2012-04-06 | javaloader: add_linked_lib salhelper | Matúš Kukan | 1 | -0/+1 | |
2012-04-06 | fix makefiles | David Tardon | 1 | -35/+2 | |
2012-04-06 | Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operator | Szabolcs Dezsi | 8 | -76/+76 | |
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \; | |||||
2012-04-06 | merge feature/gbuild_components | David Tardon | 49 | -1432/+1100 | |
2012-04-05 | Resolves: fdo#47068 use of pointer to deleted object | Caolán McNamara | 1 | -36/+46 | |
2012-04-03 | stoc: add helpful structural documentation from mailing list post. | Stephan Bergmann | 1 | -0/+39 | |
2012-04-01 | merge origin/master | David Tardon | 11 | -19/+35 | |
2012-03-29 | We want just the library basename in the DISABLE_DYNLOADING case | Tor Lillqvist | 1 | -0/+2 | |
2012-03-24 | add $(gb_STDLIBS) to linked libs | David Tardon | 9 | -8/+9 | |
2012-03-21 | More hacking on static linking (iOS) support | Tor Lillqvist | 2 | -2/+9 | |
2012-03-18 | Prefer prefix ++/-- operators for non-primitive types | Julien Nabet | 1 | -3/+3 | |
2012-03-12 | gbuildize stoc | David Tardon | 49 | -1432/+1099 | |
2012-02-28 | Avoid temporary rtl::OUString | Takeshi Abe | 2 | -2/+2 | |
in scripting / sdext / starmath / stoc / svtools / svx | |||||
2012-02-26 | Avoid temporary rtl::OUString | Julien Nabet | 1 | -5/+5 | |
2012-02-19 | Get rid of size() == 0 | Elton Chung | 3 | -3/+3 | |
2012-02-16 | java: add STOC_FORCE_NO_JRE env. var to enable easy testing of no-JRE case. | Michael Meeks | 1 | -2/+8 | |
2012-02-06 | Added READMEs for modules related to URE, with content from the wiki | Josh Heidenreich | 1 | -0/+1 | |
2012-02-01 | A few safe replacements of pathes->paths | Jesús Corrius | 1 | -2/+2 | |
2012-01-26 | Code cleanup: ( () ) replaced by (()) | Alexander Bergmann | 11 | -122/+122 | |
2012-01-21 | Removed some unused parameters; added SAL_UNUSED_PARAMETER. | Stephan Bergmann | 9 | -13/+19 | |
SAL_UNUSED_PARAMETER (expanding to __attribute__ ((unused)) for GCC) is used to annotate legitimately unused parameters, so that static analysis tools can tell legitimately unused parameters from truly unnecessary ones. To that end, some patches for external modules are also added, that are only applied when compiling with GCC and add necessary __attribute__ ((unused)) in headers. | |||||
2012-01-20 | Code clean up. | Stephan Bergmann | 1 | -6/+6 | |
2012-01-19 | Drop UNO_REF_QUERY[_THROW] duplicates of UNO_QUERY[_THROW]. | Stephan Bergmann | 1 | -1/+1 | |
They are virtually unused (at least the LibO code base has only a single use of UNO_REF_QUERY) but confuse static analysis tools that classify unused function parameters as "tags" (which legalizes the unusedness of those parameters) if they are of an enum type with exactly one value defined. | |||||
2012-01-15 | Clang -Wunused-variable. | Stephan Bergmann | 1 | -0/+1 | |
2012-01-12 | Fix mistake in type OUStringBuffer | Olivier Hallot | 1 | -1/+1 | |
Fix mistake in method for type OUStringBuffer | |||||
2012-01-12 | Fix for fdo43460 Part XXXV getLength() to isEmpty() | Olivier Hallot | 24 | -99/+95 | |
Part XXXV Modules stoc | |||||
2012-01-02 | Get rid of manual ref counting. | Stephan Bergmann | 2 | -122/+29 | |
2012-01-02 | USE_INTROSPECTION_CACHE is always defined. | Stephan Bergmann | 1 | -23/+1 | |
2011-12-27 | function component_canUnload is exported | David Tardon | 7 | -7/+7 | |
2011-12-27 | catch exception by constant reference | Takeshi Abe | 25 | -50/+50 | |
2011-12-16 | msvc 2008 express won't link without explicit salhelper | Caolán McNamara | 1 | -0/+1 | |
post salhelper visibility markup and gbuildification express 2008 doesn't link without salhelper mentioned on link line | |||||
2011-12-15 | Removed extra semicolons | Jesse | 1 | -1/+1 | |
2011-12-11 | I don't see NO_BSYMBOLIC being used anywhere | Tor Lillqvist | 5 | -5/+0 | |
2011-11-27 | remove precompiled_xxx.hxx/cxx | Norbert Thiebaud | 2 | -320/+0 | |
2011-11-27 | remove include of pch header from stoc | Norbert Thiebaud | 77 | -149/+0 | |
2011-11-27 | remove PCH support in dmake-module | Norbert Thiebaud | 1 | -8/+0 | |
2011-11-17 | Enforce a "lib" prefix for UNO components for Android | Tor Lillqvist | 11 | -12/+12 | |
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-10-05 | Fix logic of isDerivedFrom function | Kevin Hunter | 1 | -18/+7 | |
From an email conversation with Stephen Bergmann "I think the real intent always was to actually look through all the returned getSuperclasses(), and the error that superclasses past the first one are effectively ignored has never been noticed." | |||||
2011-10-03 | WaE: unreachable code, also add comment pondering what the code means | Tor Lillqvist | 1 | -1/+8 | |
2011-09-30 | add mode-lines to .m files and last round of merged files, etc. | Caolán McNamara | 2 | -0/+6 | |
2011-09-27 | Removed uses of rtl::O[U]String[Buffer]::operator sal_{char|Unicode} const *(). | Stephan Bergmann | 1 | -3/+6 | |
2011-09-24 | remove obsolete Forte NOOPT files | Michael Meeks | 1 | -6/+0 | |
2011-09-22 | just silence the auto_ptr deprecations in isolation | Caolán McNamara | 2 | -0/+10 | |
2011-09-21 | OSL_TRACE: Remove trailing newlines | Thomas Arnhold | 6 | -13/+13 | |
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-12 | sb140: #i117698# no implementations of XIdlClassProvider remain, so code ↵ | Stephan Bergmann | 5 | -544/+513 | |
that checks for it can be removed | |||||
2011-09-12 | sb140: #i117694# some CppUnit related cleanup | Stephan Bergmann | 3 | -36/+4 | |