summaryrefslogtreecommitdiff
path: root/sot
AgeCommit message (Collapse)AuthorFilesLines
2012-03-06valgrind: fix minor leakCaolán McNamara1-1/+9
2012-03-05callcatcher: update listCaolán McNamara3-7/+0
2012-03-05unused inlineCaolán McNamara1-1/+0
2012-03-05Remove unused codeElton Chung4-16/+0
2012-03-01Remove unused codeElton Chung2-74/+0
2012-03-01callcatcher: update listCaolán McNamara2-18/+0
2012-02-29refactor upper chain test a tiny bitCaolán McNamara1-8/+8
2012-02-29fix storage chain loopWei Ming Khoo2-0/+11
2012-02-24unusedcode.easy: OwnerLock includes this featureThomas Arnhold2-13/+0
2012-02-24unusedcode.easy: Remove SotFactory::TestInvariant()Thomas Arnhold6-160/+0
Also CALL_TEST_INVARIANT is never used again.
2012-02-20gb_JunitTest_JunitTest takes only one argumentStephan Bergmann1-1/+1
2012-02-15Various string function clean upStephan Bergmann1-3/+1
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-10fdo#39491 -I$(OUTDIR)/inc is set in SOLARINCMatúš Kukan1-1/+0
2012-02-08Added (and improved) READMEs for modules which used to be in libs-guiJosh Heidenreich1-0/+1
2012-02-07sot: Delete FileList::GetFormat as it is no longer usedGreg Kroah-Hartman2-15/+0
2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud1-35/+2
2012-01-31SWAPLONG -> OSL_SWAPDWORDStephan Bergmann1-1/+1
2012-01-31SWAPLONG -> OSL_SWAPDWORDStephan Bergmann1-1/+1
2012-01-23make sot ByteString freeCaolán McNamara5-79/+68
2012-01-23ByteString->rtl::OStringCaolán McNamara1-2/+2
2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann11-79/+62
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-11Fix for fdo43460 Part XXXIV getLength() to isEmpty()Olivier Hallot3-7/+7
Part XXXIV Modules shell, slideshow, sot, starmath
2012-01-10simplify LocalFileHelper::ConvertURLToPhysicalNameCaolán McNamara2-3/+3
2012-01-09simplify CharClassCaolán McNamara1-2/+1
multiple variants of toUpper (etc) some that take a non-const OUString or String and modify it some that take a const OUString or String and return a new one some that take part of a const OUString or String and return a new one
2012-01-06Removed unnecessary tools/debug.hxx includes.Marcel Metz4-4/+0
2012-01-06Removed unnecessary tools/link.hxx includes.Marcel Metz1-0/+1
2012-01-04gbuild: define NOMINMAX in windows.mkMichael Stahl1-1/+1
2011-12-26catch exception by constant referenceTakeshi Abe2-6/+6
2011-12-21disable min as macro under msvcCaolán McNamara1-1/+1
2011-12-21tweak for pre language-defect #77Caolán McNamara1-2/+2
2011-12-21disentangle Read/WriteByteString OUString variantsCaolán McNamara1-1/+1
The ones which use a definite 8-bit encoding read/write pascal-style strings with a 16bit length prefix. The ones which use a definite 16-bit encoding read/write pascal-style UTF-16 strings with a 32bit length prefix, i.e. not ByteStrings at all The "I dunno" ones might be UTF-16 strings or 8-bit strings, depending on the charset. Rename to ReadUniOrByteString like the other similar horrors to flag this misery
2011-12-21convert ReadByteString/WriteByteString from ByteString to OStringCaolán McNamara1-2/+1
Nobody ever used the return values anyway, so for reading just return the string and for writing the number of bytes written Doesn't need to be members, make standalone functions Rename to read_lenPrefixed_uInt8s_ToO[U]String and write_lenPrefixed_uInt8s_FromO[U]String, lengthy, but much less unambiguous, seeing as a lot of users of it don't seem to be aware that they read/write pascal-style length prefixed strings, which isn't surprising given the apparent simplicity of their original name. added a unit test
2011-12-21needs more work firstCaolán McNamara1-1/+2
This reverts commit 92f396733ebc518bcb7a9eae2dd3169d333b82b9.
2011-12-21bah, need to tweak for pre c++0xCaolán McNamara1-1/+1
This reverts commit d00fc0e293852cfc019ffaffa65bee327397677b.
2011-12-21disentangle Read/WriteByteString OUString variantsCaolán McNamara1-1/+1
The ones which use a definite 8-bit encoding read/write pascal-style strings with a 16bit length prefix. The ones which use a definite 16-bit encoding read/write pascal-style UTF-16 strings with a 32bit length prefix, i.e. not ByteStrings at all The "I dunno" ones might be UTF-16 strings or 8-bit strings, depending on the charset. Rename to ReadUniOrByteString like the other similar horrors to flag this misery
2011-12-21convert ReadByteString/WriteByteString from ByteString to OStringCaolán McNamara1-2/+1
Nobody ever used the return values anyway, so for reading just return the string and for writing the number of bytes written Doesn't need to be members, make standalone functions Rename to read_lenPrefixed_uInt8s_ToO[U]String and write_lenPrefixed_uInt8s_FromO[U]String, lengthy, but much less unambiguous, seeing as a lot of users of it don't seem to be aware that they read/write pascal-style length prefixed strings, which isn't surprising given the apparent simplicity of their original name. added a unit test
2011-12-11Revert buggy 4046a1dfc2ba5b52cab7083f4817351c647a59c3Julien Nabet1-1/+2
2011-12-11Remove ByteStringJulien Nabet1-2/+1
2011-12-09callcatcher: remove unused code post automation removalCaolán McNamara2-1/+13
2011-12-09Three factories in sot never usedCaolán McNamara2-6/+2
2011-12-07in modules, when we have a env we are in stage gbuildBjoern Michaelsen1-0/+1
2011-12-06normalize Red Hat, Inc. spellings, and bump to latest templateCaolán McNamara1-7/+8
2011-11-29move reconfigure into gbuildBjoern Michaelsen1-1/+1
2011-11-28Cleaned up utl::UCBContentHelper.Stephan Bergmann1-0/+1
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 sotNorbert Thiebaud21-40/+0
2011-11-27remove pre-compiled header support in gbuild and gbuildified moduleNorbert Thiebaud1-2/+0
2011-11-25make gbuild makefiles run independant of pwd againBjoern Michaelsen1-1/+1
2011-11-16tweak gbuild standart Makefile to allow partial build in unsourced envNorbert Thiebaud1-4/+4
This allow to run make in a module wihtout the need to source Env.Host.sh.