diff options
author | Noel Grandin <noel@peralex.com> | 2015-04-14 12:44:47 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-04-15 11:47:12 +0200 |
commit | 71b809959bb8f775d83dc52628448bb8b8322b28 (patch) | |
tree | f9aa4308050eb7d55611068602c0cf0e3c1b3690 /include/svx/AccessibleShapeTreeInfo.hxx | |
parent | 135907f2061550624ee1859745d94eee01849070 (diff) |
remove unnecessary use of void in function declarations
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
Diffstat (limited to 'include/svx/AccessibleShapeTreeInfo.hxx')
-rw-r--r-- | include/svx/AccessibleShapeTreeInfo.hxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/include/svx/AccessibleShapeTreeInfo.hxx b/include/svx/AccessibleShapeTreeInfo.hxx index ec316f2498bb..d7dc02c5b862 100644 --- a/include/svx/AccessibleShapeTreeInfo.hxx +++ b/include/svx/AccessibleShapeTreeInfo.hxx @@ -53,7 +53,7 @@ public: /** Use this constructor to create an empty object that is filled later with more meaningfull data. */ - AccessibleShapeTreeInfo (void); + AccessibleShapeTreeInfo(); /** Create a copy of the given shape info. @param rInfo @@ -61,7 +61,7 @@ public: */ AccessibleShapeTreeInfo (const AccessibleShapeTreeInfo& rInfo); - ~AccessibleShapeTreeInfo (void); + ~AccessibleShapeTreeInfo(); AccessibleShapeTreeInfo& operator= (const AccessibleShapeTreeInfo& rInfo); @@ -74,7 +74,7 @@ public: */ ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessibleComponent> - GetDocumentWindow (void) const { return mxDocumentWindow;} + GetDocumentWindow() const { return mxDocumentWindow;} /** Deprecated. Use the correctly named SetModelBroadcaster method instead. @@ -86,7 +86,7 @@ public: */ ::com::sun::star::uno::Reference< ::com::sun::star::document::XEventBroadcaster> - GetControllerBroadcaster (void) const { return mxModelBroadcaster;} + GetControllerBroadcaster() const { return mxModelBroadcaster;} /** Set a new broadcaster that sends events indicating shape changes. The broadcaster usually is or belongs to a document model. @@ -104,7 +104,7 @@ public: */ ::com::sun::star::uno::Reference< ::com::sun::star::document::XEventBroadcaster> - GetModelBroadcaster (void) const { return mxModelBroadcaster;} + GetModelBroadcaster() const { return mxModelBroadcaster;} /** Set the view that will be used to construct SvxTextEditSources which in turn are used to create accessible edit engines. @@ -118,7 +118,7 @@ public: @return The returned value may be NULL. */ - SdrView* GetSdrView (void) const { return mpView;} + SdrView* GetSdrView() const { return mpView;} /** Set a new controller. This will usually but not necessarily correspond to the SdrView. @@ -135,7 +135,7 @@ public: */ ::com::sun::star::uno::Reference< ::com::sun::star::frame::XController> - GetController (void) const { return mxController;} + GetController() const { return mxController;} /** Set the window that is used to construct SvxTextEditSources which in turn is used to create accessible edit engines. @@ -146,7 +146,7 @@ public: @return The returned value may be NULL. */ - vcl::Window* GetWindow (void) const { return mpWindow;} + vcl::Window* GetWindow() const { return mpWindow;} /** The view forwarder allows the transformation between internal and pixel coordinates and can be asked for the visible area. @@ -159,7 +159,7 @@ public: @return The returned pointer may be NULL. */ - const IAccessibleViewForwarder* GetViewForwarder (void) const { return mpViewForwarder;} + const IAccessibleViewForwarder* GetViewForwarder() const { return mpViewForwarder;} private: /** Deprecated. |