diff options
author | Kohei Yoshida <kohei.yoshida@suse.com> | 2012-02-17 16:57:09 -0500 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@suse.com> | 2012-02-22 14:02:03 -0500 |
commit | 561dd143665caa8f21648b1822156e37d1e352bb (patch) | |
tree | 3a2824b569cf9d0c5c115a8b456a1077828414d2 /sc/inc/dptabsrc.hxx | |
parent | 94d5262ed88d40d7f1793e0d82534ecdc541b944 (diff) |
Removed virtual-ness from effectively non-virtual functions.
Diffstat (limited to 'sc/inc/dptabsrc.hxx')
-rw-r--r-- | sc/inc/dptabsrc.hxx | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/sc/inc/dptabsrc.hxx b/sc/inc/dptabsrc.hxx index aa1f7e561f69..fd704ed5969b 100644 --- a/sc/inc/dptabsrc.hxx +++ b/sc/inc/dptabsrc.hxx @@ -414,16 +414,14 @@ public: virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames() throw(::com::sun::star::uno::RuntimeException); - virtual sal_uInt16 getOrientation() const; - virtual void setOrientation(sal_uInt16 nNew); - virtual long getPosition() const; - virtual void setPosition(long nNew); - virtual sal_Bool getIsDataLayoutDimension() const; - virtual sal_uInt16 getFunction() const; - virtual void setFunction(sal_uInt16 nNew); // for data dimension - virtual long getUsedHierarchy() const; - virtual void setUsedHierarchy(long nNew); - virtual sal_Bool isDuplicated() const; + sal_uInt16 getOrientation() const; + void setOrientation(sal_uInt16 nNew); + long getPosition() const; + bool getIsDataLayoutDimension() const; + sal_uInt16 getFunction() const; + void setFunction(sal_uInt16 nNew); // for data dimension + long getUsedHierarchy() const; + void setUsedHierarchy(long nNew); bool HasSelectedPage() const { return bHasSelectedPage; } const ScDPItemData& GetSelectedData(); |