summaryrefslogtreecommitdiff
path: root/sot/source
AgeCommit message (Collapse)Author
2012-03-06valgrind: fix minor leakCaolán McNamara
2012-03-05callcatcher: update listCaolán McNamara
2012-03-05unused inlineCaolán McNamara
2012-03-05Remove unused codeElton Chung
2012-03-01Remove unused codeElton Chung
2012-03-01callcatcher: update listCaolán McNamara
2012-02-29refactor upper chain test a tiny bitCaolán McNamara
2012-02-29fix storage chain loopWei Ming Khoo
2012-02-24unusedcode.easy: OwnerLock includes this featureThomas Arnhold
2012-02-24unusedcode.easy: Remove SotFactory::TestInvariant()Thomas Arnhold
Also CALL_TEST_INVARIANT is never used again.
2012-02-15Various string function clean upStephan Bergmann
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-07sot: Delete FileList::GetFormat as it is no longer usedGreg Kroah-Hartman
2012-01-31SWAPLONG -> OSL_SWAPDWORDStephan Bergmann
2012-01-31SWAPLONG -> OSL_SWAPDWORDStephan Bergmann
2012-01-23make sot ByteString freeCaolán McNamara
2012-01-23ByteString->rtl::OStringCaolá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-11Fix for fdo43460 Part XXXIV getLength() to isEmpty()Olivier Hallot
Part XXXIV Modules shell, slideshow, sot, starmath
2012-01-10simplify LocalFileHelper::ConvertURLToPhysicalNameCaolán McNamara
2012-01-09simplify CharClassCaolán McNamara
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 Metz
2012-01-06Removed unnecessary tools/link.hxx includes.Marcel Metz
2011-12-26catch exception by constant referenceTakeshi Abe
2011-12-21tweak for pre language-defect #77Caolán McNamara
2011-12-21disentangle Read/WriteByteString OUString variantsCaolán McNamara
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 McNamara
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 McNamara
This reverts commit 92f396733ebc518bcb7a9eae2dd3169d333b82b9.
2011-12-21bah, need to tweak for pre c++0xCaolán McNamara
This reverts commit d00fc0e293852cfc019ffaffa65bee327397677b.
2011-12-21disentangle Read/WriteByteString OUString variantsCaolán McNamara
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 McNamara
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 Nabet
2011-12-11Remove ByteStringJulien Nabet
2011-12-09callcatcher: remove unused code post automation removalCaolán McNamara
2011-12-09Three factories in sot never usedCaolán McNamara
2011-11-28Cleaned up utl::UCBContentHelper.Stephan Bergmann
2011-11-27remove include of pch header from sotNorbert Thiebaud
2011-11-10ByteString->rtl::OStringCaolán McNamara
2011-10-15Resolves: fdo#41642 detect loops in StgDirStrm entry chainsCaolán McNamara
2011-10-01Document that this is known as StructuredStorageDirectoryEntry in the specCaolán McNamara
2011-09-13remove commented out CHARSET_ANSI fooCaolán McNamara
2011-08-29callcatcher: variousCaolán McNamara
2011-08-25UnoStorageHolder is never ctored, follow logical consequences of thatCaolán McNamara
2011-08-25callcatcher: yet more unused codeCaolán McNamara
2011-08-17callcatcher: remove some methodsCaolán McNamara
2011-08-04callcatcher: remove unused methodsCaolán McNamara
2011-08-02callcatcher: remove unused methodsThomas Arnhold
2011-07-29Get rid of these non-printable charsThomas Arnhold
2011-07-13init against short readsCaolán McNamara
2011-07-12Remove component_getImplementationEnvironment methodsMatus Kukan
2011-07-11callcatcher: remove unused UCBStorageStream ctorCaolán McNamara