void wxComboBox::SelectAll()
{
- Select(0, GetLastPosition());
+ SetSelection(0, GetLastPosition());
}
bool wxComboBox::CanUndo() const
if (IsEditable())
{
GtkEditable *editable = GTK_EDITABLE(GTK_COMBO(m_widget)->entry);
+#ifdef __WXGTK20__
+ gint start, end;
+ gtk_editable_get_selection_bounds(editable, & start, & end);
+ *from = start;
+ *to = end;
+#else
*from = (long) editable->selection_start_pos;
*to = (long) editable->selection_end_pos;
+#endif
}
}