From: Gilles Depeyrot <gilles_depeyrot@mac.com>
Date: Wed, 27 Jun 2001 22:26:08 +0000 (+0000)
Subject: removed useless ; to allow smart preprocessing under Mac OS X
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/ac84e37d5fb20a9c7cee3fb5d11a929a206c54d6

removed useless ; to allow smart preprocessing under Mac OS X


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10697 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---

diff --git a/include/wx/dc.h b/include/wx/dc.h
index 7ca8eb3b76..667284b041 100644
--- a/include/wx/dc.h
+++ b/include/wx/dc.h
@@ -721,7 +721,7 @@ protected:
     wxPalette         m_palette;
 
 private:
-    DECLARE_NO_COPY_CLASS(wxDCBase);
+    DECLARE_NO_COPY_CLASS(wxDCBase)
     DECLARE_ABSTRACT_CLASS(wxDCBase)
 };
 
diff --git a/include/wx/mac/window.h b/include/wx/mac/window.h
index df3b0b102d..76be482a00 100644
--- a/include/wx/mac/window.h
+++ b/include/wx/mac/window.h
@@ -332,7 +332,7 @@ private:
     // common part of all ctors
     void Init();
 
-    DECLARE_NO_COPY_CLASS(wxWindow);
+    DECLARE_NO_COPY_CLASS(wxWindow)
     DECLARE_EVENT_TABLE()
 };