diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-09-17 18:48:43 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-09-17 19:20:47 +0300 |
commit | a9cd260ebb7bf5760eee536cd911780773c6051d (patch) | |
tree | 18bf05f9cdafcb7a9c58e6be2463504f7f625545 /include/svx | |
parent | fff019debf14a0bf8cd358591a686191347f1542 (diff) |
WaE: overriding virtual function declaration not marked 'override'
Change-Id: If610c94f02da66d3f83f0787ef0dcebab47ebe2d
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/Palette.hxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/include/svx/Palette.hxx b/include/svx/Palette.hxx index 6eab3f46bed2..32088a834e4c 100644 --- a/include/svx/Palette.hxx +++ b/include/svx/Palette.hxx @@ -56,10 +56,10 @@ public: PaletteGPL( const OUString &rFPath, const OUString &rFName ); virtual ~PaletteGPL(); - virtual const OUString& GetName(); - virtual void LoadColorSet( SvxColorValueSet& rColorSet ); + virtual const OUString& GetName() SAL_OVERRIDE; + virtual void LoadColorSet( SvxColorValueSet& rColorSet ) SAL_OVERRIDE; - virtual bool IsValid(); + virtual bool IsValid() SAL_OVERRIDE; }; class PaletteSOC : public Palette @@ -72,10 +72,10 @@ public: PaletteSOC( const OUString &rFPath, const OUString &rFName ); virtual ~PaletteSOC(); - virtual const OUString& GetName(); - virtual void LoadColorSet( SvxColorValueSet& rColorSet ); + virtual const OUString& GetName() SAL_OVERRIDE; + virtual void LoadColorSet( SvxColorValueSet& rColorSet ) SAL_OVERRIDE; - virtual bool IsValid(); + virtual bool IsValid() SAL_OVERRIDE; }; #endif // INCLUDED_SVX_PALETTE_HXX |