From 1b5ff3a3feed9f5a23dcf8de40189c0af2746483 Mon Sep 17 00:00:00 2001 From: =?utf8?q?V=C3=A1clav=20Slav=C3=ADk?= Date: Sun, 24 Aug 2003 13:27:56 +0000 Subject: [PATCH] fix gcc warnings git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23165 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/xtistrm.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/include/wx/xtistrm.h b/include/wx/xtistrm.h index 05205969c1..4fa90d91f7 100644 --- a/include/wx/xtistrm.h +++ b/include/wx/xtistrm.h @@ -251,8 +251,8 @@ class wxRuntimeDepersister : public wxDepersister struct wxRuntimeDepersisterInternal ; wxRuntimeDepersisterInternal * m_data ; public : - wxRuntimeDepersister() ; - ~wxRuntimeDepersister() ; + wxRuntimeDepersister(); + virtual ~wxRuntimeDepersister(); // returns the object having the corresponding ID fully constructed wxObject *GetObject(int objectID) ; @@ -327,8 +327,8 @@ private : wxTextOutputStream *m_fp; wxString ValueAsCode( const wxxVariant ¶m ) ; public: - wxCodeDepersister(wxTextOutputStream *out) ; - ~wxCodeDepersister() ; + wxCodeDepersister(wxTextOutputStream *out); + virtual ~wxCodeDepersister(); // allocate the new object on the heap, that object will have the passed in ID virtual void AllocateObject(int objectID, wxClassInfo *classInfo , -- 2.50.0