Eliminate (or at least reduce) 64-bit build warnings (as described in wxPG sourceforge bug report #2156069)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56239 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -525,7 +525,7 @@ public:
|
||||
|
||||
/** Returns number of buttons.
|
||||
*/
|
||||
int GetCount() const { return m_buttons.Count(); }
|
||||
unsigned int GetCount() const { return (unsigned int) m_buttons.size(); }
|
||||
|
||||
void Add( const wxString& label, int id = -2 );
|
||||
#if wxUSE_BMPBUTTON
|
||||
|
Reference in New Issue
Block a user