Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-01-18 | fdo#39428 Remove/audit SvStream operator>>/<<(long) | Keith McRae | |
Replaced calls to operator<<(long) with sal::static_int_cast<sal_Int32> Replaced calls to operator>>(long) with operator>>(sal_Int32) | |||
2012-01-17 | Replaced SAL_INFO with SAL_WARN were applicable. | Marcel Metz | |
2012-01-16 | Fix #ifdef SAL_LOG_INFO region. | Stephan Bergmann | |
2012-01-16 | Replaced DBG_ERRORFILE with SAL_INFO. | Marcel Metz | |
2012-01-15 | WaE: deleting object of abstract class type with non-virtual destructor | David Tardon | |
2012-01-15 | WaE: deleting object of abstract class type with non-virtual destructor | David Tardon | |
2012-01-15 | WaE: deleting object of abstract class type with non-virtual destructor | David Tardon | |
2012-01-14 | VALUESETITEM_SPACE is never set: remove related code | Matteo Casalin | |
2012-01-13 | Fix for fdo43460 Part XXXVII getLength() to isEmpty() | Olivier Hallot | |
Part XXXVII Modules svtools | |||
2012-01-13 | remove some tools/string.hxx | Caolán McNamara | |
2012-01-12 | ditch a tools/string.hxx | Caolán McNamara | |
2012-01-11 | SvStringsDtor->std::vector | August Sodora | |
2012-01-11 | fdo#44283: finish 8a17792f2e5 (Handle/invalid column ID cleanup) | Lionel Elie Mamane | |
2012-01-10 | Remove _SVSTDARR_STRINGSISORTDTOR | August Sodora | |
2012-01-10 | callcatcher: update list | Caolán McNamara | |
2012-01-10 | simplify LocalFileHelper::ConvertURLToPhysicalName | Caolán McNamara | |
2012-01-09 | simplify CharClass | Caolá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-09 | translated German comments in valueset.hxx | Tim Hardeck | |
Translated German comments in svtools/inc/svtools/valueset.hxx. | |||
2012-01-09 | translated German comments in valueset.cxx | Tim Hardeck | |
Translated German comments in svtools/source/control/valueset.cxx. | |||
2012-01-07 | Remove unused code | August Sodora | |
2012-01-06 | Removed unnecessary tools/debug.hxx includes. | 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 | svtools: remove unused FileDialog | Michael Stahl | |
svtools/filedlg.hxx(88) : warning C4610: class ´FileDialog´ can never be instantiated | |||
2012-01-06 | catch exception by constant reference | Takeshi Abe | |
2012-01-05 | Removed unnecessary tools includes. | Marcel Metz | |
2012-01-05 | Removed unnecessary tools includes. | Marcel Metz | |
2012-01-05 | Removed unnecessary tools includes. | Marcel Metz | |
2012-01-05 | Removed 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-05 | add a comphelper::string::getTokenCount | Caolán McNamara | |
suitable for conversion from [Byte]String::GetTokenCount converted low-hanging variants to rtl::O[UString]::getToken loops added unit test | |||
2012-01-05 | ByteString->rtl::OString[Buffer] | Caolán McNamara | |
2012-01-05 | callcatcher: drop some unused methods | Caolán McNamara | |
2012-01-05 | regenerate list under OSL_DEBUG_LEVEL=2 | Caolán McNamara | |
2012-01-05 | WaE and build fixes for OSL_DEBUG_LEVEL == 2 | Caolán McNamara | |
2012-01-04 | added Kyrgyz (China) [ky-CN] to language list | Eike Rathke | |
2012-01-04 | gbuild: define NOMINMAX in windows.mk | Michael Stahl | |
2012-01-02 | Group a common test to avoid unnecessary calculations | Matteo Casalin | |
2012-01-02 | Do not repeat the same test twice | Matteo Casalin | |
2012-01-02 | Remove unused code | Marcel 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-29 | EasyHack fdo#42454, remove code associated with unused icons | Gustavo Buzzatti Pacheco | |
2011-12-28 | fdo#44204: shrink the first column in the open dialog, remove unused flags | Ivan Timofeev | |
2011-12-25 | Remove unneeded tests before delete | Matteo Casalin | |
Pointers deleted in destructor are modified in remaining code, and already set to NULL when necessary. | |||
2011-12-21 | Remove HelpAgentWindow | August Sodora | |
2011-12-21 | build-fix for windows msvc | Caolán McNamara | |
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 | |||
2011-12-21 | convert ReadByteString/WriteByteString from ByteString to OString | Caolá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-21 | Remove TTProperties | August Sodora | |
2011-12-21 | callcatcher: remove unused classes | Matúš Kukan | |