summaryrefslogtreecommitdiff
path: root/svtools
AgeCommit message (Collapse)Author
2012-01-15WaE: deleting object of abstract class type with non-virtual destructorDavid Tardon
2012-01-14VALUESETITEM_SPACE is never set: remove related codeMatteo Casalin
2012-01-13Fix for fdo43460 Part XXXVII getLength() to isEmpty()Olivier Hallot
Part XXXVII Modules svtools
2012-01-13remove some tools/string.hxxCaolán McNamara
2012-01-12ditch a tools/string.hxxCaolán McNamara
2012-01-11SvStringsDtor->std::vectorAugust Sodora
2012-01-11fdo#44283: finish 8a17792f2e5 (Handle/invalid column ID cleanup)Lionel Elie Mamane
2012-01-10Remove _SVSTDARR_STRINGSISORTDTORAugust Sodora
2012-01-10callcatcher: update listCaolán McNamara
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-09translated German comments in valueset.hxxTim Hardeck
Translated German comments in svtools/inc/svtools/valueset.hxx.
2012-01-09translated German comments in valueset.cxxTim Hardeck
Translated German comments in svtools/source/control/valueset.cxx.
2012-01-07Remove unused codeAugust Sodora
2012-01-06Removed unnecessary tools/debug.hxx includes.Marcel 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-05svtools: remove unused FileDialogMichael Stahl
svtools/filedlg.hxx(88) : warning C4610: class ´FileDialog´ can never be instantiated
2012-01-06catch exception by constant referenceTakeshi Abe
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
2012-01-05Removed unnecessary tools includes.Marcel Metz
Hello lo-devs, this patch series removes a lot of unnecessary includes for the various tools header. The patches without suffix should be applied to the core repository, the .binfilter.patch suffix should be applied to the binfilter repository. I've tested the build with the configuration --enable-binfilter --enable-dbgutil --enable-debug, is this sufficient or did I miss another important configuration, that enables some conditional compiled code? I've only build this on linux-x86_64, but the patch also touches some of the mac specific code like fpicker/source/aqua/SalAquaFilePicker.mm so it would be maybe a good idea to test this patch. regards Marcel Metz
2012-01-05add a comphelper::string::getTokenCountCaolán McNamara
suitable for conversion from [Byte]String::GetTokenCount converted low-hanging variants to rtl::O[UString]::getToken loops added unit test
2012-01-05ByteString->rtl::OString[Buffer]Caolán McNamara
2012-01-05callcatcher: drop some unused methodsCaolán McNamara
2012-01-05regenerate list under OSL_DEBUG_LEVEL=2Caolán McNamara
2012-01-05WaE and build fixes for OSL_DEBUG_LEVEL == 2Caolán McNamara
2012-01-04added Kyrgyz (China) [ky-CN] to language listEike Rathke
2012-01-04gbuild: define NOMINMAX in windows.mkMichael Stahl
2012-01-02Group a common test to avoid unnecessary calculationsMatteo Casalin
2012-01-02Do not repeat the same test twiceMatteo Casalin
2012-01-02Remove unused codeMarcel Metz
Hello lo-devs, There is never an instance of mpDateTable allocated and a lot of code is never executed because of that. This patch removes the unused code. regards Marcel
2011-12-29EasyHack fdo#42454, remove code associated with unused iconsGustavo Buzzatti Pacheco
2011-12-28fdo#44204: shrink the first column in the open dialog, remove unused flagsIvan Timofeev
2011-12-25Remove unneeded tests before deleteMatteo Casalin
Pointers deleted in destructor are modified in remaining code, and already set to NULL when necessary.
2011-12-21Remove HelpAgentWindowAugust Sodora
2011-12-21build-fix for windows msvcCaolán McNamara
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-21Remove TTPropertiesAugust Sodora
2011-12-21callcatcher: remove unused classesMatúš Kukan
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-20callcatcher: Remove unused codeAugust Sodora
2011-12-19Removed COMPRESSMODE_FULL support from SvStreamMatteo Casalin