diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-11-27 14:24:29 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-11-27 14:24:29 +0100 |
commit | 29315d772c43ece37802c53214a0942daaa7a044 (patch) | |
tree | b91f3510a25f88992b4f77ccb323ca22d7991c5c /svx/source/gallery2 | |
parent | e5e8136c6a7f1c30ec733b7bd0992c5d8007b260 (diff) |
Remve obsolete DBG_CTOR/DTOR stuff again
...which 0a063f3a36eaf7b90ab6a5cd5b2ad6a63ce9742c re-introduced in error?
Change-Id: I2866165bddc74361dcb72e37cf98fb801f629e9e
Diffstat (limited to 'svx/source/gallery2')
-rw-r--r-- | svx/source/gallery2/gallery1.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svx/source/gallery2/gallery1.cxx b/svx/source/gallery2/gallery1.cxx index 44de1d76c965..a6bb21c0ac69 100644 --- a/svx/source/gallery2/gallery1.cxx +++ b/svx/source/gallery2/gallery1.cxx @@ -160,8 +160,8 @@ private: public: GalleryThemeCacheEntry( const GalleryThemeEntry* pThemeEntry, GalleryTheme* pTheme ) : - mpThemeEntry( pThemeEntry ), mpTheme( pTheme ) { DBG_CTOR( GalleryThemeCacheEntry, NULL ); } - ~GalleryThemeCacheEntry() { delete mpTheme; DBG_DTOR( GalleryThemeCacheEntry, NULL ); } + mpThemeEntry( pThemeEntry ), mpTheme( pTheme ) {} + ~GalleryThemeCacheEntry() { delete mpTheme; } const GalleryThemeEntry* GetThemeEntry() const { return mpThemeEntry; } GalleryTheme* GetTheme() const { return mpTheme; } |