summaryrefslogtreecommitdiffstats
path: root/unotools/source
Commit message (Collapse)AuthorAgeFilesLines
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-063-7/+3
|
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-061-8/+8
| | | | | | 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-062-11/+11
| | | | | | 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-052-12/+11
|
* remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2012-03-281-14/+13
|
* remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2012-03-281-57/+58
|
* fold historyoptions_const.hxx into historyoptions.cxxCaolán McNamara2012-03-281-1/+16
|
* remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara2012-03-281-73/+73
|
* fold useroptions_const.hxx into useroptions.cxxCaolán McNamara2012-03-281-1/+23
|
* callcatcher: remove some unused codeCaolán McNamara2012-03-121-5/+0
|
* leak in IMHandler::signalIMPreeditChanged early returnCaolán McNamara2012-03-061-7/+0
|
* remove TransliterationWrapper::compareSubstringCaolán McNamara2012-03-062-20/+7
|
* New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann2012-03-011-1/+1
| | | | | ...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
* WaE: 'unused' attribute ignored when parsing typeTor Lillqvist2012-03-011-1/+1
|
* drop UniString::CreateFromInt64Caolán McNamara2012-02-271-1/+1
|
* Prefer equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("..."))Takeshi Abe2012-02-211-2/+2
| | | | to equalsIgnoreAsciiCaseAscii("...")
* Remove unused codePetr Vorel2012-02-191-16/+0
|
* Fix typos in commentsElton Chung2012-02-181-1/+1
|
* WaE: unused variablesCaolán McNamara2012-02-171-4/+4
|
* Remove unused codeElton Chung2012-02-103-76/+0
|
* utl: delete unused NodeValueAccessor::bind() methodGreg Kroah-Hartman2012-02-091-10/+0
|
* update unused listCaolán McNamara2012-02-081-5/+0
|
* A few safe replacements of pathes->pathsJesús Corrius2012-02-015-10/+10
|
* Move unotools/configuration.hxx to comphelperStephan Bergmann2012-01-311-232/+0
| | | | ...so that other code in comphelper can use it.
* Replace SvtUndoOptions with (simplified) direct configuration access.Stephan Bergmann2012-01-272-206/+0
| | | | | Also, code in sw can be simplified under the premise that always /org.openoffice.Office.Common/Undo/Steps > 0.
* drop unnecessary includeCaolán McNamara2012-01-271-4/+5
|
* Replace SvtCacheOptions with (simplified) direct configuration access.Stephan Bergmann2012-01-262-494/+0
|
* Replace SvtInetOptions with (simplified) direct configuration access.Stephan Bergmann2012-01-262-490/+0
|
* Replace SourceViewConfig with (simplified) direct configuration access.Stephan Bergmann2012-01-252-247/+0
|
* Add configuration wrappers for groups, too (to add listeners etc.).Stephan Bergmann2012-01-251-0/+25
|
* make unotools ByteString freeCaolán McNamara2012-01-231-2/+2
|
* Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann2012-01-215-15/+16
| | | | | | | | | 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.
* ucbhelper::GetLocalFileURL does not use its arg.Stephan Bergmann2012-01-201-2/+2
|
* Fix for fdo43460 Part XLII getLength() to isEmpty()Olivier Hallot2012-01-1914-68/+68
| | | | | | Part XLII Modules unotools
* convert one freshly introduced DBG_ERRORFILE to SAL_WARNEike Rathke2012-01-181-8/+2
|
* nitpick, it's i18n, not l18nEike Rathke2012-01-184-37/+37
|
* Replaced SAL_INFO with SAL_WARN were applicable.Marcel Metz2012-01-1717-99/+99
|
* Replaced DBG_ERRORFILE with SAL_INFO.Marcel Metz2012-01-1617-368/+105
|
* bumped locale data wrapper to use XLocaleData4 and provide date acceptance ↵Eike Rathke2012-01-111-1/+24
| | | | patterns
* Use SAL_N_ELEMENTSThomas Arnhold2012-01-101-1/+1
| | | | | | | | Some more like Thorstens diff 9c59cd15b150638c845bbc275b9b04460afc23bd Done with some regex magic (and a check if this var is an array): s/sizeof\(\s*$var\s*\)\s*\/\s*sizeof\(\s*\*$var\s*/SAL_N_ELEMENTS\($var/gs
* simplify LocalFileHelper::ConvertURLToPhysicalNameCaolán McNamara2012-01-104-27/+23
|
* simplify CharClassCaolán McNamara2012-01-091-27/+8
| | | | | | | multiple variants of toUpper (etc) some that take a non-const OUString or String and modify it some that take a const OUString or String and return a new one some that take part of a const OUString or String and return a new one
* catch exception by constant referenceTakeshi Abe2012-01-088-33/+20
|
* Removed unnecessary tools/debug.hxx includes.Marcel Metz2012-01-069-9/+0
|
* Removed unnecessary tools includes.Marcel Metz2012-01-051-1/+0
|
* Removed unnecessary tools includes.Marcel Metz2012-01-054-4/+0
|
* Removed unnecessary tools includes.Marcel Metz2012-01-056-6/+0
|
* add a comphelper::string::getTokenCountCaolán McNamara2012-01-051-11/+22
| | | | | | suitable for conversion from [Byte]String::GetTokenCount converted low-hanging variants to rtl::O[UString]::getToken loops added unit test
* Do not export whole class to avoid MS C++ implicitly exporting base template.Stephan Bergmann2012-01-042-3/+10
|
* Dead code.Stephan Bergmann2012-01-041-57/+0
|