From: Włodzimierz Skiba Date: Wed, 15 Mar 2006 11:52:59 +0000 (+0000) Subject: wxTinderbox warning fix. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5429cf245532d124c1309ea956a2845eed195485 wxTinderbox warning fix. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@38107 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/choice.cpp b/src/gtk/choice.cpp index 454348b569..84eb8ca7f0 100644 --- a/src/gtk/choice.cpp +++ b/src/gtk/choice.cpp @@ -485,7 +485,7 @@ void wxChoice::DoApplyWidgetStyle(GtkRcStyle *style) int wxChoice::GtkAddHelper(GtkWidget *menu, size_t pos, const wxString& item) { - wxCHECK_MSG((pos>=0) && (pos<=(int)m_clientList.GetCount()), -1, wxT("invalid index")); + wxCHECK_MSG((pos>=0) && (pos<=m_clientList.GetCount()), -1, wxT("invalid index")); GtkWidget *menu_item = gtk_menu_item_new_with_label( wxGTK_CONV( item ) );