summaryrefslogtreecommitdiff
path: root/rsc
AgeCommit message (Collapse)AuthorFilesLines
2012-09-28gbuild: invert handling of standard system libraries:Michael Stahl1-2/+0
Always link in gb_STDLIBS, except when the library explicitly opts out with gb_LinkTarget_disable_standard_system_libs. Change-Id: I489a99114fbfa46d0421a27cf6c7b899dc268a4a
2012-09-28gbuild: replace direct gb_STDLIBS use with ...Michael Stahl1-1/+2
... new gb_LinkTarget_add_standard_system_libs Change-Id: Ib2bc843098db3d8c6822b45a3d21724e67f57d69
2012-09-28gbuild: split uwinapi out of gb_STDLIBSMichael Stahl1-0/+1
Change-Id: I53316e0b9369d806197bccb42cf22d3497af43e7
2012-08-18remove some useless commentsThomas Arnhold1-1/+0
Change-Id: Ied223890539a3407abbed7c7135dfc3de2f2fe48 Reviewed-on: https://gerrit.libreoffice.org/429 Reviewed-by: Philipp Riemer <ruderphilipp@gmail.com> Tested-by: Philipp Riemer <ruderphilipp@gmail.com>
2012-08-14-Werror,-Wunused-private-field (Clang towards 3.2)Stephan Bergmann1-1/+0
Change-Id: Icf1c673acb703e6518f4d65994b76c6374c16f1e
2012-08-08STL'ify UniqueIndexNoel Grandin4-65/+69
Convert the UniqueIndex code from a macro to a C++ template. Also use std::map as the underlying container instead of tools/contnr.hxx. Change-Id: I0b7b37dd7160ae019aaecdacd1e973ac6d8498e2
2012-08-07Remove non-existing forward declarationsThomas Arnhold1-1/+0
Those classes don't exist. So remove friend class operators too. Change-Id: I8e3b32db933dea7cbab86015f0c926df967511f6
2012-07-30Typo ressource -> resourceStephan Bergmann3-5/+5
Change-Id: Id13e7acfbe34eca5e124c9032d36d6f158bfb831
2012-07-26remove unused border stylesIvan Timofeev2-4/+0
Change-Id: I4b01bdaf4fc20a55f2b4e9ebd039220031c03f11
2012-07-02targetted improvement of UNO API includes / usageMichael Meeks1-4/+1
2012-06-25re-base on ALv2 code.Michael Meeks54-1255/+769
2012-06-25removed unused forward declarations of classTakeshi Abe1-1/+0
Change-Id: I814f8bdf4e4015f8e4eea34533db4ed8d6a7496e
2012-06-21re-base on ALv2 code.Michael Meeks5-118/+73
Change-Id: I6c145e984c885c7e06caa1c27bfb354ea49ad9ce
2012-06-19remove some UniString ctorsCaolán McNamara1-10/+10
Change-Id: Ic2e712f4447b733b79d980e178d9d6d9d8bf0e40
2012-06-07nuke dead codeTakeshi Abe1-12/+0
Change-Id: Id9920ea7b82ea178e904f78bbd41ffc434813e0b
2012-05-25WaE: return value of fwrite uncheckedCaolán McNamara1-12/+12
Change-Id: Ib3713290a7dcd4bbbb58232d144e35694653a4a5
2012-05-03WaE: ignoring return value of fwriteCaolán McNamara1-4/+8
Change-Id: I289564b8f41bbae976853aa3994751d3092ff44d
2012-04-29make gbuild the default assumption of build.plBjoern Michaelsen2-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-16YaccTarget and headers cleaningMatúš Kukan1-3/+0
2012-04-08gbuild: "use" vs. "add":Michael Stahl1-2/+2
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-02Resolves: fdo#48129 maLangStr can have trailing nullsCaolán McNamara1-2/+2
2012-02-15Various string function clean upStephan Bergmann1-5/+4
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-08Add and expand more readme files for module documentationMichael Meeks1-8/+30
2012-02-08Added (and improved) READMEs for modules which used to be in libs-guiJosh Heidenreich1-0/+10
2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud1-35/+2
2012-02-01A few safe replacements of pathes->pathsJesús Corrius1-1/+1
2012-01-30fdo#44981 - remove obsolete SWAPLONG macrosNoel Grandin1-3/+3
2012-01-23ByteString->rtl::OStringCaolán McNamara1-19/+24
2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann5-30/+20
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-05Removed unnecessary tools includes.Marcel Metz3-2/+3
2012-01-05add a comphelper::string::getTokenCountCaolán McNamara1-1/+2
suitable for conversion from [Byte]String::GetTokenCount converted low-hanging variants to rtl::O[UString]::getToken loops added unit test
2012-01-05WaE and build errors with OSL_DEBUG_LEVEL == 2Caolán McNamara2-2/+4
2012-01-03Remove unused tools function.Marcel Metz1-1/+0
this patch removes the unused (according to OpenGrok) GetIsoFallback function from the tools module.
2012-01-02Fix for fdo43460 Part XXVII getLength() to isEmpty()Olivier Hallot3-31/+31
Please find attached a partial fix for Easy Hack FDO43460 Part XXVII Modules padmin, pyuno, rdbmaker, regexp, registry, rsc, sal
2011-12-12ditch some ByteStringsCaolán McNamara2-24/+28
2011-12-12ByteString->rtl::OStringCaolán McNamara7-68/+64
2011-12-12aPathName unusedCaolán McNamara1-1/+0
2011-12-12aString unusedCaolán McNamara1-1/+0
2011-12-12ByteString->rtl::OStringCaolán McNamara21-157/+156
2011-12-08childs -> childrenMichael T. Whiteley1-3/+3
2011-12-07in modules, when we have a env we are in stage gbuildBjoern Michaelsen1-0/+1
2011-12-06Removed unnessecary tools/table.hxx includesMarcel Metz1-2/+0
2011-12-06ByteString->rtl::OString[Buffer]Caolán McNamara7-31/+35
2011-11-29move reconfigure into gbuildBjoern Michaelsen1-1/+1
2011-11-29no need for OrderCtrl anymoreCaolán McNamara1-28/+0
2011-11-28callcatcher: remove unused methodsCaolán McNamara2-8/+0
2011-11-28ByteString->rtl::OString[Buffer]Caolán McNamara9-29/+37
2011-11-27remove precompiled_xxx.hxx/cxxNorbert Thiebaud2-63/+0
2011-11-27remove pch from the include listNorbert Thiebaud1-1/+0
2011-11-27remove include of pch header from rscNorbert Thiebaud30-58/+0