diff options
author | Jeff Garzik <jgarzik@src.gnome.org> | 1999-01-21 00:37:48 +0000 |
---|---|---|
committer | Jeff Garzik <jgarzik@src.gnome.org> | 1999-01-21 00:37:48 +0000 |
commit | 6e3e247b9a1cdc7fec2197dceda35752f38c8003 (patch) | |
tree | 68c8ba7e932c79152d43cb4580fde846eaa102b1 /gtk/gtktogglebutton.h | |
parent | df21a7064f0c5130d84e035f820eae197024992b (diff) | |
download | gtk+-6e3e247b9a1cdc7fec2197dceda35752f38c8003.tar.gz |
. Free 'nprefix', closing a memory leak. Spaced out the code a bit to make
.
* gtk/gtkcombo.c (gtk_combo_entry_key_press):
Free 'nprefix', closing a memory leak.
Spaced out the code a bit to make it more readable.
* gtk/gtkhbox.[ch] (gtk_hbox_new),
gtk/gtkvbox.[ch] (gtk_vbox_new):
Change 'homogenous' arg from gint to gboolean.
* gtk/gtktogglebutton.[ch]:
New function gtk_toggle_button_get_active().
Diffstat (limited to 'gtk/gtktogglebutton.h')
-rw-r--r-- | gtk/gtktogglebutton.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gtk/gtktogglebutton.h b/gtk/gtktogglebutton.h index bdb2a6e697..156dfb7e3c 100644 --- a/gtk/gtktogglebutton.h +++ b/gtk/gtktogglebutton.h @@ -64,6 +64,7 @@ void gtk_toggle_button_set_mode (GtkToggleButton *toggle_button, gboolean draw_indicator); void gtk_toggle_button_set_active (GtkToggleButton *toggle_button, gboolean is_active); +gboolean gtk_toggle_button_get_active (GtkToggleButton *toggle_button); void gtk_toggle_button_toggled (GtkToggleButton *toggle_button); |