X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/655719367ac5e131d9642e5783f3ecf64d1a3385..d92f5f03c9a1e432751498a48e9d227459087786:/include/wx/univ/checklst.h diff --git a/include/wx/univ/checklst.h b/include/wx/univ/checklst.h index d9a5b32a0a..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_ -