summaryrefslogtreecommitdiffstats
path: root/lotuswordpro/source/filter/lwprowlayout.cxx
Commit message (Collapse)AuthorAgeFilesLines
* remove pointless comments in lotuswordproNoel Grandin2015-07-171-4/+1
| | | | | | change control, empty documentation tags Change-Id: Iad06c00ebad7dcb7d7d40040d77dee2d6307c9a5
* loplugin:loopvartoosmallNoel Grandin2015-06-011-3/+3
| | | | Change-Id: I86ff38a90018a2ddfb2db3babf67168b0e6257a5
* remove unnecessary use of void in function declarationsNoel Grandin2015-04-151-1/+1
| | | | | | | | | | | | | | | | ie. void f(void); becomes void f(); I used the following command to make the changes: git grep -lP '\(\s*void\s*\)' -- *.cxx \ | xargs perl -pi -w -e 's/(\w+)\s*\(\s*void\s*\)/$1\(\)/g;' and ran it for both .cxx and .hxx files. Change-Id: I314a1b56e9c14d10726e32841736b0ad5eef8ddd
* coverity#738972 Use after freeCaolán McNamara2014-11-141-2/+2
| | | | Change-Id: Iba60fc4ff3b10179ebc700467a3d73e7bc7b64c9
* new compilerplugin returnbyrefNoel Grandin2014-06-241-19/+19
| | | | | | | | | | | | | | 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
* Fix memory leaks, by refcounting LwpObjectStephan Bergmann2014-06-061-8/+8
| | | | Change-Id: I1539597cd5bcabcbf0295d1acc320c503ad53604
* lotuswordpro: sal_Bool->boolNoel Grandin2014-04-231-3/+3
| | | | Change-Id: I017d284a2fbc8d50a9928c9d934ffe710b0c652f
* coverity#738743: Unitialized scalar fieldNorbert Thiebaud2014-03-021-0/+5
| | | | Change-Id: I6d8efb5f88b12705fb5efe33dc2d799a7280cda3
* Remove visual noise from lotuswordproAlexander Wilms2014-02-261-1/+0
| | | | | | | 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>
* coverity: fix memory leakMarkus Mohrhard2013-02-181-4/+2
| | | | Change-Id: I991f0e90abfa6e772f43afd8b8aa69d3b5ce4fa0
* coverity: fix memory leakMarkus Mohrhard2013-02-181-7/+7
| | | | Change-Id: I12ad99f3179ee8ef9e0322823685eb2bf337fc22
* WaE: uninitialized pCellCaolán McNamara2012-02-171-1/+1
|
* ditch some junkCaolán McNamara2011-08-161-6/+0
|
* Some cppcheck cleaningJulien Nabet2011-08-131-2/+2
|
* fix what there is to fixCaolán McNamara2011-04-111-9/+9
|
* WaE: unused variableDavid Tardon2011-03-271-2/+1
|
* remove first chunk of lotuswordpro warningsCaolán McNamara2010-10-131-5/+0
|
* Add vim/emacs modelines to all source filesSebastian Spaeth2010-10-131-0/+3
| | | | | | | | 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>
* Port of Lotus Word Pro filter, by Fong Lin and Noel PowerFong Lin2010-10-081-0/+491