X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..d0a84b63384ca1c1d8d20581fb56abbd1d826617:/include/wx/univ/checklst.h diff --git a/include/wx/univ/checklst.h b/include/wx/univ/checklst.h index e19ad5f718..619ab94038 100644 --- a/include/wx/univ/checklst.h +++ b/include/wx/univ/checklst.h @@ -6,16 +6,12 @@ // Created: 12.09.00 // RCS-ID: $Id$ // Copyright: (c) Vadim Zeitlin -// Licence: wxWidgets licence +// Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// #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_ -