summaryrefslogtreecommitdiff
path: root/sdext
AgeCommit message (Collapse)Author
2012-03-16do not let a unittest create temp files in the current directoryLuboš Luňák
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-12sdext: factor out a static library to fix triple-linked objectsMichael Stahl
2012-03-12suppress errors with -WerrorDavid Tardon
2012-03-10operator must be in template or argument namespaceLuboš Luňák
clang has more strict (and probably more spec compliant) lookup
2012-03-10sdext: fix unit test for WindowsMatúš Kukan
2012-03-08beware of excessive white spacesDavid Tardon
2012-03-08Fix Windows compilation errors caused by int/sal_Int32 borkageTor Lillqvist
Unfortunately the unit test in question still fails on Windows, though.
2012-03-08use better assertion macros in pdfimport unit testMarkus Mohrhard
2012-03-08sdext: Configuration: use nodeliver modeMichael Stahl
Preventing the files from officecfg being overwritten by files from sdext. Should fix the smoketest failure if the extensions are enabled.
2012-03-07WaE: various higher debug level compile time warningsCaolán McNamara
2012-03-07use const_iteratorDavid Tardon
2012-03-06ensure proper ordering, tooDavid Tardon
2012-03-06add dummy dep for generated fileDavid Tardon
2012-03-06update makefileDavid Tardon
2012-03-06this code is still used by pdfimport's test appsDavid Tardon
This reverts commit 4001370ba5900dd0a0ec04c62f5aeb347bde025a. Conflicts: unusedcode.easy
2012-03-06the passed string is already quotedDavid Tardon
2012-03-06remove leftover makefilesDavid Tardon
2012-03-06convert pdfimport testDavid Tardon
2012-03-06the include must be at the beginningDavid Tardon
2012-03-06fix platform IDDavid Tardon
2012-03-06remove unused bitmapDavid Tardon
2012-03-06remove unused sourcesDavid Tardon
2012-03-06fix placement of help fileDavid Tardon
2012-03-06fix added library namesDavid Tardon
2012-03-06fix platform IDDavid Tardon
2012-03-06let gb_Extension do the necessary manifest updatesDavid Tardon
2012-03-06set platformDavid Tardon
2012-03-06fix platform IDDavid Tardon
2012-03-06build test executables for pdfimportDavid Tardon
2012-03-06gbuildize sdextDavid Tardon
2012-02-28Avoid temporary rtl::OUStringTakeshi Abe
in scripting / sdext / starmath / stoc / svtools / svx
2012-02-26Avoid temporary rtl::OUStringJulien Nabet
2012-02-21WaE: duplicateBranchThomas Arnhold
2012-02-19Get rid of size() == 0Elton Chung
2012-02-18Fix typos in commentsElton Chung
2012-02-17WaE: unreachable codeCaolán McNamara
2012-02-13Remove unused pdfi::PDFIRawAdaptor::odfConvertKate Goss
2012-02-13Remove unused pdfi::PDFIProcessor::sortDocument(bool)Kate Goss
2012-02-13Remove unused pdfi::DrawXmlEmitter::GetBreakIterator()Kate Goss
2012-02-10This method is still used on WIN32.Kohei Yoshida
2012-02-10Removed unused codeAlexander Bergmann
2012-02-09Added and improved READMEs for modules in extensions, extras, postprocessJosh Heidenreich
2012-02-08update unused listCaolán McNamara
2012-02-05replace SOLARSRC by SRC_ROOT and get rid of SOLARDEFIMG usesNorbert Thiebaud
2012-01-23A copy-paste bug detected by cppcheckMariusz Dykierek
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-16Try without xmlhelp on non-desktop OSesTor Lillqvist
2012-01-16Clang -Wunused-variable.Stephan Bergmann
2012-01-16Clang -Wunused-variable.Stephan Bergmann