]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/choice.h
Added WINE and probably x-compile makefiles
[wxWidgets.git] / include / wx / choice.h
index bfe28e0ed1d5f83541578128107ec792f25391af..c87d9345c46e3ceb6a5af8d1d37548af5e21e82e 100644 (file)
@@ -17,7 +17,7 @@
 // ----------------------------------------------------------------------------
 
 #ifdef __GNUG__
-    #pragma interface "choicebase.h"
+    #pragma interface "choiccmn.h"
 #endif
 
 #include "wx/control.h"     // the base class
@@ -104,6 +104,11 @@ private:
 
     // the type of the client data for the items
     wxClientDataType m_clientDataItemsType;
+    // the above pure virtuals hide these virtuals in wxWindowBase
+    virtual void DoSetClientData(void* clientData ) { wxWindowBase::DoSetClientData(clientData); };
+    virtual void* DoGetClientData() const { return(wxWindowBase::DoGetClientData()); };
+    virtual void DoSetClientObject( wxClientData* clientData ) { wxWindowBase::DoSetClientObject(clientData); };
+    virtual wxClientData* DoGetClientObject() const { return(wxWindowBase::DoGetClientObject()); };
 };
 
 // ----------------------------------------------------------------------------