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: Ie656f9d653fc716f72ac175925272696d509038f
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
At the moment, this implementation is parallel to the existing TaskPane implementation, but on the medium term, it is
intended to replace it. No change in functionality is planned for the moment, just the panel selection is done via
a tab bar, instead of the the "jumping drawers".
Pending tasks (as known so far):
- Accessibility. No implementation at all, yet.
- showing/hiding tool panels from the "View" drop down menu
- connection to the resource framework. At the moment, de/activating panels completely bypasses the resource
framework.
- alternative implementation of the PanelDeckLayouter which mimics the old design. To be activated by default, for
the moment.
- removal of the (old, by then) TaskPane implementation. Care needs to be taken that the framework API stays
unchanged, i.e., the current ToolPanel resource must be renamed back to RightPane when RightPane is not
occupied anymore by the old implementation. Same for other resource names.
2006/11/16 14:35:02 af 1.9.200.3: #i68075# Optimizations to increase start-up performance.
2006/09/21 09:09:40 af 1.9.200.2: #i68075# Made mpContentWindow and mpTitleToolBox scoped_ptrs.
2006/08/23 11:22:34 af 1.9.200.1: #i68075# Transition to new drawing framework.
2005/10/10 14:36:24 af 1.7.80.2: RESYNC: (1.7-1.8); FILE MERGED
2005/08/08 11:38:19 af 1.7.80.1: #i48402# Added argument for docking window title to constructor.
2004/06/28 07:39:27 af 1.1.2.5: #i22705# Listening for state changes to init layout when necessary.
2004/06/15 14:46:46 af 1.1.2.4: #i22705# Added argument for resource id to constructor.
2004/06/12 12:14:28 af 1.1.2.3: #i22705# AddMenu() returns id of new menu. Added border that is drown arround content window.
2004/06/11 07:16:56 af 1.1.2.2: #i22705# Preparation to make the docking window show a titlem, menu, and closer.
2004/06/04 04:46:31 af 1.1.2.1: #i22705# Initial revision.