summaryrefslogtreecommitdiff
path: root/svtools/source/control/valueimp.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/source/control/valueimp.hxx')
-rw-r--r--svtools/source/control/valueimp.hxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/svtools/source/control/valueimp.hxx b/svtools/source/control/valueimp.hxx
index d04207434810..17fe872967d5 100644
--- a/svtools/source/control/valueimp.hxx
+++ b/svtools/source/control/valueimp.hxx
@@ -96,12 +96,12 @@ public:
/** Called by the corresponding ValueSet when it gets the focus.
Stores the new focus state and broadcasts a state change event.
*/
- void GetFocus (void);
+ void GetFocus();
/** Called by the corresponding ValueSet when it loses the focus.
Stores the new focus state and broadcasts a state change event.
*/
- void LoseFocus (void);
+ void LoseFocus();
// XComponent
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
@@ -166,11 +166,11 @@ private:
/** Tell all listeners that the object is dying. This callback is
usually called from the WeakComponentImplHelper class.
*/
- virtual void SAL_CALL disposing (void) SAL_OVERRIDE;
+ virtual void SAL_CALL disposing() SAL_OVERRIDE;
/** Return the number of items. This takes the None-Item into account.
*/
- sal_uInt16 getItemCount (void) const;
+ sal_uInt16 getItemCount() const;
/** Return the item associated with the given index. The None-Item is
taken into account which, when present, is taken to be the first
@@ -188,7 +188,7 @@ private:
DisposedException is thrown to inform the (indirect) caller of the
foul deed.
*/
- void ThrowIfDisposed (void)
+ void ThrowIfDisposed()
throw (::com::sun::star::lang::DisposedException);
/** Check whether the value set has a 'none' field, i.e. a field (button)
@@ -197,7 +197,7 @@ private:
Returns <true/> if there is a 'none' field and <false/> if it is
missing.
*/
- bool HasNoneField (void) const;
+ bool HasNoneField() const;
};
class ValueItemAcc : public ::cppu::WeakImplHelper5< ::com::sun::star::accessibility::XAccessible,