summaryrefslogtreecommitdiffstats
path: root/sot
Commit message (Collapse)AuthorAgeFilesLines
* gbuild: "use" vs. "add":Michael Stahl2012-04-083-6/+6
| | | | | | | | | 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)
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-061-1/+1
|
* Replaced equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) with == operatorSzabolcs Dezsi2012-04-061-3/+3
| | | | | | Pattern used: find . -name "*.cxx" -exec sed -i 's/\( *\)\(else if\|if\) *( *\([^!()|&]*\)\.equalsAsciiL( *RTL_CONSTASCII_STRINGPARAM *( *\([^)]*\)) *) *)$/\1\2 ( \3 == \4 )/' \{\} \;
* always pass --headless to cppunitsLuboš Luňák2012-04-021-1/+0
| | | | | | They should not need any actual UI anyway, and most of them already pass the option manually. http://lists.freedesktop.org/archives/libreoffice/2012-March/029109.html
* ditch archaic ifdefs for gcc 2.8.1, 2.9.0 and 2.9.1Caolán McNamara2012-03-231-4/+0
|
* valgrind: fix minor leakCaolán McNamara2012-03-061-1/+9
|
* callcatcher: update listCaolán McNamara2012-03-053-7/+0
|
* unused inlineCaolán McNamara2012-03-051-1/+0
|
* Remove unused codeElton Chung2012-03-054-16/+0
|
* Remove unused codeElton Chung2012-03-012-74/+0
|
* callcatcher: update listCaolán McNamara2012-03-012-18/+0
|
* refactor upper chain test a tiny bitCaolán McNamara2012-02-291-8/+8
|
* fix storage chain loopWei Ming Khoo2012-02-292-0/+11
|
* unusedcode.easy: OwnerLock includes this featureThomas Arnhold2012-02-242-13/+0
|
* unusedcode.easy: Remove SotFactory::TestInvariant()Thomas Arnhold2012-02-246-160/+0
| | | | Also CALL_TEST_INVARIANT is never used again.
* gb_JunitTest_JunitTest takes only one argumentStephan Bergmann2012-02-201-1/+1
|
* Various string function clean upStephan Bergmann2012-02-151-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.
* fdo#39491 -I$(OUTDIR)/inc is set in SOLARINCMatúš Kukan2012-02-101-1/+0
|
* Added (and improved) READMEs for modules which used to be in libs-guiJosh Heidenreich2012-02-081-0/+1
|
* sot: Delete FileList::GetFormat as it is no longer usedGreg Kroah-Hartman2012-02-072-15/+0
|
* switch to include-based build rather than sourced-based buildNorbert Thiebaud2012-02-051-35/+2
|
* SWAPLONG -> OSL_SWAPDWORDStephan Bergmann2012-01-311-1/+1
|
* SWAPLONG -> OSL_SWAPDWORDStephan Bergmann2012-01-311-1/+1
|
* make sot ByteString freeCaolán McNamara2012-01-235-79/+68
|
* ByteString->rtl::OStringCaolán McNamara2012-01-231-2/+2
|
* Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann2012-01-2111-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.
* Fix for fdo43460 Part XXXIV getLength() to isEmpty()Olivier Hallot2012-01-113-7/+7
| | | | | | Part XXXIV Modules shell, slideshow, sot, starmath
* simplify LocalFileHelper::ConvertURLToPhysicalNameCaolán McNamara2012-01-102-3/+3
|
* simplify CharClassCaolán McNamara2012-01-091-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
* Removed unnecessary tools/debug.hxx includes.Marcel Metz2012-01-064-4/+0
|
* Removed unnecessary tools/link.hxx includes.Marcel Metz2012-01-061-0/+1
|
* gbuild: define NOMINMAX in windows.mkMichael Stahl2012-01-041-1/+1
|
* catch exception by constant referenceTakeshi Abe2011-12-262-6/+6
|
* disable min as macro under msvcCaolán McNamara2011-12-211-1/+1
|
* tweak for pre language-defect #77Caolán McNamara2011-12-211-2/+2
|
* disentangle Read/WriteByteString OUString variantsCaolán McNamara2011-12-211-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
* convert ReadByteString/WriteByteString from ByteString to OStringCaolán McNamara2011-12-211-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
* needs more work firstCaolán McNamara2011-12-211-1/+2
| | | | This reverts commit 92f396733ebc518bcb7a9eae2dd3169d333b82b9.
* bah, need to tweak for pre c++0xCaolán McNamara2011-12-211-1/+1
| | | | This reverts commit d00fc0e293852cfc019ffaffa65bee327397677b.
* disentangle Read/WriteByteString OUString variantsCaolán McNamara2011-12-211-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
* convert ReadByteString/WriteByteString from ByteString to OStringCaolán McNamara2011-12-211-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
* Revert buggy 4046a1dfc2ba5b52cab7083f4817351c647a59c3Julien Nabet2011-12-111-1/+2
|
* Remove ByteStringJulien Nabet2011-12-111-2/+1
|
* callcatcher: remove unused code post automation removalCaolán McNamara2011-12-092-1/+13
|
* Three factories in sot never usedCaolán McNamara2011-12-092-6/+2
|
* in modules, when we have a env we are in stage gbuildBjoern Michaelsen2011-12-071-0/+1
|
* normalize Red Hat, Inc. spellings, and bump to latest templateCaolán McNamara2011-12-061-7/+8
|
* move reconfigure into gbuildBjoern Michaelsen2011-11-291-1/+1
|
* Cleaned up utl::UCBContentHelper.Stephan Bergmann2011-11-281-0/+1
|
* remove precompiled_xxx.hxx/cxxNorbert Thiebaud2011-11-272-63/+0
|