summaryrefslogtreecommitdiffstats
path: root/filter
Commit message (Collapse)AuthorAgeFilesLines
* Fixed a lot of minor issues, polished source code and comments.Marco Cecchetti2012-03-071-1063/+1074
| | | | | Fixed a couple of missing 'this' keyword. Fixed not strict JavaScript syntax usage, as missing 'var', 'new', ';' or duplicated variable declarations. Fixed spelling issues.
* Fixed a bug: when the SlideNumber placeholder field does not exist at all in ↵Marco Cecchetti2012-03-071-2/+6
| | | | the master page the 'element' attribute of the related PlaceholderShape object is null, so the 'element' attribute has to be checked in thePlaceholderShape.setVisibility method.
* XMLFilterTabPageXSLT::LinkStubToggleXSLTImplHdl does nothingCaolán McNamara2012-03-062-5/+0
|
* Sprinkle more DISABLE_SCRIPTING ifdefsTor Lillqvist2012-03-052-1/+34
|
* support import of key shortcut for macro ( Excel only )Noel Power2012-03-052-1/+51
|
* vba implementation for Application.OnKeyNoel Power2012-03-052-2/+130
|
* WaE: equality comparison with extraneous parenthesesTor Lillqvist2012-03-031-1/+1
|
* WaE: expression result unusedTor Lillqvist2012-03-031-1/+1
| | | | | | | A right parenthesis was apparently misplaced, leading to the code actually containing a bogus comma expression. The GetPropertyValue() call's result was ignored and the subexpression after the comma, zero, was used instead.
* WaE: use of unary operator that may be intended as compound assignment (-=)Tor Lillqvist2012-03-031-1/+1
|
* New IMPL_LINK_NOARG to work around SAL_UNUSED_PARAMETER problemStephan Bergmann2012-03-016-19/+19
| | | | | ...see ebe26f72e90337da2d14f3029de148904e3e30b6 "WaE: 'unused' attribute ignored when parsing type" for the problem.
* we don't want any of these to be streamed out/in as 64bit valuesCaolán McNamara2012-02-283-21/+21
|
* fdo#45023 UI fix on PDF export dialogAndras Timar2012-02-281-2/+3
|
* callcatcher: remove newly unused methods and update listCaolán McNamara2012-02-282-10/+0
|
* use read_uInt16s_ToOUString instead of hand-crafted loopCaolán McNamara2012-02-281-7/+2
|
* WaE: unused variableCaolán McNamara2012-02-281-7/+6
|
* Removed unused codeSzabolcs Dezsi2012-02-272-23/+0
|
* Avoid temporary rtl::OUStringJulien Nabet2012-02-261-52/+52
|
* Removed MSFilterTracer and all references to itSzabolcs Dezsi2012-02-248-378/+8
|
* unusedcode.easy: remove unused codeThomas Arnhold2012-02-242-83/+0
|
* Adapted Reader to safer-to-use salhelper::ThreadStephan Bergmann2012-02-236-94/+94
| | | | ...which required some Reference namespace clean up.
* Adapted LateInitThread to safer-to-use salhelper::ThreadStephan Bergmann2012-02-235-89/+36
|
* gb_JunitTest_JunitTest takes only one argumentStephan Bergmann2012-02-201-1/+1
|
* Prefer equalsIgnoreAsciiCaseAsciiL(RTL_CONSTASCII_STRINGPARAM("..."))Takeshi Abe2012-02-181-2/+2
| | | | to equalsIgnoreAsciiCaseAscii("...")
* Make filters module buildable with dbglevel=3 again.Thorsten Behrens2012-02-171-3/+4
|
* Removed SetProperty and StartElement method of MSFilterTracer.Szabolcs Dezsi2012-02-162-13/+0
|
* Use RTL_CONSTASCII_STRINGPARAM instead of bare numberTakeshi Abe2012-02-161-2/+2
|
* Remove unused codeElton Chung2012-02-132-11/+0
|
* Fix typos in commentsElton Chung2012-02-131-5/+5
|
* filter configuration: add some OOo XML/ODF mimetypesMichael Stahl2012-02-136-6/+6
|
* filter configuration: add some mimetypeMichael Stahl2012-02-134-4/+4
|
* filter configuration: add MSO 2007 XML mimetypesMichael Stahl2012-02-1310-10/+10
|
* Remove unused codeElton Chung2012-02-101-6/+0
|
* Prefer equalsAsciiL(RTL_CONSTASCII_STRINGPARAM(...)) to equalsAscii(...)Takeshi Abe2012-02-102-2/+2
|
* Prefer equalsAsciiL(RTL_CONSTASCII_STRINGPARAM("...")) to equalsAscii("...")Takeshi Abe2012-02-102-13/+13
|
* fix ppt embedded graphic dumperCaolán McNamara2012-02-091-7/+12
|
* do not deserialize into long, use a type of the correct width (fdo#40768)Luboš Luňák2012-02-081-1/+4
|
* Added and improved READMEs for modules which used to be in filterJosh Heidenreich2012-02-081-0/+1
|
* switch to include-based build rather than sourced-based buildNorbert Thiebaud2012-02-051-35/+2
|
* Some cppcheck cleaningJulien Nabet2012-02-051-2/+2
|
* extract max legal dff length to headerCaolán McNamara2012-02-041-3/+3
|
* Some cppcheck cleaningJulien Nabet2012-02-014-6/+6
|
* Get the whole thing to build after the method sig change in SdrObject.Kohei Yoshida2012-01-312-4/+4
|
* callcatcher: update listCaolán McNamara2012-01-312-13/+0
|
* Sort the catch-all detection at the endFridrich Štrba2012-01-261-2/+2
|
* Disable svg font embedding for sd filters test, enable again.Thorsten Behrens2012-01-241-3/+7
|
* Remove dead code from svg filterThorsten Behrens2012-01-243-37/+3
|
* all direct OUString readers are current little endian streamsCaolán McNamara2012-01-242-2/+2
|
* String->rtl::OUStringCaolán McNamara2012-01-241-1/+1
|
* Removed some unused parameters; added SAL_UNUSED_PARAMETER.Stephan Bergmann2012-01-213-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.
* Removed unused code as listed in unusedcode.easySantiago Martinez2012-01-202-6/+0
|