summaryrefslogtreecommitdiffstats
path: root/svl
Commit message (Collapse)AuthorAgeFilesLines
* Avoid bogus warnings (GCC 4.4.6)Stephan Bergmann2012-04-231-2/+2
|
* Replace css macro with namespace for nicer namespacingThomas Arnhold2012-04-211-10/+1
|
* resolved fdo#48875 do not let ISO 8601 detection override locale's date orderEike Rathke2012-04-183-11/+80
| | | | | If the locale's date separator was '-' the ISO 8601 detection interfered with the locale's date order, e.g. DMY in nl_NL locale.
* enable '*' repeat next char to fill available width for calc num formatsNoel Power2012-04-172-5/+15
| | | | but - however no support to import/export this to file format yet
* upgrade GetValueTextByPos family to rtl::OUStringCaolán McNamara2012-04-164-13/+13
|
* resolved fdo#48706 recognize $.12 as currency numberEike Rathke2012-04-151-0/+5
|
* UniString->rtl::OUStringCaolán McNamara2012-04-112-3/+3
|
* String::CreateFromInt32->rtl::OUString::valueOfCaolán McNamara2012-04-111-1/+1
|
* add package deps for resourcesDavid Tardon2012-04-091-3/+2
|
* Replaced a few equal calls with ==Szabolcs Dezsi2012-04-081-1/+1
|
* rename gb_CppunitTest_uses_ureDavid Tardon2012-04-081-1/+1
|
* compile- and run-time use of UNO must be splitDavid Tardon2012-04-081-0/+2
| | | | | | | | | | | 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
* always use --protector for UNO testsDavid Tardon2012-04-081-5/+0
|
* drop uses_ureDavid Tardon2012-04-081-2/+0
|
* let use_api handle the use of type rdbs at runtimeDavid Tardon2012-04-081-4/+0
| | | | | Or is there any use case where we would need to use UNO API headers, but not require the appropriate type database at runtime?
* LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl2012-04-083-3/+3
|
* gbuild: "use" vs. "add":Michael Stahl2012-04-086-13/+13
| | | | | | | | | 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)
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-064-13/+11
|
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-062-4/+4
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-061-12/+12
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* UniString::CreateFromInt32 -> rtl::OUString::valueOfCaolán McNamara2012-04-051-6/+6
|
* removed duplicate includes in svl / svtoolsTakeshi Abe2012-04-022-2/+0
|
* add constLuboš Luňák2012-03-303-4/+4
|
* callcatcher: regenerate listCaolán McNamara2012-03-281-8/+8
|
* UniString removal.Kohei Yoshida2012-03-272-0/+16
|
* readUnicodeString can just return the stringCaolán McNamara2012-03-2616-101/+90
| | | | | seeing as no-one checks the return value, we don't need the intermediate temporary string
* dead helper dirCaolán McNamara2012-03-269-2881/+0
|
* svl: add include path and more add_package_headersMatúš Kukan2012-03-253-4/+5
|
* reduce UniStringsCaolán McNamara2012-03-208-99/+88
|
* split macros to elide unneeded methodsCaolán McNamara2012-03-201-1/+1
|
* SfxUINT32s->std::vectorCaolán McNamara2012-03-202-18/+8
|
* Add parenthesis for avoid false report by cppcheckJulien Nabet2012-03-181-1/+1
|
* Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann2012-03-142-0/+6
| | | | | | | | | | | | | | ...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.
* callcatcher: update listCaolán McNamara2012-03-143-29/+2
|
* ditch SfxULongRangesCaolán McNamara2012-03-123-34/+0
|
* WaE: cast to pointer from integer of different sizeDavid Tardon2012-03-121-1/+2
|
* gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan2012-03-104-9/+9
|
* Convert from tools/table.hxx to std::map in SvxMacroTableDtorNoel Grandin2012-03-082-72/+98
| | | | | | | | | 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.
* String to OUString in cell.[ch]xx and follow upMarkus Mohrhard2012-03-052-0/+54
|
* fixed crashes due to transition from Table to std::mapEike Rathke2012-02-281-3/+3
| | | | | | | | | | 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.
* SfxStyleSheet needs a default ctorCaolán McNamara2012-02-282-43/+30
| | | | | | 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
* remove dangling legacy binary-compatible between-milestons temp hack nonsenseCaolán McNamara2012-02-281-2/+0
|
* SfxItemPool: replace deque with vector for SfxPoolItem arrayMichael Stahl2012-02-271-1/+1
| | | | | Yields measurable speedup on load/store of large documents, wonder where the equivalent patch i committed long time ago to OOo went...
* Removed unused codeSzabolcs Dezsi2012-02-272-30/+0
|
* drop UniString::CreateFromInt64Caolán McNamara2012-02-272-3/+3
|
* Get rid of CREATEVERSIONRESMGR[_NAME]Stephan Bergmann2012-02-231-1/+1
|
* OUString ctor for string literals without RTL_CONSTASCII stuffLuboš Luňák2012-02-221-2/+2
| | | | http://lists.freedesktop.org/archives/libreoffice/2012-February/025662.html
* gb_JunitTest_JunitTest takes only one argumentStephan Bergmann2012-02-201-1/+1
|
* Remove unused codePetr Vorel2012-02-192-10/+0
|
* Remove unused codeElton Chung2012-02-192-81/+0
|