]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/variant.h
Allow wxPGMultiButton to work even if primary editor control was not created in wxPGE...
[wxWidgets.git] / include / wx / variant.h
index 89cb6c437d73444f1e307e751efd4796007227d1..a491b6f2ad99a6563cd8279ab1b2145ee9da1831 100644 (file)
@@ -186,14 +186,12 @@ public:
     long GetLong() const;
 
     // bool
-#ifdef HAVE_BOOL
     wxVariant(bool val, const wxString& name = wxEmptyString);
     bool operator== (bool value) const;
     bool operator!= (bool value) const;
     void operator= (bool value) ;
     inline operator bool () const {  return GetBool(); }
     bool GetBool() const ;
-#endif
 
     // wxDateTime
 #if wxUSE_DATETIME