summaryrefslogtreecommitdiff
path: root/svl
AgeCommit message (Collapse)Author
2012-04-11UniString->rtl::OUStringCaolán McNamara
2012-04-11String::CreateFromInt32->rtl::OUString::valueOfCaolán McNamara
2012-04-09add package deps for resourcesDavid Tardon
2012-04-08Replaced a few equal calls with ==Szabolcs Dezsi
2012-04-08rename gb_CppunitTest_uses_ureDavid Tardon
2012-04-08compile- and run-time use of UNO must be splitDavid Tardon
There are unit tests that do not use URE, e.g., in cppuhelper. This reverts commit 33e9f3d3d6b29545ef9df3f5334c015e15caa5c8. Conflicts: sot/CppunitTest_sot_test_sot.mk svl/CppunitTest_svl_urihelper.mk
2012-04-08always use --protector for UNO testsDavid Tardon
2012-04-08drop uses_ureDavid Tardon
2012-04-08let use_api handle the use of type rdbs at runtimeDavid Tardon
Or is there any use case where we would need to use UNO API headers, but not require the appropriate type database at runtime?
2012-04-08LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl
2012-04-08gbuild: "use" vs. "add":Michael Stahl
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-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-06Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-05UniString::CreateFromInt32 -> rtl::OUString::valueOfCaolán McNamara
2012-04-02removed duplicate includes in svl / svtoolsTakeshi Abe
2012-03-30add constLuboš Luňák
2012-03-28callcatcher: regenerate listCaolán McNamara
2012-03-27UniString removal.Kohei Yoshida
2012-03-26readUnicodeString can just return the stringCaolán McNamara
seeing as no-one checks the return value, we don't need the intermediate temporary string
2012-03-26dead helper dirCaolán McNamara
2012-03-25svl: add include path and more add_package_headersMatúš Kukan
2012-03-20reduce UniStringsCaolán McNamara
2012-03-20split macros to elide unneeded methodsCaolán McNamara
2012-03-20SfxUINT32s->std::vectorCaolán McNamara
2012-03-18Add parenthesis for avoid false report by cppcheckJulien Nabet
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann
...which has the necessary features to support it. Change a lot of classes to either contain a protected non-virtual dtor (which is backwards compatible, so even works for cppumaker-generated UNO headers) or a public virtual one. cppuhelper/propertysetmixin.hxx still needs to disable the warning, as the relevant class has a non-virtual dtor but friends, which would still cause GCC to warn. Includes a patch for libcmis, intended to be upstreamed.
2012-03-14callcatcher: update listCaolán McNamara
2012-03-12ditch SfxULongRangesCaolán McNamara
2012-03-12WaE: cast to pointer from integer of different sizeDavid Tardon
2012-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan
2012-03-08Convert from tools/table.hxx to std::map in SvxMacroTableDtorNoel Grandin
In this case, we also convert from storing pointers to storing the items directly because SvxMacroTableDtor completely controls the lifecycle of the SvxMacro objects it contains. Also add an operator== to SvxMacroTableDtor and remove the out-of-line implementations of equals from two other places.
2012-03-05String to OUString in cell.[ch]xx and follow upMarkus Mohrhard
2012-02-28fixed crashes due to transition from Table to std::mapEike Rathke
Old code used Table Seek/Next followed by GetCurKey() that returned -1 (or some such? anyway) if after the last element, comparing with another key. Replacement code did not check for valid iterators. Crash happened when changing the locale within the number formatter and obtaining the default currency format. May also have happened when changing the default locale and documents using a number formatter were open.
2012-02-28SfxStyleSheet needs a default ctorCaolán McNamara
due to use of ImplInheritanceHelper2 SfxStyleSheet needs a default ctor, though its never called. rearrange things a little so we can have an empty ctor without pulling in a bunch of code which is never executed
2012-02-28remove dangling legacy binary-compatible between-milestons temp hack nonsenseCaolán McNamara
2012-02-27SfxItemPool: replace deque with vector for SfxPoolItem arrayMichael Stahl
Yields measurable speedup on load/store of large documents, wonder where the equivalent patch i committed long time ago to OOo went...
2012-02-27Removed unused codeSzabolcs Dezsi
2012-02-27drop UniString::CreateFromInt64Caolán McNamara
2012-02-23Get rid of CREATEVERSIONRESMGR[_NAME]Stephan Bergmann
2012-02-22OUString ctor for string literals without RTL_CONSTASCII stuffLuboš Luňák
http://lists.freedesktop.org/archives/libreoffice/2012-February/025662.html
2012-02-20gb_JunitTest_JunitTest takes only one argumentStephan Bergmann
2012-02-19Remove unused codePetr Vorel
2012-02-19Remove unused codeElton Chung
2012-02-17Removed unused code from svl and sfx2Szabolcs Dezsi
2012-02-17EasyHack 42790: get rid of PRODUCTLaurent Balland-Poirier
Preprocessor constant PRODUCT is replaced by !DBG_UTIL
2012-02-16callcatcher: update unused code listCaolán McNamara
2012-02-16Use RTL_CONSTASCII_STRINGPARAM instead of bare numberTakeshi Abe
2012-02-14Remove some more outdated sunpro tracesThomas Arnhold
On Solaris gcc should be used. See: 514cefbcb7b800f8ddd2aa595502f4fe8403882f 19480ddf483174e956bd658b76380dbe499678dd
2012-02-13EasyHack: Removed gcc conditionalsAlexander Bergmann