summaryrefslogtreecommitdiff
path: root/filter
AgeCommit message (Collapse)AuthorFilesLines
2012-02-18Prefer equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("..."))Takeshi Abe1-2/+2
to equalsIgnoreAsciiCaseAscii("...")
2012-02-17Make filters module buildable with dbglevel=3 again.Thorsten Behrens1-3/+4
2012-02-16Removed SetProperty and StartElement method of MSFilterTracer.Szabolcs Dezsi2-13/+0
2012-02-16Use RTL_CONSTASCII_STRINGPARAM instead of bare numberTakeshi Abe1-2/+2
2012-02-13Remove unused codeElton Chung2-11/+0
2012-02-13Fix typos in commentsElton Chung1-5/+5
2012-02-13filter configuration: add some OOo XML/ODF mimetypesMichael Stahl6-6/+6
2012-02-13filter configuration: add some mimetypeMichael Stahl4-4/+4
2012-02-13filter configuration: add MSO 2007 XML mimetypesMichael Stahl10-10/+10
2012-02-10Remove unused codeElton Chung1-6/+0
2012-02-10Prefer equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) to equalsAscii(...)Takeshi Abe2-2/+2
2012-02-10Prefer equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("...")) to equalsAscii("...")Takeshi Abe2-13/+13
2012-02-09fix ppt embedded graphic dumperCaolán McNamara1-7/+12
2012-02-08do not deserialize into long, use a type of the correct width (fdo#40768)Luboš Luňák1-1/+4
2012-02-08Added and improved READMEs for modules which used to be in filterJosh Heidenreich1-0/+1
2012-02-05switch to include-based build rather than sourced-based buildNorbert Thiebaud1-35/+2
2012-02-05Some cppcheck cleaningJulien Nabet1-2/+2
2012-02-04extract max legal dff length to headerCaolán McNamara1-3/+3
2012-02-01Some cppcheck cleaningJulien Nabet4-6/+6
2012-01-31Get the whole thing to build after the method sig change in SdrObject.Kohei Yoshida2-4/+4
2012-01-31callcatcher: update listCaolán McNamara2-13/+0
2012-01-26Sort the catch-all detection at the endFridrich Štrba1-2/+2
2012-01-24Disable svg font embedding for sd filters test, enable again.Thorsten Behrens1-3/+7
2012-01-24Remove dead code from svg filterThorsten Behrens3-37/+3
2012-01-24all direct OUString readers are current little endian streamsCaolán McNamara2-2/+2
2012-01-24String->rtl::OUStringCaolán McNamara1-1/+1
2012-01-21Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann3-7/+7
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 Martinez2-6/+0
2012-01-18This method is now unused.Kohei Yoshida2-9/+0
2012-01-18removed some dead codeMarc-André Laverdière-Papineau3-63/+1
2012-01-17fdo#43193: fix rotation of shapes in imported MS documentsIvan Timofeev1-8/+13
This partially reverts commit 1fbbd6134573beedc72a3839d65b27dfc829f2fb.
2012-01-13simply MSDFFReadZString and friendsCaolán McNamara2-19/+5
2012-01-13just return the read string here instead of passing one in by refCaolán McNamara3-34/+35
2012-01-13return status never checkedCaolán McNamara2-9/+8
2012-01-13convert some archaic stringsCaolán McNamara1-26/+28
2012-01-11fix prefix of command line switches (-- instead of -)Andras Timar1-1/+1
2012-01-10simplify LocalFileHelper::ConvertURLToPhysicalNameCaolán McNamara3-3/+3
2012-01-08Kill SvNullStream duplicationMiklos Vajna2-3/+31
2012-01-08callcatcher: Remove unused codeAugust Sodora2-105/+2
2012-01-06Removed unnecessary tools/debug.hxx includes.Marcel Metz5-5/+0
2012-01-05Removed unnecessary tools includes.Marcel Metz1-1/+0
2012-01-05Removed unnecessary tools includes.Marcel Metz2-2/+0
2012-01-05Removed unnecessary tools includes.Marcel Metz1-1/+0
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 McNamara2-2/+4
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 McNamara8-823/+2
2011-12-28Fix order initJulien Nabet1-1/+1
2011-12-28option to export hidden slides to pdf filesPierre-André Jacquod7-2/+32
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 Hallot35-154/+154
Part XVII Module fileaccess and filter
2011-12-25open xml filter test result in default xml editorPeter Jentsch2-9/+16
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 Jentsch1-0/+1
need to wait for reader thread to terminate before deleting it.