summaryrefslogtreecommitdiff
path: root/sdext/source/presenter/PresenterFrameworkObserver.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/presenter/PresenterFrameworkObserver.hxx')
-rw-r--r--sdext/source/presenter/PresenterFrameworkObserver.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sdext/source/presenter/PresenterFrameworkObserver.hxx b/sdext/source/presenter/PresenterFrameworkObserver.hxx
index c9df45487355..3ebc2cb59140 100644
--- a/sdext/source/presenter/PresenterFrameworkObserver.hxx
+++ b/sdext/source/presenter/PresenterFrameworkObserver.hxx
@@ -42,14 +42,14 @@ class PresenterFrameworkObserver
public PresenterFrameworkObserverInterfaceBase
{
public:
- typedef ::boost::function<bool(void)> Predicate;
+ typedef ::boost::function<bool()> Predicate;
typedef ::boost::function<void(bool)> Action;
static void RunOnUpdateEnd (
const css::uno::Reference<css::drawing::framework::XConfigurationController>&rxController,
const Action& rAction);
- virtual void SAL_CALL disposing (void) SAL_OVERRIDE;
+ virtual void SAL_CALL disposing() SAL_OVERRIDE;
virtual void SAL_CALL disposing (const css::lang::EventObject& rEvent)
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
virtual void SAL_CALL notifyConfigurationChange (
@@ -77,13 +77,13 @@ private:
const OUString& rsEventName,
const Predicate& rPredicate,
const Action& rAction);
- virtual ~PresenterFrameworkObserver (void);
+ virtual ~PresenterFrameworkObserver();
- void Shutdown (void);
+ void Shutdown();
/** Predicate that always returns true.
*/
- static bool True (void);
+ static bool True();
};
} } // end of namespace ::sdext::presenter