summaryrefslogtreecommitdiff
path: root/filter
AgeCommit message (Collapse)Author
2012-02-05Some cppcheck cleaningJulien Nabet
2012-02-04extract max legal dff length to headerCaolán McNamara
2012-02-01Some cppcheck cleaningJulien Nabet
2012-01-31Get the whole thing to build after the method sig change in SdrObject.Kohei Yoshida
2012-01-31callcatcher: update listCaolán McNamara
2012-01-26Sort the catch-all detection at the endFridrich Štrba
2012-01-24Disable svg font embedding for sd filters test, enable again.Thorsten Behrens
2012-01-24Remove dead code from svg filterThorsten Behrens
2012-01-24all direct OUString readers are current little endian streamsCaolán McNamara
2012-01-24String->rtl::OUStringCaolán McNamara
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-20Removed unused code as listed in unusedcode.easySantiago Martinez
2012-01-18This method is now unused.Kohei Yoshida
2012-01-18removed some dead codeMarc-André Laverdière-Papineau
2012-01-17fdo#43193: fix rotation of shapes in imported MS documentsIvan Timofeev
This partially reverts commit 1fbbd6134573beedc72a3839d65b27dfc829f2fb.
2012-01-13simply MSDFFReadZString and friendsCaolán McNamara
2012-01-13just return the read string here instead of passing one in by refCaolán McNamara
2012-01-13return status never checkedCaolán McNamara
2012-01-13convert some archaic stringsCaolán McNamara
2012-01-11fix prefix of command line switches (-- instead of -)Andras Timar
2012-01-10simplify LocalFileHelper::ConvertURLToPhysicalNameCaolán McNamara
2012-01-08Kill SvNullStream duplicationMiklos Vajna
2012-01-08callcatcher: Remove unused codeAugust Sodora
2012-01-06Removed unnecessary tools/debug.hxx 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-05callcatcher: drop some unused methodsCaolán McNamara
2011-12-28Fix order initJulien Nabet
2011-12-28option to export hidden slides to pdf filesPierre-André Jacquod
This add the checkbox hidden pages to the PDF export general tab and if checked, export also to PDF the hidden slides
2011-12-26Fix for fdo43460 Part XVII getLength() to isEmpty()Olivier Hallot
Part XVII Module fileaccess and filter
2011-12-25open xml filter test result in default xml editorPeter Jentsch
first commit to remove the broken xml filter source view and validation service. The validation service is currently broken in that it doesn't allow to refer to or define an xml catalog or alternative validation methods. All of this is included in current xml development tools elsewhere, so we don't need to duplicate that in LO.
2011-12-25fix threading problem in LibXSLTTransformer.cxxPeter Jentsch
need to wait for reader thread to terminate before deleting it.
2011-12-25use radiobuttons to select builtin/saxon xslt transformationPeter Jentsch
2011-12-25fixed warning about global resource in xmlfilterdialog.srcPeter Jentsch
2011-12-23eval at the calling side, like other gbuild classesDavid Tardon
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-21needs more work firstCaolán McNamara
This reverts commit 92f396733ebc518bcb7a9eae2dd3169d333b82b9.
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-21can't see why there's an appendChar hereCaolán McNamara
2011-12-16gcc-trunk: fix error: unable to find string literal operator 'operator"" FOO'Matúš Kukan
2011-12-16avoid looping on busted escher recordsCaolán McNamara
2011-12-15Removed extra semicolonsJesse
2011-12-12Use OUTDIR_FOR_BUILD for cross-compiling goodnessTor Lillqvist
2011-12-12Resolves: fdo#43690 install explicit cancel handlerCaolán McNamara
2011-12-12catch exception by constant referenceTakeshi Abe
2011-12-08CDR importer: fixing some build and esthetic issuesFridrich Štrba
2011-12-08Stub Corel Draw importerFridrich Štrba
2011-12-07old class Stack pop'ed 0 from empty stack, which std::stack doesn'tEike Rathke
Some places in the code assumed that if the stack is empty a null pointer is returned by top() (or old Pop()), this doesn't work anymore with ::std::stack that instead has undefined behavior in that case, so check !stack.empty() first before accessing top. (cherry picked from commit ac40f7d6503533954127e818f2bf009200c1e3f2)