diff options
author | Havoc Pennington <hp@redhat.com> | 2001-03-16 20:12:40 +0000 |
---|---|---|
committer | Havoc Pennington <hp@src.gnome.org> | 2001-03-16 20:12:40 +0000 |
commit | 52658cd3dc2ec01fe9cfcb5f9253b00febc8e039 (patch) | |
tree | 8e6c0e02a5385ef57bc341284d4c4bbc7e467d7d /gtk/gtkcombo.h | |
parent | e7a21a2eec40ddb38e4b27b4fe818dbd20351259 (diff) | |
download | gtk+-52658cd3dc2ec01fe9cfcb5f9253b00febc8e039.tar.gz |
Applied patch from Nils Barth (bug # 51041) to replace "gint" with
2001-03-16 Havoc Pennington <hp@redhat.com>
* Applied patch from Nils Barth (bug # 51041) to
replace "gint" with "gboolean" and 0/1 with TRUE/FALSE
in various places.
Diffstat (limited to 'gtk/gtkcombo.h')
-rw-r--r-- | gtk/gtkcombo.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gtk/gtkcombo.h b/gtk/gtkcombo.h index 6345464f7d..06ac0a26b9 100644 --- a/gtk/gtkcombo.h +++ b/gtk/gtkcombo.h @@ -76,17 +76,17 @@ GtkType gtk_combo_get_type (void) G_GNUC_CONST; GtkWidget* gtk_combo_new (void); /* the text in the entry must be or not be in the list */ void gtk_combo_set_value_in_list (GtkCombo* combo, - gint val, - gint ok_if_empty); -/* set/unset arrows working for changing the value (can be annoying */ + gboolean val, + gboolean ok_if_empty); +/* set/unset arrows working for changing the value (can be annoying) */ void gtk_combo_set_use_arrows (GtkCombo* combo, - gint val); + gboolean val); /* up/down arrows change value if current value not in list */ void gtk_combo_set_use_arrows_always (GtkCombo* combo, - gint val); + gboolean val); /* perform case-sensitive compares */ void gtk_combo_set_case_sensitive (GtkCombo* combo, - gint val); + gboolean val); /* call this function on an item if it isn't a label or you want it to have a different value to be displayed in the entry */ void gtk_combo_set_item_string (GtkCombo* combo, |