summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/lwptablelayout.cxx
AgeCommit message (Collapse)Author
2015-04-27More loplugin:simplifyboolStephan Bergmann
Change-Id: I1ed1841c7cfbf69abfc8ba19cca348077da7b6d1
2015-04-14tdf#90028 avoid crash if style is not foundDavid Tardon
Change-Id: I4ffc8cdcb67ecb4c4afa641c9219dd465fe13d29
2014-12-19fdo#39440 reduce scope of local variablesMichael Weghorn
This addresses some cppcheck warnings. Change-Id: Idcedd908c653d5a5700884f233ad134dde8be018 Reviewed-on: https://gerrit.libreoffice.org/13540 Reviewed-by: Noel Grandin <noelgrandin@gmail.com> Tested-by: Noel Grandin <noelgrandin@gmail.com>
2014-11-14coverity#738972 Use after freeCaolán McNamara
Change-Id: Iba60fc4ff3b10179ebc700467a3d73e7bc7b64c9
2014-10-23loplugin: cstylecastNoel Grandin
Change-Id: Id4c581724e7e5466ffe46f11f0a8da2527c23dc6
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-17coverity#736883 Unintended sign extensionCaolán McNamara
Change-Id: I8e6a81b6c1605bd1be33f5f8d75d2472a39361d4
2014-06-11Fix memory leaks, by refcounting XFContentStephan Bergmann
Change-Id: I8c94c63230eec13bf22043ff07f9f480a0463111
2014-06-06Fix memory leaks, by refcounting LwpObjectStephan Bergmann
Change-Id: I1539597cd5bcabcbf0295d1acc320c503ad53604
2014-06-06Fix memory leaks, by refcounting XFFontStephan Bergmann
Change-Id: Iecfddf21f19313f46ee2544fad9c4df1e399e0f5
2014-04-23lotuswordpro: sal_Bool->boolNoel Grandin
Change-Id: I017d284a2fbc8d50a9928c9d934ffe710b0c652f
2014-03-24coverity#738750 Uninitialized pointer fieldCaolán McNamara
Change-Id: I619f130184eae670ba921843075ab199e952765c
2014-03-08use 'native' OUString api in lotuswordpro instead of macro and wrappersNorbert Thiebaud
Change-Id: Iccb78b59c3de9f29975d10fa4e34232cd3bf2cc3
2014-03-02coverity#738751: Unitialized scalar fieldNorbert Thiebaud
Change-Id: Ieae3761afb4606340287e4c8d41eec53c132dfec
2014-03-02coverity#738752: Unitialized scalar fieldNorbert Thiebaud
Change-Id: I54bdd68a7520ac1e936d048cbb7a72c8b7fdfe7c
2014-02-26Remove visual noise from lotuswordproAlexander Wilms
Change-Id: Ie161a2aa1a434d0778e1937a833819c934ed1889 Reviewed-on: https://gerrit.libreoffice.org/8281 Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
2014-02-17cid#736782 dereference before null checkNoel Grandin
and reduce scope of some variables Change-Id: I1aada9af15090ff2083354ea9b265b9e3d4e5c02
2014-02-06coverity#705403 Argument cannot be negativeCaolán McNamara
Change-Id: I0cf67a4bd5ec95e135511611c236350d4347895e
2014-01-28bool improvementsStephan Bergmann
Change-Id: I7b149b16a362473179a383ff1bb16f428f755f31
2013-12-22Fix other typosJulien Nabet
Change-Id: I3f0a51c53efdd383d49d978a1e8531afe9dac896
2013-03-19reduce whitespaces between include and filenameThomas Arnhold
Change-Id: I15f6ad0a760a28cbac53f99ba4d14ff5c24ce005
2013-02-18coverity: fix memory leakMarkus Mohrhard
Change-Id: Ibe595adf52c6880ce4ecdb469b89074fcdc0c16b
2012-05-09WaE: silence tedious msvc2008 warningsCaolán McNamara
Change-Id: Iecdc085b9af162ffdc6e0c52ad8a408a0983e088
2011-12-30Fix for fdo43460 Part XXIV getLength() to isEmpty()Olivier Hallot
Part XXIV Modules lotuswordpro
2011-08-16ditch some junkCaolán McNamara
2011-07-08fixed typos in commentsTakeshi Abe
2011-04-11fix what there is to fixCaolán McNamara
2011-03-27WaE: overloaded virtualDavid Tardon
2011-03-04Remove useless comments in filters.Guillaume Poussel
Signed-off-by: Luboš Luňák <l.lunak@suse.cz>
2010-12-05cppcheck: the scope of this variable can be reducedCaolán McNamara
2010-10-13remove first chunk of lotuswordpro warningsCaolán McNamara
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