summaryrefslogtreecommitdiff
path: root/unotools
AgeCommit message (Collapse)Author
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
2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud
2012-02-01A few safe replacements of pathes->pathsJesús Corrius
2012-01-31Move unotools/configuration.hxx to comphelperStephan Bergmann
...so that other code in comphelper can use it.
2012-01-30Fixed cppheader.xsl nillable treatment.Stephan Bergmann
* cppheader.xsl had initially been written under the false assumption that a missing oor:nillable attribute defaults to "false" instead of "true". That has been fixed. * As a result, many places that use the new simplified officecfg/*.hxx headers broke as they did not expect value types to be wrapped boost::optional. To keep the code simple, I decided to change all occurrences in officecfg/registry/schema/ of properties that specify a default <value> and do not explicitly specify oor:nillable="true" to oor:nillable="false". Strictly speaking, this is an incompatible change, but in many cases it should be what was intended, anyway. * Some places that use the new simplified officecfg/*.hxx headers still had to be adapted to boost::optional wrapping. * This showed that unotools/configuration.hxx did not yet work for those wrapped properties and needed fixing, too.
2012-01-30remove '#define OUSTRING ::rtl::OUString'Ivan Timofeev
2012-01-27Replace SvtUndoOptions with (simplified) direct configuration access.Stephan Bergmann
Also, code in sw can be simplified under the premise that always /org.openoffice.Office.Common/Undo/Steps > 0.
2012-01-27drop unnecessary includeCaolán McNamara
2012-01-26Replace SvtCacheOptions with (simplified) direct configuration access.Stephan Bergmann
2012-01-26Code cleanup: ( () ) replaced by (())Alexander Bergmann
2012-01-26Replace SvtInetOptions with (simplified) direct configuration access.Stephan Bergmann
2012-01-25Replace SourceViewConfig with (simplified) direct configuration access.Stephan Bergmann
2012-01-25Add configuration wrappers for groups, too (to add listeners etc.).Stephan Bergmann
2012-01-23make unotools ByteString freeCaolán McNamara
2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann
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-20ucbhelper::GetLocalFileURL does not use its arg.Stephan Bergmann
2012-01-19Fix for fdo43460 Part XLII getLength() to isEmpty()Olivier Hallot
Part XLII Modules unotools
2012-01-18convert one freshly introduced DBG_ERRORFILE to SAL_WARNEike Rathke
2012-01-18nitpick, it's i18n, not l18nEike Rathke