]> git.saurik.com Git - wxWidgets.git/commitdiff
Reverted due to Darwin and other conflicts.
authorWłodzimierz Skiba <abx@abx.art.pl>
Tue, 12 Oct 2004 20:48:22 +0000 (20:48 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Tue, 12 Oct 2004 20:48:22 +0000 (20:48 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29816 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/cmdproc.h
include/wx/datstrm.h
include/wx/strconv.h

index 8f619cb8390649845a197d836b5d39de6bd4aba9..4ea73af904449493b962eb4f0dcc254170fa08c3 100644 (file)
@@ -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;
index b691d39a360abafd5b7b8c2f4d49d8d288b9c209..190ff341aa055ae83bda4b20d1846debe688864d 100644 (file)
@@ -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(); }
 
index 233d4a0b54f1aaddfe9d49ed8e18425cd9086c19..59aefd6a5c3de1d9b489a2967776c36a358b7b41 100644 (file)
@@ -64,7 +64,7 @@ public:
 #endif // Unicode/ANSI
 
     // virtual dtor for any base class
-    virtual ~wxMBConv(){};
+    virtual ~wxMBConv();
 };
 
 // ----------------------------------------------------------------------------