From: Włodzimierz Skiba Date: Tue, 12 Oct 2004 20:48:22 +0000 (+0000) Subject: Reverted due to Darwin and other conflicts. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/e4a4a50b904a3194851fe5f81e09e266bb161596 Reverted due to Darwin and other conflicts. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29816 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/cmdproc.h b/include/wx/cmdproc.h index 8f619cb839..4ea73af904 100644 --- a/include/wx/cmdproc.h +++ b/include/wx/cmdproc.h @@ -30,7 +30,7 @@ class WXDLLEXPORT wxCommand : public wxObject { public: wxCommand(bool canUndoIt = false, const wxString& name = wxEmptyString); - ~wxCommand(){}; + ~wxCommand(){} // Override this to perform a command virtual bool Do() = 0; diff --git a/include/wx/datstrm.h b/include/wx/datstrm.h index b691d39a36..190ff341aa 100644 --- a/include/wx/datstrm.h +++ b/include/wx/datstrm.h @@ -30,7 +30,7 @@ public: #else wxDataInputStream(wxInputStream& s); #endif - ~wxDataInputStream(){}; + ~wxDataInputStream(){} bool IsOk() { return m_input->IsOk(); } @@ -78,7 +78,7 @@ public: #else wxDataOutputStream(wxOutputStream& s); #endif - ~wxDataOutputStream(){}; + ~wxDataOutputStream(){} bool IsOk() { return m_output->IsOk(); } diff --git a/include/wx/strconv.h b/include/wx/strconv.h index 233d4a0b54..59aefd6a5c 100644 --- a/include/wx/strconv.h +++ b/include/wx/strconv.h @@ -64,7 +64,7 @@ public: #endif // Unicode/ANSI // virtual dtor for any base class - virtual ~wxMBConv(){}; + virtual ~wxMBConv(); }; // ----------------------------------------------------------------------------