summaryrefslogtreecommitdiff
path: root/xmloff
AgeCommit message (Collapse)Author
2012-03-18Prefer prefix ++/-- operators for non-primitive typesJulien Nabet
2012-03-18Some cppcheck cleaningJulien Nabet
2012-03-14Enable -Wnon-virtual-dtor for GCC 4.6Stephan Bergmann
...which has the necessary features to support it. Change a lot of classes to either contain a protected non-virtual dtor (which is backwards compatible, so even works for cppumaker-generated UNO headers) or a public virtual one. cppuhelper/propertysetmixin.hxx still needs to disable the warning, as the relevant class has a non-virtual dtor but friends, which would still cause GCC to warn. Includes a patch for libcmis, intended to be upstreamed.
2012-03-12xmloff: implement contextual spacing import/exportMiklos Vajna
2012-03-12remove unused VisAreaContext.[c|h]xxCaolán McNamara
2012-03-10gbuild: get rid of realpath in gb_Foo_set_includeMatúš Kukan
2012-03-08Compiler-generated code is just fineStephan Bergmann
...now that member is Sequence instead of pointer to Sequence.
2012-03-07remove various unused methods and source filesCaolán McNamara
2012-03-03don't create uno::Sequence with new, fdo#46825Markus Mohrhard
The uno::Sequence copy c'tor creates a flat copy and increments the ref count. So if you use new and later delete together with the copy constructor you get a double delete.
2012-03-03make this variable constMarkus Mohrhard
there are some lifetime problems related to SchXMLCell and therefore this helps to limit the scope of possible problems
2012-02-27Removed unused codeSzabolcs Dezsi
2012-02-24unusedcode.easy: remove unused codeThomas Arnhold
2012-02-21Prefer equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("..."))Takeshi Abe
to equalsIgnoreAsciiCaseAscii("...")
2012-02-20gb_JunitTest_JunitTest takes only one argumentStephan Bergmann
2012-02-20Remove unused code in XMLTextListAutoStylePool.Santiago Martinez
2012-02-19Get rid of size() == 0Elton Chung
2012-02-18xmloff: use ::comphelper::UStringLess instead of less_functorThomas Arnhold
2012-02-18Fix typos in commentsElton Chung
2012-02-13Remove unused code in XMLTextImportHelperCatalin Iacob
2012-02-13catched -> caughtCaolán McNamara
2012-02-10fdo#42771: Fix crash when loading an invalid .fodt.Jan Holesovsky
createTextCursorByRange() likes to throw runtime exception, even though it just means 'we were unable to create the cursor'.
2012-02-10Prefer equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("...")) to equalsAscii("...")Takeshi Abe
2012-02-08tools/table.hxx to std::map conversion in SV, SVL and SVX modulesNoel Grandin
This patch converts one use of tools/table.hxx in svl/inc/svl/zforlist.hxx, whose use in turn spans 3 modules.
2012-02-08update unused listCaolán McNamara
2012-02-08Added READMEs for modules which used to be in libs-coreJosh Heidenreich
2012-02-07Some configmgr usage clean upStephan Bergmann
2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud
2012-02-05Remove unused code.Elton Chung
2012-02-02fdo#45447: add an assertion when anchored to page 0Michael Stahl
XMLTextParagraphExport::addTextFrameAttributes: detect invalid anchor page number; this really should be fixed in Writer/writerfilter though.
2012-02-02fdo#45534: ODF export: fix draw:fit-to-sizeMichael Stahl
In ODF 1.1 and 1.2 this attribute is of type boolean, so only write the new values if the extended format is selected. (regression introduced with e479f47f7d48dbd0d701bf347b6a2d5121ba3d34)
2012-02-02fdo#45449: ODF export: frames: invalid "min-width"Michael Stahl
XMLTextParagraphExport::addTextFrameAttributes: delay writing of the fo:min-width and fo:min-height attributes so that they end up at the draw:text-box element, and not at draw:frame where they are invalid. Testing reveals that the ODF import can already handle reading the attributes from the draw:text-box elements, so there doesn't seem to be a backward compatibility problem.
2012-02-02fdo#38752: xmloff: add assertion for default-page-layoutMichael Stahl
2012-02-01callcatcher: update listCaolán McNamara
2012-01-31callcatcher: update listCaolán McNamara
2012-01-31Clean upStephan Bergmann
2012-01-30reduce unnecessary includesCaolán McNamara
2012-01-27Fix for fdo43460 Part LIII getLength() to isEmpty()Olivier Hallot
Part LIII Modules xmloff (part 6)
2012-01-27Fix for fdo43460 Part LII getLength() to isEmpty()Olivier Hallot
Part LII Modules xmloff (part 5)
2012-01-26Fix for fdo43460 Part LI getLength() to isEmpty()Olivier Hallot
Part LI Modules xmloff (part 4)
2012-01-26Fix for fdo43460 Part XLIX getLength() to isEmpty()Olivier Hallot
Part XLIX Modules xmloff (part 3)
2012-01-25Fix for fdo43460 Part XLVIII getLength() to isEmpty()Olivier Hallot
Part XLVIII Modules xmloff (part 2)
2012-01-25Fix for fdo43460 Part XLVII getLength() to isEmpty()Olivier Hallot
Part XLVII Modules xmloff (part 1)
2012-01-25callcatcher: remove some unused codeCaolán McNamara
2012-01-23Unused #includes.Stephan Bergmann
2012-01-23Replaced diagnore ENSURE_OR_CONTINUE with regular code.Marcel Metz
2012-01-23Replaced diagnore ENSURE_OR_BREAK with regular code.Marcel Metz
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-20rhbz#746174: also export list restart for non root listMichael Stahl
2012-01-17Replaced SAL_INFO with SAL_WARN were applicable.Marcel Metz
2012-01-17Better fix for WaE signed/unsigned comparison.Stephan Bergmann