summaryrefslogtreecommitdiff
path: root/comphelper
AgeCommit message (Collapse)AuthorFilesLines
2012-07-24mhu24: add comphelper::newArray_{null,ex} helpersMichael Stahl2-0/+58
Change-Id: If44b6e37ecaf721c6ecd9aac0e532ec2be814f50 Signed-off-by: Miklos Vajna <vmiklos@suse.cz>
2012-05-31targetted prefer prefix operators reversionMichael Meeks2-2/+2
Change-Id: I7e1ae9622bc89b584ddbb307dac15b0ed56ae563
2012-05-17merge the 5 ConstAsciiString duplicate classes togetherCaolán McNamara1-0/+14
a) merge them together and move it into comphelper b) turn it into a POD rather than having vast amounts of destructors registered into the cxa_atexit chain Change-Id: I04d3b9d7804f8e233013c916df9d617a0f84f96a
2012-05-17reduce static_initialization_and_destruction chainCaolán McNamara1-12/+3
Change-Id: Ib2642e19d9148acca27227b0d91de4e8855178aa
2012-05-04rename Library_comphelp.mk to Library_comphelper.mk...Michael Stahl2-1/+1
... so the silly broken gb_Symbols_get_all enables debug for it.
2012-04-29make gbuild the default assumption of build.plBjoern Michaelsen1-1/+0
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-18Add comment describing the meanings of the filter flag bitsTor Lillqvist1-0/+29
2012-04-18callcatcher: update listCaolán McNamara2-19/+0
2012-04-08Replaced a few equal calls with ==Szabolcs Dezsi2-7/+6
2012-04-08LinkTarget.mk: remove gb_LinkTarget_add_package_headersMichael Stahl1-1/+1
2012-04-08gbuild: "use" vs. "add":Michael Stahl3-5/+5
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 Dezsi1-6/+6
Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\) ) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
2012-04-02callcatcher: remove some unused codeCaolán McNamara2-23/+0
2012-03-29Fixes a bunch of "Prefer prefix ++/-- operators for non-primitive types"Julien Nabet1-8/+8
2012-03-29remove static OUStrings from static_initialization_and_destruction chainCaolán McNamara1-3/+3
2012-03-28removed duplicate includes in avmedia / basic / canvas / chart2 / comphelperTakeshi Abe2-2/+0
2012-03-26removed duplicate includes in basic / canvas / chart2 / comphelperTakeshi Abe2-2/+0
2012-03-20move GetFilterFlags inside ifdef WNTCaolán McNamara2-28/+28
2012-03-16Add COMPHELPER_SERVICEDECL_EXPORTS* back in, after libmerge changesThorsten Behrens1-20/+20
Did I mention I hate boilerplate copied all over the place? ;)
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann9-2/+26
...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-10Correct some mistranslated commentsStefan Knorr (astron)4-9/+9
2012-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan2-2/+2
2012-03-05Translate german comments in core/comphelperTom Thorogood5-69/+64
2012-03-04Removed dead codeMarc-André Laverdière-Papineau2-7/+0
2012-03-04Removed dead codeMarc-André Laverdière-Papineau2-7/+0
2012-02-29move template out of headerCaolán McNamara2-24/+39
2012-02-26add AddFilterNameCheckOwnFile back for WNTMatúš Kukan2-0/+22
2012-02-25Remove unused codeElton Chung20-300/+0
2012-02-25Remove unused code in basegfx, comphelperElton Chung4-48/+0
2012-02-23fdo#45560: Fixed docx textbox borders style and width importCédric Bosdonnat2-0/+3
2012-02-23Adapted AsyncEventNotifier to safer-to-use salhelper::ThreadStephan Bergmann4-55/+22
2012-02-20gb_JunitTest_JunitTest takes only one argumentStephan Bergmann1-1/+1
2012-02-19Get rid of size() == 0Elton Chung1-2/+2
2012-02-18Prefer equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("..."))Takeshi Abe1-2/+2
to equalsIgnoreAsciiCaseAscii("...")
2012-02-16Clean up AsyncEventNotifier interfaceStephan Bergmann2-12/+3
2012-02-15Various string function clean upStephan Bergmann3-398/+20
Added: * rtl::OString::matchL * rtl::OString::endsWith * rtl::OString::endsWithL * rtl::OString::indexOfL * rtl::OString::replaceFirst * rtl::OString::replaceAll * rtl::OString::getToken * rtl::OUString::endsWith * rtl::OUString::replaceFirst * rtl::OUString::replaceFirstAsciiL * rtl::OUString::replaceFirstAsciiLAsciiL * rtl::OUString::replaceAll * rtl::OUString::replaceAllAsciiL * rtl::OUString::replaceAllAsciiLAsciiL * rtl::OUString::getToken plus underlying C functions where necessary Deprecated: * comphelper::string::remove * comphelper::string::getToken Removed: * comphelper::string::searchAndReplaceAsciiL * comphelper::string::searchAndReplaceAllAsciiWithAscii * comphelper::string::searchAndReplaceAsciiI * comphelper::string::replace * comphelper::string::matchL * comphelper::string::matchIgnoreAsciiCaseL * comphelper::string::indexOfL Also fixed some apparent misuses of RTL_CONSTASCII_USTRINGPARAM -> RTL_CONSTASCII_STRINGPARAM.
2012-02-14comphelper: add getINT64Lionel Elie Mamane2-0/+9
2012-02-13Make simplified configuration API available down in comphelperStephan Bergmann2-26/+4
2012-02-13callcatcher: regenerate listCaolán McNamara1-30/+0
2012-02-10bah, we don't need these after allCaolán McNamara2-135/+0
2012-02-10extend unit test to islowerCaolán McNamara3-0/+89
2012-02-10Remove unused code.Santiago Martinez2-45/+0
2012-02-08Added (and improved) READMEs for modules which used to be in libs-guiJosh Heidenreich1-0/+1
2012-02-06Typos in method descriptions.Kohei Yoshida1-2/+2
2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud1-35/+2
2012-02-05Some cppcheck cleaningJulien Nabet1-4/+4
2012-01-31Simplify code by making getProcessComponentContext() implicit.Stephan Bergmann1-17/+18
2012-01-31Move unotools/configuration.hxx to comphelperStephan Bergmann4-0/+588
...so that other code in comphelper can use it.
2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann10-31/+18
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-17Switch flag sequence of OpenCommandArg3 to NamedValue.Thorsten Behrens1-0/+12
Based on feedback for 09954fc863c8ee900f157cab4458e1dcf51493d3, using the less-bulky NamedValue type instead of PropertyValue.