diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-09-01 15:40:39 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-09-01 15:40:39 +0200 |
commit | d19609e118ee0bfb823945582e823d02bdaa7134 (patch) | |
tree | 96e8292eb268d6a6e549925c8bd006ad578aa053 /include/svx | |
parent | e62ec6d0499e6c517713e7d5b1855a9b2c518219 (diff) |
Missing Clone overrides
Change-Id: I0dda3dc849fce9ba994baa82f7e25497ea995c75
Diffstat (limited to 'include/svx')
-rw-r--r-- | include/svx/svx3ditems.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/svx/svx3ditems.hxx b/include/svx/svx3ditems.hxx index eb34a5ec8c09..10e1334146e6 100644 --- a/include/svx/svx3ditems.hxx +++ b/include/svx/svx3ditems.hxx @@ -65,6 +65,7 @@ public: Svx3DReducedLineGeometryItem(bool bVal = false); virtual SfxPoolItem* Create(SvStream& rIn, sal_uInt16 nItemVersion) const SAL_OVERRIDE; virtual sal_uInt16 GetVersion(sal_uInt16 nFileFormatVersion) const SAL_OVERRIDE; + SfxPoolItem * Clone(SfxItemPool *) const SAL_OVERRIDE; }; class SVX_DLLPUBLIC Svx3DNormalsKindItem : public SfxUInt16Item { @@ -309,6 +310,7 @@ public: Svx3DSmoothNormalsItem(bool bVal = true); virtual SfxPoolItem* Create(SvStream& rIn, sal_uInt16 nItemVersion) const SAL_OVERRIDE; virtual sal_uInt16 GetVersion(sal_uInt16 nFileFormatVersion) const SAL_OVERRIDE; + SfxPoolItem * Clone(SfxItemPool *) const SAL_OVERRIDE; }; // #107245# Item to replace bExtrudeSmoothFrontBack and bLatheSmoothFrontBack @@ -317,6 +319,7 @@ public: Svx3DSmoothLidsItem(bool bVal = false); virtual SfxPoolItem* Create(SvStream& rIn, sal_uInt16 nItemVersion) const SAL_OVERRIDE; virtual sal_uInt16 GetVersion(sal_uInt16 nFileFormatVersion) const SAL_OVERRIDE; + SfxPoolItem * Clone(SfxItemPool *) const SAL_OVERRIDE; }; // #107245# Item to replace bExtrudeCharacterMode and bLatheCharacterMode @@ -325,6 +328,7 @@ public: Svx3DCharacterModeItem(bool bVal = false); virtual SfxPoolItem* Create(SvStream& rIn, sal_uInt16 nItemVersion) const SAL_OVERRIDE; virtual sal_uInt16 GetVersion(sal_uInt16 nFileFormatVersion) const SAL_OVERRIDE; + SfxPoolItem * Clone(SfxItemPool *) const SAL_OVERRIDE; }; // #107245# Item to replace bExtrudeCloseFront and bLatheCloseFront @@ -333,6 +337,7 @@ public: Svx3DCloseFrontItem(bool bVal = true); SVX_DLLPRIVATE virtual SfxPoolItem* Create(SvStream& rIn, sal_uInt16 nItemVersion) const SAL_OVERRIDE; SVX_DLLPRIVATE virtual sal_uInt16 GetVersion(sal_uInt16 nFileFormatVersion) const SAL_OVERRIDE; + SfxPoolItem * Clone(SfxItemPool *) const SAL_OVERRIDE; }; // #107245# Item to replace bExtrudeCloseBack and bLatheCloseBack @@ -341,6 +346,7 @@ public: Svx3DCloseBackItem(bool bVal = true); SVX_DLLPRIVATE virtual SfxPoolItem* Create(SvStream& rIn, sal_uInt16 nItemVersion) const SAL_OVERRIDE; SVX_DLLPRIVATE virtual sal_uInt16 GetVersion(sal_uInt16 nFileFormatVersion) const SAL_OVERRIDE; + SfxPoolItem * Clone(SfxItemPool *) const SAL_OVERRIDE; }; #endif // INCLUDED_SVX_SVX3DITEMS_HXX |