X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a152561c76dbed50d23f28d6e5761b4ece968156..3569e0d042fa09417c2777b3da833a1df5096e06:/include/wx/palmos/checkbox.h

diff --git a/include/wx/palmos/checkbox.h b/include/wx/palmos/checkbox.h
index d98110bf68..a96f5f9db0 100644
--- a/include/wx/palmos/checkbox.h
+++ b/include/wx/palmos/checkbox.h
@@ -12,12 +12,8 @@
 #ifndef _WX_CHECKBOX_H_
 #define _WX_CHECKBOX_H_
 
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma interface "checkbox.h"
-#endif
-
 // Checkbox item (single checkbox)
-class WXDLLEXPORT wxCheckBox : public wxCheckBoxBase
+class WXDLLIMPEXP_CORE wxCheckBox : public wxCheckBoxBase
 {
 public:
     wxCheckBox() { }
@@ -59,6 +55,8 @@ protected:
 
 private:
     DECLARE_DYNAMIC_CLASS_NO_COPY(wxCheckBox)
+    // current state of the checkbox
+    wxCheckBoxState m_state;
 };
 
 #endif