X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1777b9bbf4573dabecf4a3256d0d3c2c0c2a3fdf..e4b4d60e568af6b48054868ff85ee8ea59e9b0d8:/include/wx/choice.h diff --git a/include/wx/choice.h b/include/wx/choice.h index bfe28e0ed1..c87d9345c4 100644 --- a/include/wx/choice.h +++ b/include/wx/choice.h @@ -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()); }; }; // ----------------------------------------------------------------------------