diff options
author | Michael Meeks <michael.meeks@novell.com> | 2011-09-26 10:02:50 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@novell.com> | 2011-09-26 10:03:29 +0100 |
commit | 8b74387620932c1bc93fce885ebdf82c55f4c9ff (patch) | |
tree | b58236479afaf177d8211b9b034ff1bd00311105 /svx/inc | |
parent | 7b99502b3241cb13c5e7aa5f97c5645c16e35a7d (diff) |
remove empty destructors in-lined on Mac, causing build errors
Diffstat (limited to 'svx/inc')
-rw-r--r-- | svx/inc/svx/xtable.hxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/svx/inc/svx/xtable.hxx b/svx/inc/svx/xtable.hxx index cebbc75e86dc..e2ba7271fd3d 100644 --- a/svx/inc/svx/xtable.hxx +++ b/svx/inc/svx/xtable.hxx @@ -310,7 +310,6 @@ public: explicit XColorList( const String& rPath, XOutdevItemPool* pXInPool = NULL ) : XPropertyList( XCOLOR_LIST, "soc", rPath, pXInPool ) {} - virtual ~XColorList() {} using XPropertyList::Replace; using XPropertyList::Remove; @@ -431,7 +430,7 @@ class impXGradientList; class SVX_DLLPUBLIC XGradientList : public XPropertyList { private: - impXGradientList* mpData; + impXGradientList* mpData; void impCreate(); void impDestroy(); @@ -466,7 +465,6 @@ public: explicit XBitmapList( const String& rPath, XOutdevItemPool* pXInPool = NULL ) : XPropertyList( XBITMAP_LIST, "sob", rPath, pXInPool ) {} - virtual ~XBitmapList() {} using XPropertyList::Replace; using XPropertyList::Remove; |