summaryrefslogtreecommitdiff
path: root/svx/source/gallery2/galbrws1.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-04-01 19:18:35 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-04-01 19:22:54 +0200
commit362d4f0cd4e50111edfae9d30c90602c37ed65a2 (patch)
tree0b432c049d580dcac6130bca9fb028bab8af8fa8 /svx/source/gallery2/galbrws1.hxx
parentb66d87086804460c1986df1b832fd6b2ea075a90 (diff)
Explicitly mark overriding destructors as "virtual"
It appears that the C++ standard allows overriding destructors to be marked "override," but at least some MSVC versions complain about it, so at least make sure such destructors are explicitly marked "virtual." Change-Id: I0e1cafa7584fd16ebdce61f569eae2373a71b0a1
Diffstat (limited to 'svx/source/gallery2/galbrws1.hxx')
-rw-r--r--svx/source/gallery2/galbrws1.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/gallery2/galbrws1.hxx b/svx/source/gallery2/galbrws1.hxx
index 40881ae9db98..8269f60b96e8 100644
--- a/svx/source/gallery2/galbrws1.hxx
+++ b/svx/source/gallery2/galbrws1.hxx
@@ -37,7 +37,7 @@ private:
public:
GalleryButton( GalleryBrowser1* pParent, WinBits nWinBits );
- ~GalleryButton();
+ virtual ~GalleryButton();
};
// - GalleryThemeListBox -
@@ -54,7 +54,7 @@ protected:
public:
GalleryThemeListBox( GalleryBrowser1* pParent, WinBits nWinBits );
- ~GalleryThemeListBox();
+ virtual ~GalleryThemeListBox();
};
// - GalleryBrowser1 -
@@ -123,7 +123,7 @@ public:
Gallery* pGallery,
const ::boost::function<sal_Bool(const KeyEvent&,Window*)>& rKeyInputHandler,
const ::boost::function<void(void)>& rThemeSlectionHandler);
- ~GalleryBrowser1();
+ virtual ~GalleryBrowser1();
void SelectTheme( const OUString& rThemeName ) { mpThemes->SelectEntry( rThemeName ); SelectThemeHdl( NULL ); }
void SelectTheme( sal_uIntPtr nThemePos ) { mpThemes->SelectEntryPos( (sal_uInt16) nThemePos ); SelectThemeHdl( NULL ); }