summaryrefslogtreecommitdiff
path: root/include/vcl
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl')
-rw-r--r--include/vcl/btndlg.hxx2
-rw-r--r--include/vcl/button.hxx2
-rw-r--r--include/vcl/dndhelp.hxx2
-rw-r--r--include/vcl/dockwin.hxx2
-rw-r--r--include/vcl/field.hxx4
-rw-r--r--include/vcl/introwin.hxx2
-rw-r--r--include/vcl/layout.hxx2
-rw-r--r--include/vcl/longcurr.hxx6
-rw-r--r--include/vcl/menu.hxx2
-rw-r--r--include/vcl/msgbox.hxx2
-rw-r--r--include/vcl/popupmenuwindow.hxx2
-rw-r--r--include/vcl/prgsbar.hxx2
-rw-r--r--include/vcl/splitwin.hxx2
-rw-r--r--include/vcl/status.hxx2
-rw-r--r--include/vcl/syswin.hxx2
-rw-r--r--include/vcl/tabctrl.hxx2
-rw-r--r--include/vcl/tabdlg.hxx2
-rw-r--r--include/vcl/texteng.hxx2
-rw-r--r--include/vcl/throbber.hxx2
-rw-r--r--include/vcl/toolbox.hxx2
-rw-r--r--include/vcl/txtattr.hxx8
-rw-r--r--include/vcl/unohelp2.hxx2
-rw-r--r--include/vcl/xtextedt.hxx4
23 files changed, 30 insertions, 30 deletions
diff --git a/include/vcl/btndlg.hxx b/include/vcl/btndlg.hxx
index 1c1dc6cafa59..3a955433bc33 100644
--- a/include/vcl/btndlg.hxx
+++ b/include/vcl/btndlg.hxx
@@ -62,7 +62,7 @@ protected:
public:
ButtonDialog( Window* pParent, WinBits nStyle = WB_STDDIALOG );
- ~ButtonDialog();
+ virtual ~ButtonDialog();
virtual void Resize() SAL_OVERRIDE;
virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE;
diff --git a/include/vcl/button.hxx b/include/vcl/button.hxx
index 9abba3e9d812..8e2d5ff3993c 100644
--- a/include/vcl/button.hxx
+++ b/include/vcl/button.hxx
@@ -530,7 +530,7 @@ private:
public:
ImageButton( Window* pParent, WinBits nStyle = 0 );
ImageButton( Window* pParent, const ResId& rResId );
- ~ImageButton();
+ virtual ~ImageButton();
};
class VCL_DLLPUBLIC ImageRadioButton : public RadioButton
diff --git a/include/vcl/dndhelp.hxx b/include/vcl/dndhelp.hxx
index a1dbf14014f5..116f46ac0797 100644
--- a/include/vcl/dndhelp.hxx
+++ b/include/vcl/dndhelp.hxx
@@ -106,7 +106,7 @@ private:
public:
DragAndDropWrapper( DragAndDropClient* pClient );
- ~DragAndDropWrapper();
+ virtual ~DragAndDropWrapper();
// ::com::sun::star::uno::XInterface
::com::sun::star::uno::Any SAL_CALL queryInterface( const ::com::sun::star::uno::Type & rType ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
diff --git a/include/vcl/dockwin.hxx b/include/vcl/dockwin.hxx
index 0f7199d60542..3872f334aa1d 100644
--- a/include/vcl/dockwin.hxx
+++ b/include/vcl/dockwin.hxx
@@ -281,7 +281,7 @@ protected:
public:
DockingWindow( Window* pParent, WinBits nStyle = WB_STDDOCKWIN );
DockingWindow( Window* pParent, const ResId& rResId );
- ~DockingWindow();
+ virtual ~DockingWindow();
virtual void StartDocking();
virtual bool Docking( const Point& rPos, Rectangle& rRect );
diff --git a/include/vcl/field.hxx b/include/vcl/field.hxx
index 38d1cc523439..f656c17384dd 100644
--- a/include/vcl/field.hxx
+++ b/include/vcl/field.hxx
@@ -601,7 +601,7 @@ class VCL_DLLPUBLIC CurrencyField : public SpinField, public CurrencyFormatter
{
public:
CurrencyField( Window* pParent, WinBits nWinStyle );
- ~CurrencyField();
+ virtual ~CurrencyField();
virtual bool PreNotify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
@@ -699,7 +699,7 @@ class VCL_DLLPUBLIC PatternBox : public ComboBox, public PatternFormatter
{
public:
PatternBox( Window* pParent, WinBits nWinStyle );
- ~PatternBox();
+ virtual ~PatternBox();
virtual bool PreNotify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
diff --git a/include/vcl/introwin.hxx b/include/vcl/introwin.hxx
index dcc247830039..7b9fc1e837ea 100644
--- a/include/vcl/introwin.hxx
+++ b/include/vcl/introwin.hxx
@@ -31,7 +31,7 @@ private:
public:
IntroWindow();
- ~IntroWindow();
+ virtual ~IntroWindow();
};
#endif // INCLUDED_VCL_INTROWIN_HXX
diff --git a/include/vcl/layout.hxx b/include/vcl/layout.hxx
index 577b8273e780..c69b44b08248 100644
--- a/include/vcl/layout.hxx
+++ b/include/vcl/layout.hxx
@@ -725,7 +725,7 @@ public:
OUString get_secondary_text() const;
void set_primary_text(const OUString &rPrimaryString);
void set_secondary_text(const OUString &rSecondaryString);
- ~MessageDialog();
+ virtual ~MessageDialog();
static void SetMessagesWidths(Window *pParent, VclMultiLineEdit *pPrimaryMessage,
VclMultiLineEdit *pSecondaryMessage);
diff --git a/include/vcl/longcurr.hxx b/include/vcl/longcurr.hxx
index c307fa071c87..b6a61051f8f8 100644
--- a/include/vcl/longcurr.hxx
+++ b/include/vcl/longcurr.hxx
@@ -49,7 +49,7 @@ protected:
LongCurrencyFormatter();
public:
- ~LongCurrencyFormatter();
+ virtual ~LongCurrencyFormatter();
virtual void Reformat() SAL_OVERRIDE;
virtual void ReformatAll() SAL_OVERRIDE;
@@ -90,7 +90,7 @@ private:
public:
LongCurrencyField( Window* pParent, WinBits nWinStyle );
- ~LongCurrencyField();
+ virtual ~LongCurrencyField();
virtual bool PreNotify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
@@ -117,7 +117,7 @@ class VCL_DLLPUBLIC LongCurrencyBox : public ComboBox, public LongCurrencyFormat
{
public:
LongCurrencyBox( Window* pParent, WinBits nWinStyle );
- ~LongCurrencyBox();
+ virtual ~LongCurrencyBox();
virtual bool PreNotify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
diff --git a/include/vcl/menu.hxx b/include/vcl/menu.hxx
index 3bf288095a2f..10ac7889e3b1 100644
--- a/include/vcl/menu.hxx
+++ b/include/vcl/menu.hxx
@@ -384,7 +384,7 @@ class VCL_DLLPUBLIC MenuBar : public Menu
public:
MenuBar();
MenuBar( const MenuBar& rMenu );
- ~MenuBar();
+ virtual ~MenuBar();
MenuBar& operator =( const MenuBar& rMenu );
diff --git a/include/vcl/msgbox.hxx b/include/vcl/msgbox.hxx
index 336671fe0234..bc5f7b20e695 100644
--- a/include/vcl/msgbox.hxx
+++ b/include/vcl/msgbox.hxx
@@ -52,7 +52,7 @@ public:
MessBox( Window* pParent, WinBits nStyle,
const OUString& rTitle, const OUString& rMessage );
MessBox( Window* pParent, const ResId& rResId );
- ~MessBox();
+ virtual ~MessBox();
virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE;
diff --git a/include/vcl/popupmenuwindow.hxx b/include/vcl/popupmenuwindow.hxx
index 30f498b77062..87ef34c60c08 100644
--- a/include/vcl/popupmenuwindow.hxx
+++ b/include/vcl/popupmenuwindow.hxx
@@ -29,7 +29,7 @@ private:
ImplData* mpImplData;
public:
PopupMenuFloatingWindow( Window* pParent, WinBits nStyle = (WB_SYSTEMFLOATWIN|WB_SYSTEMWINDOW|WB_NOBORDER) );
- ~PopupMenuFloatingWindow();
+ virtual ~PopupMenuFloatingWindow();
sal_uInt16 GetMenuStackLevel() const;
void SetMenuStackLevel( sal_uInt16 nLevel );
diff --git a/include/vcl/prgsbar.hxx b/include/vcl/prgsbar.hxx
index 0cf1006aaaf8..c00069828ae2 100644
--- a/include/vcl/prgsbar.hxx
+++ b/include/vcl/prgsbar.hxx
@@ -73,7 +73,7 @@ private:
public:
ProgressBar( Window* pParent, WinBits nWinBits = WB_STDPROGRESSBAR );
ProgressBar( Window* pParent, const ResId& rResId );
- ~ProgressBar();
+ virtual ~ProgressBar();
virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE;
virtual void Resize() SAL_OVERRIDE;
diff --git a/include/vcl/splitwin.hxx b/include/vcl/splitwin.hxx
index 35948731ba3c..b71b8e745b6e 100644
--- a/include/vcl/splitwin.hxx
+++ b/include/vcl/splitwin.hxx
@@ -126,7 +126,7 @@ private:
SAL_DLLPRIVATE SplitWindow & operator= (const SplitWindow &);
public:
SplitWindow( Window* pParent, WinBits nStyle = 0 );
- ~SplitWindow();
+ virtual ~SplitWindow();
virtual void StartSplit();
virtual void Split();
diff --git a/include/vcl/status.hxx b/include/vcl/status.hxx
index fb51b0e72e12..250d08d5fbe1 100644
--- a/include/vcl/status.hxx
+++ b/include/vcl/status.hxx
@@ -112,7 +112,7 @@ private:
public:
StatusBar( Window* pParent,
WinBits nWinStyle = WB_BORDER | WB_RIGHT );
- ~StatusBar();
+ virtual ~StatusBar();
virtual void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE;
virtual void Paint( const Rectangle& rRect ) SAL_OVERRIDE;
diff --git a/include/vcl/syswin.hxx b/include/vcl/syswin.hxx
index 32a6f92147d0..098f49e34d22 100644
--- a/include/vcl/syswin.hxx
+++ b/include/vcl/syswin.hxx
@@ -174,7 +174,7 @@ protected:
void SetWindowStateData( const WindowStateData& rData );
public:
- ~SystemWindow();
+ virtual ~SystemWindow();
virtual bool Notify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
virtual bool PreNotify( NotifyEvent& rNEvt ) SAL_OVERRIDE;
diff --git a/include/vcl/tabctrl.hxx b/include/vcl/tabctrl.hxx
index d062a16810ac..81057996b3ee 100644
--- a/include/vcl/tabctrl.hxx
+++ b/include/vcl/tabctrl.hxx
@@ -84,7 +84,7 @@ public:
TabControl( Window* pParent,
WinBits nStyle = WB_STDTABCONTROL );
TabControl( Window* pParent, const ResId& rResId );
- ~TabControl();
+ virtual ~TabControl();
virtual void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE;
virtual void KeyInput( const KeyEvent& rKEvt ) SAL_OVERRIDE;
diff --git a/include/vcl/tabdlg.hxx b/include/vcl/tabdlg.hxx
index ecce55a00d7f..c288a67e6eeb 100644
--- a/include/vcl/tabdlg.hxx
+++ b/include/vcl/tabdlg.hxx
@@ -42,7 +42,7 @@ public:
WinBits nStyle = WB_STDTABDIALOG );
TabDialog( Window* pParent, const ResId& rResId );
TabDialog( Window* pParent, const OString& rID, const OUString& rUIXMLDescription );
- ~TabDialog();
+ virtual ~TabDialog();
virtual void StateChanged( StateChangedType nStateChange ) SAL_OVERRIDE;
diff --git a/include/vcl/texteng.hxx b/include/vcl/texteng.hxx
index 377a55620a80..52714062fbaa 100644
--- a/include/vcl/texteng.hxx
+++ b/include/vcl/texteng.hxx
@@ -223,7 +223,7 @@ protected:
public:
TextEngine();
- ~TextEngine();
+ virtual ~TextEngine();
void SetText( const OUString& rStr );
OUString GetText( LineEnd aSeparator = LINEEND_LF ) const;
diff --git a/include/vcl/throbber.hxx b/include/vcl/throbber.hxx
index e5ec8236f3c8..2fe212e5965f 100644
--- a/include/vcl/throbber.hxx
+++ b/include/vcl/throbber.hxx
@@ -48,7 +48,7 @@ public:
public:
Throbber( Window* i_parentWindow, WinBits i_style, const ImageSet i_imageSet = IMAGES_AUTO );
Throbber( Window* i_parentWindow, const ResId& i_resId, const ImageSet i_imageSet = IMAGES_AUTO );
- ~Throbber();
+ virtual ~Throbber();
// Properties
void setStepTime( sal_Int32 nStepTime ) { mnStepTime = nStepTime; }
diff --git a/include/vcl/toolbox.hxx b/include/vcl/toolbox.hxx
index 2bc306a0a881..9a8f7e25c7d9 100644
--- a/include/vcl/toolbox.hxx
+++ b/include/vcl/toolbox.hxx
@@ -287,7 +287,7 @@ protected:
public:
ToolBox( Window* pParent, WinBits nStyle = 0 );
ToolBox( Window* pParent, const ResId& rResId );
- ~ToolBox();
+ virtual ~ToolBox();
virtual void Click();
virtual void DoubleClick();
diff --git a/include/vcl/txtattr.hxx b/include/vcl/txtattr.hxx
index 86dcbd0efa5b..d0075187f480 100644
--- a/include/vcl/txtattr.hxx
+++ b/include/vcl/txtattr.hxx
@@ -69,7 +69,7 @@ private:
public:
TextAttribFontColor( const Color& rColor );
TextAttribFontColor( const TextAttribFontColor& rAttr );
- ~TextAttribFontColor();
+ virtual ~TextAttribFontColor();
const Color& GetColor() const { return maColor; }
@@ -87,7 +87,7 @@ private:
public:
TextAttribFontWeight( FontWeight eWeight );
TextAttribFontWeight( const TextAttribFontWeight& rAttr );
- ~TextAttribFontWeight();
+ virtual ~TextAttribFontWeight();
virtual void SetFont( Font& rFont ) const SAL_OVERRIDE;
virtual TextAttrib* Clone() const SAL_OVERRIDE;
@@ -106,7 +106,7 @@ private:
public:
TextAttribHyperLink( const TextAttribHyperLink& rAttr );
- ~TextAttribHyperLink();
+ virtual ~TextAttribHyperLink();
void SetURL( const OUString& rURL ) { maURL = rURL; }
const OUString& GetURL() const { return maURL; }
@@ -127,7 +127,7 @@ class VCL_DLLPUBLIC TextAttribProtect : public TextAttrib
public:
TextAttribProtect();
TextAttribProtect( const TextAttribProtect& rAttr );
- ~TextAttribProtect();
+ virtual ~TextAttribProtect();
virtual void SetFont( Font& rFont ) const SAL_OVERRIDE;
virtual TextAttrib* Clone() const SAL_OVERRIDE;
diff --git a/include/vcl/unohelp2.hxx b/include/vcl/unohelp2.hxx
index e835bbde95f0..5563cfd0e9ec 100644
--- a/include/vcl/unohelp2.hxx
+++ b/include/vcl/unohelp2.hxx
@@ -41,7 +41,7 @@ namespace vcl { namespace unohelper {
public:
TextDataObject( const OUString& rText );
- ~TextDataObject();
+ virtual ~TextDataObject();
OUString& GetString() { return maText; }
diff --git a/include/vcl/xtextedt.hxx b/include/vcl/xtextedt.hxx
index 2f046138af52..fa29f7c5f18c 100644
--- a/include/vcl/xtextedt.hxx
+++ b/include/vcl/xtextedt.hxx
@@ -37,7 +37,7 @@ private:
public:
ExtTextEngine();
- ~ExtTextEngine();
+ virtual ~ExtTextEngine();
const OUString& GetGroupChars() const { return maGroupChars; }
void SetGroupChars( const OUString& r ) { maGroupChars = r; }
@@ -53,7 +53,7 @@ protected:
public:
ExtTextView( ExtTextEngine* pEng, Window* pWindow );
- ~ExtTextView();
+ virtual ~ExtTextView();
bool MatchGroup();