forked from AuroraMiddleware/gtk
GtkComboBoxText: Use gtk_combo_box_text_remove instead gtk_combo_box_text_remove_text
This commit is contained in:
parent
2dbfca9d02
commit
45c463e376
@ -846,7 +846,7 @@ gtk_combo_box_text_new_with_entry
|
||||
gtk_combo_box_text_append_text
|
||||
gtk_combo_box_text_insert_text
|
||||
gtk_combo_box_text_prepend_text
|
||||
gtk_combo_box_text_remove_text
|
||||
gtk_combo_box_text_remove
|
||||
gtk_combo_box_text_get_active_text
|
||||
|
||||
<SUBSECTION Standard>
|
||||
|
@ -849,7 +849,7 @@ gtk_combo_box_text_insert_text
|
||||
gtk_combo_box_text_new
|
||||
gtk_combo_box_text_new_with_entry
|
||||
gtk_combo_box_text_prepend_text
|
||||
gtk_combo_box_text_remove_text
|
||||
gtk_combo_box_text_remove
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
@ -38,7 +38,7 @@
|
||||
* You can add items to a GtkComboBoxText with
|
||||
* gtk_combo_box_text_append_text(), gtk_combo_box_text_insert_text()
|
||||
* or gtk_combo_box_text_prepend_text() and remove options with
|
||||
* gtk_combo_box_text_remove_text().
|
||||
* gtk_combo_box_text_remove().
|
||||
*/
|
||||
|
||||
G_DEFINE_TYPE (GtkComboBoxText, gtk_combo_box_text, GTK_TYPE_COMBO_BOX);
|
||||
|
@ -67,7 +67,7 @@ void gtk_combo_box_text_insert_text (GtkComboBoxText *combo_box
|
||||
const gchar *text);
|
||||
void gtk_combo_box_text_prepend_text (GtkComboBoxText *combo_box,
|
||||
const gchar *text);
|
||||
void gtk_combo_box_text_remove_text (GtkComboBoxText *combo_box,
|
||||
void gtk_combo_box_text_remove (GtkComboBoxText *combo_box,
|
||||
gint position);
|
||||
gchar *gtk_combo_box_text_get_active_text (GtkComboBoxText *combo_box);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user