diff options
author | Noel Grandin <noel@peralex.com> | 2014-04-03 16:03:03 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-04-04 13:44:15 +0200 |
commit | 6f349af57ebd6d160b6354c2033c46467da4598a (patch) | |
tree | 5c15ce66930f349232e46a1d7ae68c13fbc9924d /include/svl | |
parent | 749fa381364c708f817ab57f6639c4f80fa9ff2b (diff) |
remove unnecessary virtual in SfxVisibilityItem
Change-Id: Ie27ce4f3a509e0e2a4073638e745bd5166cc3c81
Diffstat (limited to 'include/svl')
-rw-r--r-- | include/svl/visitem.hxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/svl/visitem.hxx b/include/svl/visitem.hxx index dbccd505333c..c4f501efaa7b 100644 --- a/include/svl/visitem.hxx +++ b/include/svl/visitem.hxx @@ -69,9 +69,9 @@ public: virtual SfxPoolItem * Clone(SfxItemPool * = 0) const SAL_OVERRIDE; - virtual sal_uInt16 GetValueCount() const; + sal_uInt16 GetValueCount() const; - virtual OUString GetValueTextByVal(bool bTheValue) const; + OUString GetValueTextByVal(bool bTheValue) const; bool GetValue() const { return m_nValue.bVisible; } |