diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-07-28 09:29:35 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-07-28 09:43:14 +0300 |
commit | 36e1a903c4783818f779a111dd13fe78805df54c (patch) | |
tree | f8a2512093d5505f94aeaa529b452fa87b270a19 | |
parent | a8df51771d01903cbb06913f9bfa6ceb2b020d42 (diff) |
WaE: overriding virtual function declaration not marked 'override'
Change-Id: I18274d920865f8e28377acce8084eb1629ff8127
-rw-r--r-- | editeng/qa/unit/core-test.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/qa/unit/core-test.cxx b/editeng/qa/unit/core-test.cxx index 4e9b82b30ee5..4090db4d8978 100644 --- a/editeng/qa/unit/core-test.cxx +++ b/editeng/qa/unit/core-test.cxx @@ -349,7 +349,7 @@ namespace { public: UrlEditEngine(SfxItemPool *pPool) : EditEngine(pPool) {} - virtual OUString CalcFieldValue( const SvxFieldItem&, sal_Int32, sal_Int32, Color*&, Color*& ) + virtual OUString CalcFieldValue( const SvxFieldItem&, sal_Int32, sal_Int32, Color*&, Color*& ) SAL_OVERRIDE { return OUString("jim@bob.com"); // a sophisticated view of value: } |