summaryrefslogtreecommitdiff
path: root/unotools
AgeCommit message (Collapse)Author
2012-06-02targeted string re-workNorbert Thiebaud
Change-Id: I1af89db47fb3e387b5b83a86424bfac44eb28135
2012-05-30targeted string re-workNorbert Thiebaud
Change-Id: I3ef48c34e9e0e1c0e567b013b55a630ee1c7e9c5
2012-05-24removed unused const char[]Takeshi Abe
Change-Id: Ia5f26c13e7bae42685230769fa86b52703eb2f7e
2012-05-17removed unused const rtl::OUStringTakeshi Abe
Change-Id: I7c3409ac39e690fcf2f7e4085bf6857e6bd182fb
2012-05-16fdo#46074 fdo#49948 Ignore corrupted items in Recent DocumentsStephan Bergmann
...following up on 4ccb4bda483eb548eb6efb5e2f1952f094522320 "fdo#46074 Ignore corrupted items in Recent Documents" with another problematic scenario found with fdo#49948. Change-Id: I3e7c803813f09c1f031defc2c18cfab6732b1621
2012-05-16Unwound unhelpful LogHelper::logItStephan Bergmann
...where the OSL_FAIL line numbers did not point at the relevant code. Change-Id: I4d12d63782378cbbc446cdcd77c07676ffc81d78
2012-05-06nuke dead codeTakeshi Abe
Change-Id: Ic7110a2d589c5be60c2beae1fa8c9e7ed6d63c04
2012-05-06removed unused definesTakeshi Abe
Change-Id: Ibb6141776fc3a418095b7184c7dacfba70dd7238
2012-05-04fdo#48253 Expand SAL_STATIC_CAST and SAL_CONST_CASTThomas Arnhold
Change-Id: I50f0887ceb4517d7ef234f970ca2ba679d533382
2012-05-02!= instead of < for comparison with end iteratorJulien Nabet
Change-Id: I7baa34c1cf7161fb55914d41b451b842ad4ab0c8
2012-04-29make gbuild the default assumption of build.plBjoern Michaelsen
this removes dmake completely out of the build for migrated modules build.pl now assumes modules to be gbuild, unless there is a prj/dmake file Change-Id: I674a036b182ee13c5ec093e83cb3d38133112d3b
2012-04-21Replace css macro with namespace for nicer namespacingThomas Arnhold
2012-04-20fdo#46074 Ignore corrupted items in Recent DocumentsStephan Bergmann
2012-04-19Improved error reportingStephan Bergmann
2012-04-10fix typoCaolán McNamara
2012-04-10add a getBuildVersion helperCaolán McNamara
2012-04-09s/pathes/paths/Tor Lillqvist
2012-04-09s/pathes/paths/Tor Lillqvist
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-03-28remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara
2012-03-28remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara
2012-03-28fold historyoptions_const.hxx into historyoptions.cxxCaolán McNamara
2012-03-28don't have to deliver historyoptions_const.hxxCaolán McNamara
2012-03-28remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara
2012-03-28fold useroptions_const.hxx into useroptions.cxxCaolán McNamara
2012-03-28don't need to export useroptions_const.hxxCaolán McNamara
2012-03-21chmod -xTor Lillqvist
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-12callcatcher: remove some unused codeCaolán McNamara
2012-03-06leak in IMHandler::signalIMPreeditChanged early returnCaolán McNamara
2012-03-06remove TransliterationWrapper::compareSubstringCaolán McNamara
2012-03-01New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann
...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
2012-03-01WaE: 'unused' attribute ignored when parsing typeTor Lillqvist
2012-02-27drop UniString::CreateFromInt64Caolán McNamara
2012-02-21expand and remove NS_* macroThomas Arnhold
2012-02-21Prefer equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("..."))Takeshi Abe
to equalsIgnoreAsciiCaseAscii("...")
2012-02-20gb_JunitTest_JunitTest takes only one argumentStephan Bergmann
2012-02-19Remove unused codePetr Vorel
2012-02-18Fix typos in commentsElton Chung
2012-02-17WaE: unused variablesCaolán McNamara
2012-02-10fdo#39491 -I$(OUTDIR)/inc is set in SOLARINCMatúš Kukan
2012-02-10Remove unused codeElton Chung
2012-02-09utl: delete unused NodeValueAccessor::bind() methodGreg Kroah-Hartman
2012-02-08update unused listCaolán McNamara
2012-02-08Added (and improved) READMEs for modules which used to be in libs-guiJosh Heidenreich