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
...mostly done with a rewriting Clang plugin, with just some manual tweaking
necessary to fix poor macro usage.
Change-Id: I71fa20213e86be10de332ece0aa273239df7b61a
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
Done with a perl regex:
s/OUString\s*\(\s*RTL_CONSTASCII_USTRINGPARAM\s*\((\s*"[^")]*?"\s*)\)\s*\)/OUString\($1\)/gms
Change-Id: Idf28320817cdcbea6d0f7ec06a9bf51bd2c3b3ec
Reviewed-on: https://gerrit.libreoffice.org/2832
Reviewed-by: Thomas Arnhold <thomas@arnhold.org>
Tested-by: Thomas Arnhold <thomas@arnhold.org>
2008/04/30 08:41:31 af 1.2.4.5: #i88853# PresenterSlideShowView() is not a service anymore.
2008/04/23 11:57:59 af 1.2.4.4: #i18486# Made caching optional, defaults to off.
2008/04/22 08:28:19 af 1.2.4.3: RESYNC: (1.2-1.3); FILE MERGED
2008/04/18 14:53:43 af 1.2.4.2: #i18486# Store only unused resources in the cache.
2008/04/16 16:12:25 af 1.2.4.1: #i18486# Addes support for cachable views.
2008/02/28 16:15:25 af 1.1.2.11: #i18486# Find... methods of pane container now return SharedPaneDescriptor.
2008/02/26 15:35:43 af 1.1.2.10: #i18486# Replaced PresenterSlideSorterView with PresenterSlideSorter.
2008/01/30 15:09:07 af 1.1.2.9: #i18486# Fixed repainting of the preview.
2008/01/23 15:21:16 af 1.1.2.8: #i18486# Fixed Linux compilation problems.
2008/01/21 15:33:01 af 1.1.2.7: #i18486# Code cleanup.
2008/01/09 18:36:57 cl 1.1.2.6: #i18486# use new slideshow api
2007/12/12 15:55:26 af 1.1.2.5: #i18486# Code cleanup.
2007/11/19 09:45:33 af 1.1.2.4: #i18486# Passing XComponentContext to some more view constructors.
2007/10/25 09:51:08 af 1.1.2.3: #i18486# Avoid IndexOutOfBoundsException.
2007/10/24 13:12:20 af 1.1.2.2: #i18486# Fixed inital compilation problems.
2007/10/24 12:26:56 af 1.1.2.1: #i18486# Initial revision.