diff options
-rw-r--r-- | include/svtools/grfmgr.hxx | 1 | ||||
-rw-r--r-- | svtools/source/graphic/grfattr.cxx | 7 |
2 files changed, 0 insertions, 8 deletions
diff --git a/include/svtools/grfmgr.hxx b/include/svtools/grfmgr.hxx index abd8b2928d0a..18af8206f31c 100644 --- a/include/svtools/grfmgr.hxx +++ b/include/svtools/grfmgr.hxx @@ -102,7 +102,6 @@ private: public: GraphicAttr(); - ~GraphicAttr(); bool operator==( const GraphicAttr& rAttr ) const; bool operator!=( const GraphicAttr& rAttr ) const { return !( *this == rAttr ); } diff --git a/svtools/source/graphic/grfattr.cxx b/svtools/source/graphic/grfattr.cxx index 03d49086856e..6b5cd6c95068 100644 --- a/svtools/source/graphic/grfattr.cxx +++ b/svtools/source/graphic/grfattr.cxx @@ -41,12 +41,6 @@ GraphicAttr::GraphicAttr() : { } - -GraphicAttr::~GraphicAttr() -{ -} - - bool GraphicAttr::operator==( const GraphicAttr& rAttr ) const { return( ( mfGamma == rAttr.mfGamma ) && @@ -66,5 +60,4 @@ bool GraphicAttr::operator==( const GraphicAttr& rAttr ) const ( meDrawMode == rAttr.meDrawMode ) ); } - /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |