summaryrefslogtreecommitdiff
path: root/sfx2
AgeCommit message (Collapse)Author
2012-01-18fdo#37740 remove duplicate icons from soffice.bin/soffice.exeAndras Timar
2012-01-17Replaced SAL_INFO with SAL_WARN were applicable.Marcel Metz
2012-01-17remove unused methodsThomas Arnhold
2012-01-17drop no-opt castCaolán McNamara
2012-01-17Avoid compilation problem.Stephan Bergmann
2012-01-16Remove *_OBJSTACK, *_OBJARRAYAugust Sodora
2012-01-16Remove unused SV_DECL_PTRARR_DELAugust Sodora
2012-01-16Replaced DBG_ERRORFILE with SAL_INFO.Marcel Metz
2012-01-16e the new way to access the configMarkus Mohrhard
2012-01-15WaE: deleting object of abstract class type with non-virtual destructorDavid Tardon
2012-01-15don't create lock files for unit testsMarkus Mohrhard
special thanks to Stephan for the configuration part
2012-01-12SvStringsDtor->std::vectorAugust Sodora
2012-01-11SvStringsDtor->std::vectorAugust Sodora
2012-01-11Remove unused localsAugust Sodora
2012-01-11Remove unnecessary forward declarationAugust Sodora
2012-01-11SvStringsDtor->std::vectorAugust Sodora
2012-01-11SvStringsDtor->std::vectorAugust Sodora
2012-01-11Remove unnecessary forward declarationAugust Sodora
2012-01-11Hide bogus "Untitled already exists" errors...Stephan Bergmann
...when adding multiple new template regions in a row in SfxOrganizeDlg_Impl.
2012-01-11fdo#43532 Partial revert of "...template names appear... correct word order"Stephan Bergmann
Sorting the sfx2-based list boxes does not work as SfxDocumentTemplates uses a different collating order (plain Unicode code points) than the list boxes, so that e.g. "en-US" comes last in SfxDocumentTemplates but not in the list boxes. Even with that fixed, insertions into SfxOrganizeDlg_Impl would still not work right. This reverts the sfx2 parts of commits 50b7733fa41879a62d35cab64da59b109e1a8502 and df59068902b294b7b344af0c20da196cc64aaced.
2012-01-10Remove _SVSTDARR_STRINGSISORTDTORAugust Sodora
2012-01-10Fix for fdo43460 Part XXXIII getLength() to isEmpty()Olivier Hallot
Part XXXIII Modules sfx2
2012-01-10simplify LocalFileHelper::ConvertURLToPhysicalNameCaolá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-09revert text change in alienwarn.srcAndras Timar
2012-01-09autoresize 'Use ODF format' button, tooAndras Timar
2012-01-09Make the title of foreign file format warning translatableStefan Knorr (astron)
Also, change the contained text slightly. Thanks to William Gathoye for noticing and producing a first patch
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-09String sNm unusedCaolán McNamara
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-05getPropertyMap can return a reference instead of a pointerCaolán McNamara
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
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-05unnecessary includeCaolán McNamara
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-04Easyhack fdo#38831 remove SvStringsBrad Sowden
Remove SvStrings definition and obsolete #defines.
2012-01-04Easyhack fdo#38831 remove SvStringsBrad Sowden
Remove unused variables.
2012-01-04gbuild: define NOMINMAX in windows.mkMichael Stahl
2011-12-26catch exception by constant referenceTakeshi Abe
2011-12-22"*.*" is not "all files" (bnc#738021)Luboš Luňák
Not on any Unix, at least. I have no idea how deep entrenched is this mistake all over the code, so I'll play safe and just fix the KDE4 fpicker (GNOME/KDE3 seem to handle it fine), but at least in the UI show just "All files" instead of "All files (*.*)").
2011-12-22catch by const refCaolán McNamara
2011-12-21ditch min/max as macros under msvcCaolá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