]> git.saurik.com Git - wxWidgets.git/commitdiff
removed trailing ; after DECLARE_ macros
authorGilles Depeyrot <gilles_depeyrot@mac.com>
Sun, 25 Nov 2001 15:18:38 +0000 (15:18 +0000)
committerGilles Depeyrot <gilles_depeyrot@mac.com>
Sun, 25 Nov 2001 15:18:38 +0000 (15:18 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12685 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

samples/widgets/button.cpp
samples/widgets/combobox.cpp
samples/widgets/gauge.cpp
samples/widgets/listbox.cpp
samples/widgets/notebook.cpp
samples/widgets/radiobox.cpp
samples/widgets/slider.cpp
samples/widgets/spinbtn.cpp
samples/widgets/static.cpp
samples/widgets/textctrl.cpp

index eee43761952a1ed2de4ddc3c248e9000e35c6e23..c5c3dcac65e04072ae3854a7428964a75c0e0f8b 100644 (file)
@@ -112,8 +112,8 @@ protected:
     wxTextCtrl *m_textLabel;
 
 private:
-    DECLARE_EVENT_TABLE();
-    DECLARE_WIDGETS_PAGE(ButtonWidgetsPage);
+    DECLARE_EVENT_TABLE()
+    DECLARE_WIDGETS_PAGE(ButtonWidgetsPage)
 };
 
 // ----------------------------------------------------------------------------
index 365b2778f015bbebe3c7502c49e865b429827df9..b270e2656c412c3a69ddc9adae51897c9458654e 100644 (file)
@@ -133,8 +133,8 @@ protected:
                *m_textDelete;
 
 private:
-    DECLARE_EVENT_TABLE();
-    DECLARE_WIDGETS_PAGE(ComboboxWidgetsPage);
+    DECLARE_EVENT_TABLE()
+    DECLARE_WIDGETS_PAGE(ComboboxWidgetsPage)
 };
 
 // ----------------------------------------------------------------------------
index 3075d39b81823db815142ff57aa54b5880b51fce..bdf8a1824063bbeb4f879a21bcdf627f88f70878 100644 (file)
@@ -122,8 +122,8 @@ protected:
     wxTimer *m_timer;
 
 private:
-    DECLARE_EVENT_TABLE();
-    DECLARE_WIDGETS_PAGE(GaugeWidgetsPage);
+    DECLARE_EVENT_TABLE()
+    DECLARE_WIDGETS_PAGE(GaugeWidgetsPage)
 };
 
 // ----------------------------------------------------------------------------
index f6defc4ce7558183ff7713ba8c60d7416493e9c4..7541db358b8cb88c48e89e5e87da1935770c63f6 100644 (file)
@@ -144,8 +144,8 @@ protected:
                *m_textDelete;
 
 private:
-    DECLARE_EVENT_TABLE();
-    DECLARE_WIDGETS_PAGE(ListboxWidgetsPage);
+    DECLARE_EVENT_TABLE()
+    DECLARE_WIDGETS_PAGE(ListboxWidgetsPage)
 };
 
 // ----------------------------------------------------------------------------
index 15e02fbfce9324be114310489166e701b03c3e36..92d8c089d57eec0a66b9618ef40fee599e57f12a 100644 (file)
@@ -153,8 +153,8 @@ protected:
     wxImageList *m_imageList;
 
 private:
-    DECLARE_EVENT_TABLE();
-    DECLARE_WIDGETS_PAGE(NotebookWidgetsPage);
+    DECLARE_EVENT_TABLE()
+    DECLARE_WIDGETS_PAGE(NotebookWidgetsPage)
 };
 
 // ----------------------------------------------------------------------------
index 3594d9de6cae5ab0b9e3762aaca2d48bd1a823c0..3f5fc02e39ee65a207306c43f205ccf86072ea9d 100644 (file)
@@ -119,8 +119,8 @@ protected:
                *m_textLabelBtns;
 
 private:
-    DECLARE_EVENT_TABLE();
-    DECLARE_WIDGETS_PAGE(RadioWidgetsPage);
+    DECLARE_EVENT_TABLE()
+    DECLARE_WIDGETS_PAGE(RadioWidgetsPage)
 };
 
 // ----------------------------------------------------------------------------
index bdac12d8cfe6f5516e25d4cd590185e1647ada4a..7c51fdf16c936187b6cc85ddb2b610c0705374f3 100644 (file)
@@ -130,8 +130,8 @@ protected:
                *m_textTickFreq;
 
 private:
-    DECLARE_EVENT_TABLE();
-    DECLARE_WIDGETS_PAGE(SliderWidgetsPage);
+    DECLARE_EVENT_TABLE()
+    DECLARE_WIDGETS_PAGE(SliderWidgetsPage)
 };
 
 // ----------------------------------------------------------------------------
index 99862dfd6b9d152da3f394e2c74e509f64eb152c..f63898e586de79aa3510bab06f530f1542a67049 100644 (file)
@@ -126,8 +126,8 @@ protected:
                *m_textMax;
 
 private:
-    DECLARE_EVENT_TABLE();
-    DECLARE_WIDGETS_PAGE(SpinBtnWidgetsPage);
+    DECLARE_EVENT_TABLE()
+    DECLARE_WIDGETS_PAGE(SpinBtnWidgetsPage)
 };
 
 // ----------------------------------------------------------------------------
index 61109a84d0853ba96a6b6c08621dd9e7cf2125d4..0802ff24548448ef5550acde2d2a38f10625ee42 100644 (file)
@@ -118,8 +118,8 @@ protected:
                *m_textLabel;
 
 private:
-    DECLARE_EVENT_TABLE();
-    DECLARE_WIDGETS_PAGE(StaticWidgetsPage);
+    DECLARE_EVENT_TABLE()
+    DECLARE_WIDGETS_PAGE(StaticWidgetsPage)
 };
 
 // ----------------------------------------------------------------------------
index 94d0a322d73bdd1e9183b03d59980ff988aa621f..be7e938f892db867c02933b8e3b3181abab8dc8f 100644 (file)
@@ -177,9 +177,8 @@ protected:
 
 private:
     // any class wishing to process wxWindows events must use this macro
-    DECLARE_EVENT_TABLE();
-
-    DECLARE_WIDGETS_PAGE(TextWidgetsPage);
+    DECLARE_EVENT_TABLE()
+    DECLARE_WIDGETS_PAGE(TextWidgetsPage)
 };
 
 // ----------------------------------------------------------------------------