summaryrefslogtreecommitdiff
path: root/filter
AgeCommit message (Collapse)AuthorFilesLines
2014-11-10coverity#1202754 Bad bit shift operationCaolán McNamara1-6/+6
Change-Id: I51e8df896897b122965ada0ced161570d38f0468
2014-11-10Related: fdo#85111 put a box around xml filter settings controlCaolán McNamara2-15/+36
and writer->insert->table->autoformat and calc->data->consolidate and calc->insert->sheet Change-Id: I7c89d9f01747a00b906afe3c762b747df6872869
2014-11-07Make SdrGrafObj swapping methods private.Zolnai Tamás1-1/+0
Plus remove some useless call of them. Change the tests accordingly. Change-Id: I47a50b5734d799ac02ee7221c95f82415afb9497
2014-11-07DOC import: avoid manual swapout call.Zolnai Tamás1-1/+0
No reason to swapout the image directly after the import because it will be used for rendering just a second later. Change-Id: I78c8ef9225c55f306182dc5efd7bcaf0e88521c0
2014-11-06filter: use more appropriate conversion from ASCII for arbitrary inputMichael Stahl1-1/+6
... with unknown encoding, mapping non-ASCII chars to something that doesn't cause trouble (in FilterDetect::detect()). Change-Id: Ibf2a2e2fd7c0c00e55042d2ccad173fab7a1b0bd
2014-11-06Revert "use the new OUString::fromUtf8 method"Stephan Bergmann2-2/+3
This reverts commit 05050cdb23de586870bf479a9df5ced06828d498, not all places that use e.g. OStringToOUString to convert potential UTF-8 are guaranteed to fulfil the prerequisites necessary to use fromUtf8 (and some places like e.g. in codemaker are happy with the best-effort effect of OStringToOUString's OSTRING_TO_OUSTRING_CVTFLAGS).
2014-11-06update suffixes in .gitignore for filtersCaolán McNamara11-10/+13
Change-Id: Ibf6093946ef1dec1a2ba202917da9e4562c10d3e
2014-11-06add a build-time regression test for pcd file formatCaolán McNamara8-0/+115
Change-Id: Ie413372ab1cfc7e38570fdf65c6daca8c2cc426b
2014-11-06use the new OUString::fromUtf8 methodNoel Grandin2-3/+2
Change-Id: I771004b7ccab3344a67e827e45bc34c22ffa5f77
2014-11-06fdo#83395 - improve PDF export dialog labels and tooltipsYousuf Philips1-4/+7
Change-Id: Idddce2dc81e86cc840da5d6d8891487cee6609d4 Reviewed-on: https://gerrit.libreoffice.org/12081 Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com> Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
2014-11-05coverity#737143 Uncaught exceptionCaolán McNamara1-20/+24
Change-Id: If90208f2fb9be0a44cabfc9b281b3715772b30d1
2014-11-05fdo#38835 strip out OUString globalsNoel Grandin4-43/+42
they are largely unnecessary these days, since our OUString infrastructure gained optimised handling for static char constants. Change-Id: I07f73484f82d0582252cb4324d4107c998432c37
2014-11-01fdo#78826 HIG: missing colons and capitalization in cui, filterAdolfo Jayme Barrientos12-361/+80
* Fix capitalization * Standardize spacing * Standardize Help button’s position Change-Id: Ibc7152acbe460a9564ab6b97a637f38ea5e7144a Reviewed-on: https://gerrit.libreoffice.org/12075 Reviewed-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com> Tested-by: Samuel Mehrbrodt <s.mehrbrodt@gmail.com>
2014-10-31Removed duplicated includesAndrea Gelmini1-1/+0
Change-Id: I5362d997bfa086c9fb1726efcb15132a966684f6 Reviewed-on: https://gerrit.libreoffice.org/12160 Tested-by: LibreOffice gerrit bot <gerrit@libreoffice.org> Reviewed-by: Michael Stahl <mstahl@redhat.com>
2014-10-30Fixed typos. No automatic tools (sed, and so on).Andrea Gelmini2-2/+2
Change-Id: Ia43976d84eede6f699381bc4f3daf89b95e4cb4f Reviewed-on: https://gerrit.libreoffice.org/12150 Reviewed-by: Bryan Quigley <gquigs@gmail.com> Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
2014-10-30coverity#1242658 Untrusted loop boundCaolán McNamara1-0/+5
Change-Id: I6b4605e3223d11fe4f905e0d9141043a0d7527da
2014-10-30inner condition is the same as outer oneCaolán McNamara1-7/+4
Change-Id: If573f4d21492506d631861d06842828f9abb61f4
2014-10-30coverity#1242658 Untrusted loop boundCaolán McNamara1-1/+8
Change-Id: Ib37d08e5c55ca3c9f054684aa79dbe38d441f37a
2014-10-29remove unnecessary 'using namespace rtl' declarationsNoel Grandin14-14/+0
It turns out that almost none of them were necessary. Change-Id: I1311ed28409c682b57ea8d149bcbaf2c49133e83 Reviewed-on: https://gerrit.libreoffice.org/12133 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-10-29coverity#1202781 Division or modulo by zeroCaolán McNamara1-2/+2
Change-Id: I2908c57badd079c8f19c679f40ed815ce2cba374
2014-10-29coverity#735609 Division or modulo by zeroCaolán McNamara1-0/+2
Change-Id: Iaa765c4ed0aa7bb11e74c1c2be48b336158249cc
2014-10-29coverity#1078542 Division or modulo by zeroCaolán McNamara1-3/+8
Change-Id: I3325328c01b23d43c774db4af080df535f47787b
2014-10-29ref-counting vcl::Window subclassesNoel Grandin12-11/+2
Points of discussion -------------------- (*) where in the Window destructor should dispose() be called? It's a seriously large method. (*) we're going to need similar typedefs and declarations for every single sub-class of vcl::Window, I assume that I will need to create a macro to make it less verbose. TODO ---- Update clang plugin to verify that: (a) dispose() methods always call their superclass dispose() (b) dispose() methods don't forget to clear any references owned by that class. Change-Id: I873d5d5166f811e2f65e49327cc98862559fcf30
2014-10-28coverity#1242844 Untrusted loop boundᚉᚐᚑᚂᚐᚅ McNamara1-1/+4
Change-Id: I64a805503d0c044b5c5a80df1513e35df5c39171
2014-10-25coverity#1242746 turn this around to help out coverityCaolán McNamara1-1/+1
Change-Id: I06cc94395e6421b7e01811b3d5f17c2677650a83
2014-10-24Add missing semicolonTor Lillqvist1-1/+1
Change-Id: I9fb4471082a3c20cf94539a971c9d073fa949584
2014-10-24coverity#704231 Logically dead codeCaolán McNamara1-12/+11
Change-Id: Ic54f25f40416401be3a95880fe1bdc4496be935c
2014-10-24coverity#704228 'Constant' variable guards dead codeCaolán McNamara1-3/+2
Change-Id: Ia3ccd40ae4a83b58f7d5986273c5bd7d8310b467
2014-10-24coverity#703957 Unchecked return valueCaolán McNamara1-4/+2
Change-Id: I3a5c0239f4615ff0ba832ac4c733c26e25c259e6
2014-10-23Fraction: Revert "fdo#81356: convert Fraction to boost::rational<long> - wip"Jan Holesovsky12-77/+78
This reverts commit 47a2d7642d249d70b5da0c330a73f3a0032e4bba. Conflicts: cui/source/tabpages/transfrm.cxx svx/source/svdraw/svdedtv1.cxx svx/source/svdraw/svdibrow.cxx sw/source/filter/ww1/w1filter.cxx tools/source/generic/rational.cxx Change-Id: I4849916f5f277a4afef0e279b0135c76b36b9d15
2014-10-23Fraction: Revert "fdo#84854 it seems long is not enough on 32 bit"Jan Holesovsky10-28/+28
This reverts commit 582ef22d3e8e30ffd58f092d37ffda30bd07bd9e. Conflicts: svx/source/svdraw/svdedtv1.cxx svx/source/svdraw/svdibrow.cxx sw/source/filter/ww1/w1filter.cxx Change-Id: I80abc7abdeddc267eaabc9f8ab49611bb3f8ae83
2014-10-23loplugin: cstylecastNoel Grandin1-1/+1
Change-Id: Iad39bce8e7562821bc8fbf8156ea56aedc19c7d6
2014-10-23coverity#1242688 Untrusted loop boundCaolán McNamara1-19/+31
Change-Id: Ic3e2c390de22d3e998daf760d73619218da020ec
2014-10-23coverity#1078541 Division or modulo by zeroCaolán McNamara1-1/+1
Change-Id: Iea43399c70e56ff4e32953a5ddc5751abed39ff7
2014-10-22fdo#85324 Prioritize writerglobal8_template detectionMaxim Monastirsky1-0/+1
Change-Id: I0454b52dcfe1514f81ddfc97a4f9246d6d2571f7
2014-10-22Resolves: ooo#40683 support word for windows 1Caolán McNamara2-2/+2
via the standard .doc binary filter Change-Id: I0284fa815e6874d7d59ad1ad8ede4482d2e266a4
2014-10-22Replace DISABLE_SCRIPTING with HAVE_FEATURE_SCRIPTINGTor Lillqvist2-5/+8
Feature test macros that govern conditional compilation should be defined in config_*.h include files, not on the compilation command line. Change-Id: I40575a4762fd2564f10927b6f38a112dd9f9a3d7
2014-10-21coverity#1242908 Untrusted value as argumentCaolán McNamara1-0/+7
Change-Id: If9dd92c361d406c435329d29870dc8bb07a8ba7b
2014-10-21true on success, false on failureCaolán McNamara1-1/+1
Change-Id: Iaba5f2634e985cf41d52bedcbf7ac1c060d02c1d
2014-10-20Add a filter for AppleWork's presentation file...osnola3-0/+61
Change-Id: I9f03ecc6d67ad77ccb0d5240fe0b5968c8063bd3
2014-10-20add CVE-2013-4979 testCaolán McNamara1-0/+0
Change-Id: I54025f46394ec1b16443ba75ff9edf9d8e1f6738
2014-10-20add eps import regression testCaolán McNamara8-0/+785
Change-Id: Iba88c7e54ba83132a859124d51f88be72cb3e3e1
2014-10-20coverity#703957 Unchecked return valueCaolán McNamara1-2/+2
Change-Id: If9e3e7297b1539c93902895c50af3fb8f6c83a76
2014-10-20coverity#1242606 Untrusted loop boundCaolán McNamara1-1/+4
Change-Id: Iafa03d4dd65eb343a80996880bc1ed846d1b7491
2014-10-18coverity#1242582 Untrusted loop boundCaolán McNamara1-4/+12
Change-Id: I72d2c4979b62a025d212ce5ee3b7141c40376fa7
2014-10-18add a regression test for .met filesCaolán McNamara7-0/+116
OS/2 Metafile Format aka Presentation Manager Metafile File Format this format appears to not to have a mime-type Change-Id: I8b2356fb42272a6e0550abf09f46b051d22b64a5
2014-10-17Resolves: fdo#62682 crash on second export of svgCaolán McNamara2-2/+17
because the first export has left "dangling" CalcFieldValueHdl Links in Outliners that got created based on the Drawing Outliner while it had a temporary CalcFieldValueHdl installed, and didn't get the old CalcFieldValueHdl installed when the old Drawing Outliner one was re-installed. Change-Id: I064a154ece488c9a4c3467b753451df7e73ae883
2014-10-17coverity#1242624 Untrusted loop boundCaolán McNamara1-20/+44
Change-Id: If2ae1982eec100f5602a13d648beec247ced6aa2
2014-10-17coverity#1242717 Untrusted loop boundCaolán McNamara1-4/+10
Change-Id: I983bba075ab9626c90555fa41f9d473ae60fafea
2014-10-17coverity#1242724 Untrusted value as argumentCaolán McNamara1-3/+8
Change-Id: I6041d09ef0a4ed4af5f1bf93f31a1eac60be1af7