summaryrefslogtreecommitdiffstats
path: root/rsc
Commit message (Collapse)AuthorAgeFilesLines
* remove some useless commentsThomas Arnhold2012-08-181-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>
* -Werror,-Wunused-private-field (Clang towards 3.2)Stephan Bergmann2012-08-141-1/+0
| | | | Change-Id: Icf1c673acb703e6518f4d65994b76c6374c16f1e
* STL'ify UniqueIndexNoel Grandin2012-08-084-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
* Remove non-existing forward declarationsThomas Arnhold2012-08-071-1/+0
| | | | | | Those classes don't exist. So remove friend class operators too. Change-Id: I8e3b32db933dea7cbab86015f0c926df967511f6
* Typo ressource -> resourceStephan Bergmann2012-07-303-5/+5
| | | | Change-Id: Id13e7acfbe34eca5e124c9032d36d6f158bfb831
* remove unused border stylesIvan Timofeev2012-07-262-4/+0
| | | | Change-Id: I4b01bdaf4fc20a55f2b4e9ebd039220031c03f11
* targetted improvement of UNO API includes / usageMichael Meeks2012-07-021-4/+1
|
* re-base on ALv2 code.Michael Meeks2012-06-2554-1255/+769
|
* removed unused forward declarations of classTakeshi Abe2012-06-251-1/+0
| | | | Change-Id: I814f8bdf4e4015f8e4eea34533db4ed8d6a7496e
* re-base on ALv2 code.Michael Meeks2012-06-215-118/+73
| | | | Change-Id: I6c145e984c885c7e06caa1c27bfb354ea49ad9ce
* remove some UniString ctorsCaolán McNamara2012-06-191-10/+10
| | | | Change-Id: Ic2e712f4447b733b79d980e178d9d6d9d8bf0e40
* nuke dead codeTakeshi Abe2012-06-071-12/+0
| | | | Change-Id: Id9920ea7b82ea178e904f78bbd41ffc434813e0b
* WaE: return value of fwrite uncheckedCaolán McNamara2012-05-251-12/+12
| | | | Change-Id: Ib3713290a7dcd4bbbb58232d144e35694653a4a5
* WaE: ignoring return value of fwriteCaolán McNamara2012-05-031-4/+8
| | | | Change-Id: I289564b8f41bbae976853aa3994751d3092ff44d
* make gbuild the default assumption of build.plBjoern Michaelsen2012-04-292-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
* YaccTarget and headers cleaningMatúš Kukan2012-04-161-3/+0
|
* gbuild: "use" vs. "add":Michael Stahl2012-04-081-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)
* Resolves: fdo#48129 maLangStr can have trailing nullsCaolán McNamara2012-04-021-2/+2
|
* Various string function clean upStephan Bergmann2012-02-151-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.
* Add and expand more readme files for module documentationMichael Meeks2012-02-081-8/+30
|
* Added (and improved) READMEs for modules which used to be in libs-guiJosh Heidenreich2012-02-081-0/+10
|
* switch to include-based build rather than sourced-based buildNorbert Thiebaud2012-02-051-35/+2
|
* A few safe replacements of pathes->pathsJesús Corrius2012-02-011-1/+1
|
* fdo#44981 - remove obsolete SWAPLONG macrosNoel Grandin2012-01-301-3/+3
|
* ByteString->rtl::OStringCaolán McNamara2012-01-231-19/+24
|
* Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann2012-01-215-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.
* Removed unnecessary tools includes.Marcel Metz2012-01-053-2/+3
|
* add a comphelper::string::getTokenCountCaolán McNamara2012-01-051-1/+2
| | | | | | suitable for conversion from [Byte]String::GetTokenCount converted low-hanging variants to rtl::O[UString]::getToken loops added unit test
* WaE and build errors with OSL_DEBUG_LEVEL == 2Caolán McNamara2012-01-052-2/+4
|
* Remove unused tools function.Marcel Metz2012-01-031-1/+0
| | | | | this patch removes the unused (according to OpenGrok) GetIsoFallback function from the tools module.
* Fix for fdo43460 Part XXVII getLength() to isEmpty()Olivier Hallot2012-01-023-31/+31
| | | | | | | | Please find attached a partial fix for Easy Hack FDO43460 Part XXVII Modules padmin, pyuno, rdbmaker, regexp, registry, rsc, sal
* ditch some ByteStringsCaolán McNamara2011-12-122-24/+28
|
* ByteString->rtl::OStringCaolán McNamara2011-12-127-68/+64
|
* aPathName unusedCaolán McNamara2011-12-121-1/+0
|
* aString unusedCaolán McNamara2011-12-121-1/+0
|
* ByteString->rtl::OStringCaolán McNamara2011-12-1221-157/+156
|
* childs -> childrenMichael T. Whiteley2011-12-081-3/+3
|
* in modules, when we have a env we are in stage gbuildBjoern Michaelsen2011-12-071-0/+1
|
* Removed unnessecary tools/table.hxx includesMarcel Metz2011-12-061-2/+0
|
* ByteString->rtl::OString[Buffer]Caolán McNamara2011-12-067-31/+35
|
* move reconfigure into gbuildBjoern Michaelsen2011-11-291-1/+1
|
* no need for OrderCtrl anymoreCaolán McNamara2011-11-291-28/+0
|
* callcatcher: remove unused methodsCaolán McNamara2011-11-282-8/+0
|
* ByteString->rtl::OString[Buffer]Caolán McNamara2011-11-289-29/+37
|
* remove precompiled_xxx.hxx/cxxNorbert Thiebaud2011-11-272-63/+0
|
* remove pch from the include listNorbert Thiebaud2011-11-271-1/+0
|
* remove include of pch header from rscNorbert Thiebaud2011-11-2730-58/+0
|
* remove pre-compiled header support in gbuild and gbuildified moduleNorbert Thiebaud2011-11-271-2/+0
|
* Remove unnecessary tools/stack.hxx includeAugust Sodora2011-11-261-1/+0
|
* BIG_ENDIAN was never setFrançois Tigeot2011-11-252-19/+0
| | | | Remove its conditional code