GtkComboBoxText: Use gtk_combo_box_text_remove instead gtk_combo_box_text_remove_text
This commit is contained in:
@ -846,7 +846,7 @@ gtk_combo_box_text_new_with_entry
|
|||||||
gtk_combo_box_text_append_text
|
gtk_combo_box_text_append_text
|
||||||
gtk_combo_box_text_insert_text
|
gtk_combo_box_text_insert_text
|
||||||
gtk_combo_box_text_prepend_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
|
gtk_combo_box_text_get_active_text
|
||||||
|
|
||||||
<SUBSECTION Standard>
|
<SUBSECTION Standard>
|
||||||
|
|||||||
@ -849,7 +849,7 @@ gtk_combo_box_text_insert_text
|
|||||||
gtk_combo_box_text_new
|
gtk_combo_box_text_new
|
||||||
gtk_combo_box_text_new_with_entry
|
gtk_combo_box_text_new_with_entry
|
||||||
gtk_combo_box_text_prepend_text
|
gtk_combo_box_text_prepend_text
|
||||||
gtk_combo_box_text_remove_text
|
gtk_combo_box_text_remove
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|||||||
@ -38,7 +38,7 @@
|
|||||||
* You can add items to a GtkComboBoxText with
|
* You can add items to a GtkComboBoxText with
|
||||||
* gtk_combo_box_text_append_text(), gtk_combo_box_text_insert_text()
|
* gtk_combo_box_text_append_text(), gtk_combo_box_text_insert_text()
|
||||||
* or gtk_combo_box_text_prepend_text() and remove options with
|
* 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);
|
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);
|
const gchar *text);
|
||||||
void gtk_combo_box_text_prepend_text (GtkComboBoxText *combo_box,
|
void gtk_combo_box_text_prepend_text (GtkComboBoxText *combo_box,
|
||||||
const gchar *text);
|
const gchar *text);
|
||||||
void gtk_combo_box_text_remove_text (GtkComboBoxText *combo_box,
|
void gtk_combo_box_text_remove (GtkComboBoxText *combo_box,
|
||||||
gint position);
|
gint position);
|
||||||
gchar *gtk_combo_box_text_get_active_text (GtkComboBoxText *combo_box);
|
gchar *gtk_combo_box_text_get_active_text (GtkComboBoxText *combo_box);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user