From: Jouk Jansen Date: Wed, 15 Dec 2004 07:42:31 +0000 (+0000) Subject: Committing in . X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/41eb6d76b01ccbf41c34ecbfeeabb14a4ac2046f Committing in . fix for gtk-1.x Modified Files: wxWidgets/src/gtk/combobox.cpp ---------------------------------------------------------------------- git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@31016 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/combobox.cpp b/src/gtk/combobox.cpp index 9a1c2100bb..6ced6dccaa 100644 --- a/src/gtk/combobox.cpp +++ b/src/gtk/combobox.cpp @@ -769,8 +769,8 @@ void wxComboBox::GetSelection( long* from, long* to ) const { if (IsEditable()) { -#ifdef __WXGTK20__ GtkEditable *editable = GTK_EDITABLE(GTK_COMBO(m_widget)->entry); +#ifdef __WXGTK20__ gint start, end; gtk_editable_get_selection_bounds(editable, & start, & end); *from = start; diff --git a/src/gtk1/combobox.cpp b/src/gtk1/combobox.cpp index 9a1c2100bb..6ced6dccaa 100644 --- a/src/gtk1/combobox.cpp +++ b/src/gtk1/combobox.cpp @@ -769,8 +769,8 @@ void wxComboBox::GetSelection( long* from, long* to ) const { if (IsEditable()) { -#ifdef __WXGTK20__ GtkEditable *editable = GTK_EDITABLE(GTK_COMBO(m_widget)->entry); +#ifdef __WXGTK20__ gint start, end; gtk_editable_get_selection_bounds(editable, & start, & end); *from = start;