X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/18c5099700db5b60042618077ae943ba65e7a7a8..3684ade82ec6f5fb7ff72341e26060b6ea0793c8:/include/wx/msw/choice.h diff --git a/include/wx/msw/choice.h b/include/wx/msw/choice.h index fdc9fef5b8..c2b47f69c5 100644 --- a/include/wx/msw/choice.h +++ b/include/wx/msw/choice.h @@ -12,7 +12,7 @@ #ifndef _WX_CHOICE_H_ #define _WX_CHOICE_H_ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface "choice.h" #endif @@ -22,8 +22,6 @@ class WXDLLEXPORT wxChoice : public wxChoiceBase { - DECLARE_DYNAMIC_CLASS(wxChoice) - public: // ctors wxChoice() { } @@ -52,6 +50,7 @@ public: // implement base class pure virtuals virtual int DoAppend(const wxString& item); + virtual int DoInsert(const wxString& item, int pos); virtual void Delete(int n); virtual void Clear(); @@ -84,6 +83,8 @@ protected: // free all memory we have (used by Clear() and dtor) void Free(); + + DECLARE_DYNAMIC_CLASS_NO_COPY(wxChoice) }; #endif // _WX_CHOICE_H_