summaryrefslogtreecommitdiff
path: root/include/test
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-10-12 16:04:04 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-10-12 17:52:29 +0200
commitb36963c0a6a09f70ca6d8d607dd3249a3496497d (patch)
tree33e06dc8d227957cb31355277fb5cf20b9918628 /include/test
parentb08247a12b43fcd9f86ecd912fce7d69a3e66061 (diff)
Replace "SAL_OVERRIDE" with "override" in LIBO_INTERNAL_ONLY code
Change-Id: I2ea407acd763ef2d7dae2d3b8f32525523ac8274
Diffstat (limited to 'include/test')
-rw-r--r--include/test/bootstrapfixture.hxx4
-rw-r--r--include/test/calc_unoapi_test.hxx4
-rw-r--r--include/test/unoapi_test.hxx4
3 files changed, 6 insertions, 6 deletions
diff --git a/include/test/bootstrapfixture.hxx b/include/test/bootstrapfixture.hxx
index f44c5b82d21b..448605a8dc1d 100644
--- a/include/test/bootstrapfixture.hxx
+++ b/include/test/bootstrapfixture.hxx
@@ -51,8 +51,8 @@ public:
BootstrapFixture( bool bAssertOnDialog = true, bool bNeedUCB = true );
virtual ~BootstrapFixture();
- virtual void setUp() SAL_OVERRIDE;
- virtual void tearDown() SAL_OVERRIDE;
+ virtual void setUp() override;
+ virtual void tearDown() override;
static void validate(const OUString& rURL, ValidationFormat);
};
diff --git a/include/test/calc_unoapi_test.hxx b/include/test/calc_unoapi_test.hxx
index f9afc22f5fb9..58cb55c707df 100644
--- a/include/test/calc_unoapi_test.hxx
+++ b/include/test/calc_unoapi_test.hxx
@@ -19,8 +19,8 @@ class OOO_DLLPUBLIC_TEST CalcUnoApiTest : public UnoApiTest
public:
CalcUnoApiTest(const OUString& path);
- virtual void setUp() SAL_OVERRIDE;
- virtual void tearDown() SAL_OVERRIDE;
+ virtual void setUp() override;
+ virtual void tearDown() override;
private:
css::uno::Reference<css::uno::XInterface> m_xCalcComponent;
diff --git a/include/test/unoapi_test.hxx b/include/test/unoapi_test.hxx
index a2f5c2fbffeb..870f1402ce2b 100644
--- a/include/test/unoapi_test.hxx
+++ b/include/test/unoapi_test.hxx
@@ -25,8 +25,8 @@ public:
void createFileURL(const OUString& aFileBase, OUString& rFilePath);
- virtual void setUp() SAL_OVERRIDE;
- virtual void tearDown() SAL_OVERRIDE;
+ virtual void setUp() override;
+ virtual void tearDown() override;
protected:
void closeDocument( css::uno::Reference< css::lang::XComponent > xDocument );