X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1a5a83677555023d476401bab5809a1107222c74..3b8b23873a175edc3065f67a1865b7808dd6f80d:/src/gtk1/listbox.cpp diff --git a/src/gtk1/listbox.cpp b/src/gtk1/listbox.cpp index dad6cd6915..c8a8bea0d7 100644 --- a/src/gtk1/listbox.cpp +++ b/src/gtk1/listbox.cpp @@ -167,7 +167,7 @@ void wxListBox::Delete( int n ) wxNode *node = m_clientData.Nth( n ); if (!node) { - wxFAIL_MSG(_("wxListBox::Delete wrong index")); + wxFAIL_MSG("wxListBox::Delete wrong index"); } else m_clientData.DeleteNode( node ); @@ -347,7 +347,7 @@ int wxListBox::GetIndex( GtkWidget *item ) const return -1; }; -GtkWidget *wxListBox::GetDropTargetWidget(void) +GtkWidget *wxListBox::GetConnectWidget(void) { return GTK_WIDGET(m_list); };