Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-02-21 | fdo#44993: Remove obsolete FSysRedirector | Elton Chung | |
2012-02-20 | unusedcode.easy: some cleaning | Thomas Arnhold | |
2012-02-18 | Fix typos in comments | Elton Chung | |
2012-02-16 | callcatcher: update unused code list | Caolán McNamara | |
2012-02-15 | lock in those ByteString gains so there's no back-sliding | Caolán McNamara | |
2012-02-13 | unusedcode.easy: Removed unused code | Alexander Bergmann | |
2012-02-13 | callcatcher: regenerate list | Caolán McNamara | |
2012-02-07 | tools: fsys: Delete unused FileStat::FileStat() | Greg Kroah-Hartman | |
2012-01-30 | fdo#44981 - remove obsolete SWAPLONG macros | Noel Grandin | |
2012-01-30 | refactor ConvertLineEnd | Caolán McNamara | |
2012-01-27 | SvGlobalName::GetctorName is now redundant | Caolán McNamara | |
2012-01-25 | refresh unused code list | Caolán McNamara | |
2012-01-25 | move ugly WriteLines out of SvStream to beside sole user | Caolán McNamara | |
2012-01-24 | use write_uInt16s_FromOUString pattern | Caolán McNamara | |
2012-01-24 | use read_lenPrefixed_uInt16s_ToOUString instead of hand-rolled loops | Caolán McNamara | |
2012-01-24 | all direct OUString readers are current little endian streams | Caolán McNamara | |
2012-01-23 | fdo#44988: Remove obsolete BOOTSTRAP defines. | Thomas Collerton | |
2012-01-21 | privateise FileCopier - it is not used externally | Michael Meeks | |
2012-01-21 | Removed 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-20 | cleanup: privatise SvStream's LockFile impl. and in-line Redirector bits | Michael Meeks | |
2012-01-20 | Mempool size args are unused. | Stephan Bergmann | |
2012-01-20 | Remove some dated Windows-only debug stuff. | Stephan Bergmann | |
2012-01-19 | fix SvStream to not require a custom open or lstat method. | Michael Meeks | |
2012-01-18 | fdo#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-18 | removed some dead code | Marc-André Laverdière-Papineau | |
2012-01-17 | remove unused methods | Thomas Arnhold | |
2012-01-16 | Fix for fdo43460 Part XXXIX getLength() to isEmpty() | Olivier Hallot | |
Part XXXIX Modules testtools, toolkit, tools | |||
2012-01-16 | force users of WriteByteStringLine to explictly denote encoding | Caolán McNamara | |
2012-01-16 | force users of ReadByteStringLine to explictly denote encoding | Caolán McNamara | |
2012-01-16 | removed unused macro | Takeshi Abe | |
2012-01-13 | here calc, take ownership of this foul monstrosity only you use | Caolá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-13 | simply MSDFFReadZString and friends | Caolán McNamara | |
2012-01-13 | noone checks the return value of ReadCsvLine | Caolán McNamara | |
2012-01-12 | make it possible to create 360 degrees arc (circle) | Radek Doulik | |
2012-01-11 | callcatcher: lets trust my own tooling | Caolán McNamara | |
2012-01-10 | force users of horrific ReadUniOrByteStringLine to provide the charset | Caolán McNamara | |
2012-01-10 | Removed unused DBG_WARNING{4, 5} macros, replaced DBG_WARNINGFILE | Marcel Metz | |
2012-01-10 | Remove cruft in debug tools | Marcel Metz | |
2012-01-06 | Removed unnecessary tools/ref.hxx includes. | Marcel Metz | |
2012-01-06 | Removed unnecessary tools/link.hxx includes. | Marcel Metz | |
2012-01-06 | make ReadUniOrByteString return a string | Caolán McNamara | |
2012-01-05 | Removed unnecessary tools includes. | Marcel Metz | |
2012-01-05 | Removed unnecessary tools includes. | Marcel Metz | |
2012-01-05 | convert SvStream::WriteLine to rtl::OString | Caolán McNamara | |
2012-01-05 | ByteString->rtl::OString[Buffer] | Caolán McNamara | |
2012-01-03 | Remove unused tools function. | Marcel Metz | |
this patch removes the unused (according to OpenGrok) GetIsoFallback function from the tools module. | |||
2011-12-22 | Revert "callcatcher: Remove unused code" | August Sodora | |
This reverts commit bbad7057b2bdb614a5e97a945039323efe39c4ee. | |||
2011-12-22 | callcatcher: Remove unused code | August Sodora | |
2011-12-21 | tweak for pre language-defect #77 | Caolán McNamara | |
2011-12-21 | disentangle Read/WriteByteString OUString variants | Caolá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 |