summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwp9reader.cxx
AgeCommit message (Collapse)Author
2018-01-16ofz#5420 Out-of-memoryCaolán McNamara
Change-Id: I22166a14a03e5e803f8f032034e05a2da501379f Reviewed-on: https://gerrit.libreoffice.org/48008 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2017-10-23loplugin:includeform: lotuswordproStephan Bergmann
Change-Id: I1ff35dd6242accf0a8e71086a14a72e85eef1c5a
2015-12-09guard against infinite recursion on registering stylesCaolán McNamara
Change-Id: Iabedfcce9d8ef21172e6bd0d654f3a258aae97e3
2015-11-10loplugin:nullptr (automatic rewrite)Stephan Bergmann
Change-Id: Id11454397abad090741c5d98e2ae585531c886f6
2015-07-30loplugin:unusedmethodsNoel Grandin
Change-Id: Ib4d77ee01e7362f5951f81fceeca3c489872d971 Reviewed-on: https://gerrit.libreoffice.org/17378 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
2015-07-17remove pointless comments in lotuswordproNoel Grandin
change control, empty documentation tags Change-Id: Iad06c00ebad7dcb7d7d40040d77dee2d6307c9a5
2015-07-17loplugin:unusedmethods lotuswordproNoel Grandin
Change-Id: I17927d48a75c332f1ddc3853145b14daac17f9c0
2015-02-23remove unnecessary parenthesis in return statementsNoel Grandin
found with $ git grep -lP 'return\s*\(\s*\w+\s*\)\s*;' Change-Id: Ic51606877a9edcadeb647c5bf17bc928b69ab60e
2014-10-18Remove lwpunoheader.hxx.Ruggero Cyrille
Change-Id: I41534baa3cb98fc9af2f12605015a5653e552853
2014-06-24new compilerplugin returnbyrefNoel Grandin
Find places where we are returning a pointer to something, where we can be returning a reference. e.g. class A { struct X x; public X* getX() { return &x; } } which can be: public X& getX() { return x; } Change-Id: I796fd23fd36a18aedf6e36bc28f8fab4f518c6c7
2014-06-06Fix memory leaks, by refcounting LwpObjectStephan Bergmann
Change-Id: I1539597cd5bcabcbf0295d1acc320c503ad53604
2014-05-25cppcheck: unusedFunctionThomas Arnhold
Change-Id: I81f2a4be65bbc9359e51accccb746f1e8ea48c4f
2014-03-13coverity#738683 Uninitialized pointer fieldCaolán McNamara
Change-Id: I7b69f2e468c21be3020068af25de8001d71eb19a
2014-03-08use 'native' OUString api in lotuswordpro instead of macro and wrappersNorbert Thiebaud
Change-Id: Iccb78b59c3de9f29975d10fa4e34232cd3bf2cc3
2013-04-07mass removal of rtl:: prefixes for O(U)String*Luboš Luňák
Modules sal, salhelper, cppu, cppuhelper, codemaker (selectively) and odk have kept them, in order not to break external API (the automatic using declaration is LO-internal). Change-Id: I588fc9e0c45b914f824f91c0376980621d730f09
2012-06-29Remove include guardsThomas Arnhold
Change-Id: Ib4ba76d0083e5bd75cc589a55318089c004f591f
2012-06-01Targeted string re-work for lotuswordpro filterThorsten Behrens
Also cleaned up commented code, and a few extraneous temporaries
2011-04-11fix what there is to fixCaolán McNamara
2010-11-28RTL_CONSTASCII_USTRINGPARAM in filters 13Gert Faller
2010-10-18remove non-compiled codePovilas Kanapickas
2010-10-13Add vim/emacs modelines to all source filesSebastian Spaeth
Fixes #fdo30794 Based on bin/add-modelines script (originally posted in mail 1286706307.1871.1399280959@webmail.messagingengine.com) Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
2010-10-08Port of Lotus Word Pro filter, by Fong Lin and Noel PowerFong Lin