X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/a290fa5a7deebe9d96c0c0089d18e27d4bd9b624..f36b3a915e4543fbbd9c911724404b016972aabc:/include/wx/univ/checklst.h diff --git a/include/wx/univ/checklst.h b/include/wx/univ/checklst.h index 44233e09ef..619ab94038 100644 --- a/include/wx/univ/checklst.h +++ b/include/wx/univ/checklst.h @@ -12,10 +12,6 @@ #ifndef _WX_UNIV_CHECKLST_H_ #define _WX_UNIV_CHECKLST_H_ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) - #pragma interface "univchecklst.h" -#endif - // ---------------------------------------------------------------------------- // actions // ---------------------------------------------------------------------------- @@ -74,8 +70,8 @@ public: const wxString& name = wxListBoxNameStr); // implement check list box methods - virtual bool IsChecked(size_t item) const; - virtual void Check(size_t item, bool check = true); + virtual bool IsChecked(unsigned int item) const; + virtual void Check(unsigned int item, bool check = true); // and input handling virtual bool PerformAction(const wxControlAction& action, @@ -84,11 +80,11 @@ public: // override all methods which add/delete items to update m_checks array as // well - virtual void Delete(int n); + virtual void Delete(unsigned int n); protected: virtual int DoAppend(const wxString& item); - virtual void DoInsertItems(const wxArrayString& items, int pos); + virtual void DoInsertItems(const wxArrayString& items, unsigned int pos); virtual void DoSetItems(const wxArrayString& items, void **clientData); virtual void DoClear(); @@ -126,4 +122,3 @@ public: }; #endif // _WX_UNIV_CHECKLST_H_ -