summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/bento.hxx
AgeCommit message (Collapse)Author
2015-06-10cppcheck: noExplicitConstructorCaolán McNamara
Change-Id: I0081113bf312287fe6e14749a569709ee892d8dd
2015-04-15remove unnecessary use of void in function declarationsNoel Grandin
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
2015-03-24loplugin:constantfunction: lotuswordproNoel Grandin
Change-Id: I16fbba302c7330010f9b4c888f48a868ad6b921e
2014-10-23loplugin: cstylecastNoel Grandin
Change-Id: Id4c581724e7e5466ffe46f11f0a8da2527c23dc6
2014-07-08Avoid undefined downcasts to wrong typeStephan Bergmann
...CUtList::cDummyElmt is always only of type CUtListElmt, not a derived type. Change-Id: Ibc372642e2a53c548421b5cfa7cc496986036815
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-05-19lwp: remove using namespace std from headersThomas Arnhold
Change-Id: Ied5806a1706473ac0fe4e1baebb71256cf56681d
2014-04-19fixincludeguards.sh: lotuswordproThomas Arnhold
Change-Id: Ic3e01b5ecfb159d88c7c849a85ff612cdda5b418
2014-04-01Explicitly mark overriding destructors as "virtual"Stephan Bergmann
It appears that the C++ standard allows overriding destructors to be marked "override," but at least some MSVC versions complain about it, so at least make sure such destructors are explicitly marked "virtual." Change-Id: I0e1cafa7584fd16ebdce61f569eae2373a71b0a1
2014-03-29tools: support 64-bit file positions in SvStreamMichael Stahl
Bump stream positions to 64 bits on: SvLockBytes::SetSize() SvStream::SeekPos() SvStream::SetSize() SvStream::SetStreamSize() SvStream::Seek() SvStream::SeekRel() SvStream::Tell() SvStream::remainingSize() SvStream::nActPos SvStream::nBufFilePos Change-Id: I0521fd60d31d1a33e5634cbf51dd42edc46ad919 TODO: adapt callers of Seek()/SeekRel()/Tell()/remainingSize()
2014-03-27Second batch of adding SAL_OVERRIDE to overriding function declarationsStephan Bergmann
...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: Ie656f9d653fc716f72ac175925272696d509038f
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-01-14UtBool -> boolStephan Bergmann
Change-Id: I4cec5ba61762ac87d5bfb07b15ab661955e207ac
2013-10-22Bin comments that claim to say why some header is includedTor Lillqvist
They are practically always useless, often misleading or obsolete. Change-Id: I2d32182a31349c9fb3b982498fd22d93e84c0c0c
2013-03-19reduce whitespaces between include and filenameThomas Arnhold
Change-Id: I15f6ad0a760a28cbac53f99ba4d14ff5c24ce005
2012-08-31-Werror,-Wunused-private-field (Clang towards 3.2)Stephan Bergmann
Change-Id: Ie83cd8392363800bcb1de641b537efdab2910ddd
2011-08-29callcatcher: drop various unused methodsCaolán McNamara
2011-08-29valgrind: various unused codeCaolán McNamara
2011-08-19regenerate listCaolán McNamara
2011-08-18callcatcher: unused codeCaolán McNamara
2011-08-11callcatcher: unused codeCaolán McNamara
2011-08-11callcatcher: yet more unused codeCaolán McNamara
2011-08-08callcatcher: remove various unused methodsCaolán McNamara
2011-08-08callcatcher: remove various unused methodsCaolán McNamara
2011-08-05callcatcher: unused methodsCaolán McNamara
2011-03-13convert tools type in lotuswordproNorbert Thiebaud
2011-03-04Remove useless comments in filters.Guillaume Poussel
Signed-off-by: Luboš Luňák <l.lunak@suse.cz>
2010-10-28add modelines to .hxx files as wellCaolán McNamara
2010-10-18remove non-compiled codePovilas Kanapickas
2010-10-13Remove redundant include directives & commentsJ. Graeme Lingard
2010-10-08Port of Lotus Word Pro filter, by Fong Lin and Noel PowerFong Lin