summaryrefslogtreecommitdiff
path: root/tools/inc
AgeCommit message (Collapse)Author
2012-02-21fdo#44993: Remove obsolete FSysRedirectorElton Chung
2012-02-20unusedcode.easy: some cleaningThomas Arnhold
2012-02-18Fix typos in commentsElton Chung
2012-02-16callcatcher: update unused code listCaolán McNamara
2012-02-15lock in those ByteString gains so there's no back-slidingCaolán McNamara
2012-02-13unusedcode.easy: Removed unused codeAlexander Bergmann
2012-02-13callcatcher: regenerate listCaolán McNamara
2012-02-07tools: fsys: Delete unused FileStat::FileStat()Greg Kroah-Hartman
2012-01-30fdo#44981 - remove obsolete SWAPLONG macrosNoel Grandin
2012-01-30refactor ConvertLineEndCaolán McNamara
2012-01-27SvGlobalName::GetctorName is now redundantCaolán McNamara
2012-01-25refresh unused code listCaolán McNamara
2012-01-25move ugly WriteLines out of SvStream to beside sole userCaolán McNamara
2012-01-24use write_uInt16s_FromOUString patternCaolán McNamara
2012-01-24use read_lenPrefixed_uInt16s_ToOUString instead of hand-rolled loopsCaolán McNamara
2012-01-24all direct OUString readers are current little endian streamsCaolán McNamara
2012-01-23fdo#44988: Remove obsolete BOOTSTRAP defines.Thomas Collerton
2012-01-21privateise FileCopier - it is not used externallyMichael Meeks
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-20cleanup: privatise SvStream's LockFile impl. and in-line Redirector bitsMichael Meeks
2012-01-20Mempool size args are unused.Stephan Bergmann
2012-01-20Remove some dated Windows-only debug stuff.Stephan Bergmann
2012-01-19fix SvStream to not require a custom open or lstat method.Michael Meeks
2012-01-18fdo#39428 Remove/audit SvStream operator>>/<<(long)Keith McRae
Removed declarations & definitions for operator<<(long),(int)&(short) Removed declarations & definitions for operator>>(long),(int)&(short) Added (where necessary) operator<< for sal_Int & sal_uInt types Added (where necessary) operator>> for sal_Int & sal_uInt types Added SwapInt64 function, basically a copy of SwapUInt64
2012-01-18removed some dead codeMarc-André Laverdière-Papineau
2012-01-17remove unused methodsThomas Arnhold
2012-01-16Fix for fdo43460 Part XXXIX getLength() to isEmpty()Olivier Hallot
Part XXXIX Modules testtools, toolkit, tools
2012-01-16force users of WriteByteStringLine to explictly denote encodingCaolán McNamara
2012-01-16force users of ReadByteStringLine to explictly denote encodingCaolán McNamara
2012-01-16removed unused macroTakeshi Abe
2012-01-13here calc, take ownership of this foul monstrosity only you useCaolán McNamara
SvStream::ReadCsvLine doesn't need to be a member of Stream and the subcomment about what's wrong with the method is longer than the body of the method. Only used by calc, so can go into calc. foul monstrosity back
2012-01-13simply MSDFFReadZString and friendsCaolán McNamara
2012-01-13noone checks the return value of ReadCsvLineCaolán McNamara
2012-01-12make it possible to create 360 degrees arc (circle)Radek Doulik
2012-01-11callcatcher: lets trust my own toolingCaolán McNamara
2012-01-10force users of horrific ReadUniOrByteStringLine to provide the charsetCaolán McNamara
2012-01-10Removed unused DBG_WARNING{4, 5} macros, replaced DBG_WARNINGFILEMarcel Metz
2012-01-10Remove cruft in debug toolsMarcel Metz
2012-01-06Removed unnecessary tools/ref.hxx includes.Marcel Metz
2012-01-06Removed unnecessary tools/link.hxx includes.Marcel Metz
2012-01-06make ReadUniOrByteString return a stringCaolán McNamara
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05convert SvStream::WriteLine to rtl::OStringCaolán McNamara
2012-01-05ByteString->rtl::OString[Buffer]Caolán McNamara
2012-01-03Remove unused tools function.Marcel Metz
this patch removes the unused (according to OpenGrok) GetIsoFallback function from the tools module.
2011-12-22Revert "callcatcher: Remove unused code"August Sodora
This reverts commit bbad7057b2bdb614a5e97a945039323efe39c4ee.
2011-12-22callcatcher: Remove unused codeAugust Sodora
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