summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-08-08 09:27:10 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-08-08 09:27:10 +0200
commit161931ba7b915490ac9b9c57ca721857cf734fe0 (patch)
tree97e61c047a4df72d80dafcc33f7e337bf3533040
parent57dcc9f3e9a7d2ebc86cf444729a7a08820418a1 (diff)
loplugin:saloverride
Change-Id: I6a3cdf840468d6508e8ffecdc50d79041b9b4797
-rw-r--r--sc/qa/extras/scstyleloaderobj.cxx14
1 files changed, 7 insertions, 7 deletions
diff --git a/sc/qa/extras/scstyleloaderobj.cxx b/sc/qa/extras/scstyleloaderobj.cxx
index 06f7c9e2ca5a..996436f046cd 100644
--- a/sc/qa/extras/scstyleloaderobj.cxx
+++ b/sc/qa/extras/scstyleloaderobj.cxx
@@ -25,13 +25,13 @@ class ScStyleLoaderObj : public CalcUnoApiTest, apitest::XStyleLoader
public:
ScStyleLoaderObj();
- virtual void setUp();
- virtual void tearDown();
+ virtual void setUp() SAL_OVERRIDE;
+ virtual void tearDown() SAL_OVERRIDE;
- virtual uno::Reference< uno::XInterface > init();
- virtual uno::Reference< lang::XComponent > getTargetComponent();
- virtual uno::Reference< lang::XComponent > getSourceComponent();
- virtual OUString getTestURL();
+ virtual uno::Reference< uno::XInterface > init() SAL_OVERRIDE;
+ virtual uno::Reference< lang::XComponent > getTargetComponent() SAL_OVERRIDE;
+ virtual uno::Reference< lang::XComponent > getSourceComponent() SAL_OVERRIDE;
+ virtual OUString getTestURL() SAL_OVERRIDE;
CPPUNIT_TEST_SUITE(ScStyleLoaderObj);
CPPUNIT_TEST(testLoadStylesFromURL);
@@ -122,4 +122,4 @@ CPPUNIT_TEST_SUITE_REGISTRATION(ScStyleLoaderObj);
CPPUNIT_PLUGIN_IMPLEMENT();
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ \ No newline at end of file
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */