diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 16:04:04 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-12 17:52:29 +0200 |
commit | b36963c0a6a09f70ca6d8d607dd3249a3496497d (patch) | |
tree | 33e06dc8d227957cb31355277fb5cf20b9918628 /configmgr/qa/unit | |
parent | b08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff) |
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'configmgr/qa/unit')
-rw-r--r-- | configmgr/qa/unit/test.cxx | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/configmgr/qa/unit/test.cxx b/configmgr/qa/unit/test.cxx index 6985cab57fde..89dac95c113f 100644 --- a/configmgr/qa/unit/test.cxx +++ b/configmgr/qa/unit/test.cxx @@ -65,8 +65,8 @@ namespace { class Test: public CppUnit::TestFixture { public: - virtual void setUp() SAL_OVERRIDE; - virtual void tearDown() SAL_OVERRIDE; + virtual void setUp() override; + virtual void tearDown() override; void testKeyFetch(); void testKeySet(); @@ -133,11 +133,11 @@ protected: private: virtual void SAL_CALL disposing(css::lang::EventObject const &) - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL propertyChange( css::beans::PropertyChangeEvent const &) - throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; + throw (css::uno::RuntimeException, std::exception) override; int count_; bool * destroyed_; @@ -191,7 +191,7 @@ public: SimpleRecursiveTest(Test const & theTest, int count, bool * destroyed); private: - virtual void step() const SAL_OVERRIDE; + virtual void step() const override; }; SimpleRecursiveTest::SimpleRecursiveTest( @@ -500,7 +500,7 @@ protected: virtual bool iteration() = 0; private: - virtual void SAL_CALL run() SAL_OVERRIDE; + virtual void SAL_CALL run() override; osl::Condition & stop_; bool success_; @@ -536,7 +536,7 @@ public: OUString const & relative); private: - virtual bool iteration() SAL_OVERRIDE; + virtual bool iteration() override; Test const & test_; OUString path_; @@ -580,7 +580,7 @@ public: OUString const & relative); private: - virtual bool iteration() SAL_OVERRIDE; + virtual bool iteration() override; Test const & test_; OUString path_; |