From 567ef6d5782cdb729b49005caf6005610ce03e22 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Thu, 27 Mar 2014 18:12:18 +0100 Subject: Second batch of adding SAL_OVERRIDE to overriding function declarations ...mostly done with a rewriting Clang plugin, with just some manual tweaking necessary to fix poor macro usage. Change-Id: Ie656f9d653fc716f72ac175925272696d509038f --- sd/source/ui/presenter/PresenterTextView.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sd/source/ui/presenter/PresenterTextView.hxx') diff --git a/sd/source/ui/presenter/PresenterTextView.hxx b/sd/source/ui/presenter/PresenterTextView.hxx index e1e32fe175dc..7bb018773482 100644 --- a/sd/source/ui/presenter/PresenterTextView.hxx +++ b/sd/source/ui/presenter/PresenterTextView.hxx @@ -56,17 +56,17 @@ public: // XInitialization virtual void SAL_CALL initialize (const css::uno::Sequence& rArguments) - throw (css::uno::Exception, css::uno::RuntimeException, std::exception); + throw (css::uno::Exception, css::uno::RuntimeException, std::exception) SAL_OVERRIDE; protected: - virtual void SAL_CALL disposing (void); + virtual void SAL_CALL disposing (void) SAL_OVERRIDE; virtual css::uno::Any GetPropertyValue ( - const OUString& rsPropertyName); + const OUString& rsPropertyName) SAL_OVERRIDE; virtual css::uno::Any SetPropertyValue ( const OUString& rsPropertyName, - const css::uno::Any& rValue); + const css::uno::Any& rValue) SAL_OVERRIDE; private: class Implementation; -- cgit