Fix notifications on non-existant "enable_arrow_keys". (#53753, Skip

Fri Jun  1 11:47:11 2001  Owen Taylor  <otaylor@redhat.com>

	* gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix
	notifications on non-existant "enable_arrow_keys".
	(#53753, Skip Montanaro)
This commit is contained in:
Owen Taylor
2001-06-01 17:46:45 +00:00
committed by Owen Taylor
parent 1a6efe96a7
commit ad88113f34
8 changed files with 44 additions and 2 deletions

View File

@@ -1,3 +1,9 @@
Fri Jun 1 11:47:11 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix
notifications on non-existant "enable_arrow_keys".
(#53753, Skip Montanaro)
Fri Jun 1 11:31:55 2001 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrectangle.c (gdk_rectangle_get_type): Add

View File

@@ -1,3 +1,9 @@
Fri Jun 1 11:47:11 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix
notifications on non-existant "enable_arrow_keys".
(#53753, Skip Montanaro)
Fri Jun 1 11:31:55 2001 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrectangle.c (gdk_rectangle_get_type): Add

View File

@@ -1,3 +1,9 @@
Fri Jun 1 11:47:11 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix
notifications on non-existant "enable_arrow_keys".
(#53753, Skip Montanaro)
Fri Jun 1 11:31:55 2001 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrectangle.c (gdk_rectangle_get_type): Add

View File

@@ -1,3 +1,9 @@
Fri Jun 1 11:47:11 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix
notifications on non-existant "enable_arrow_keys".
(#53753, Skip Montanaro)
Fri Jun 1 11:31:55 2001 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrectangle.c (gdk_rectangle_get_type): Add

View File

@@ -1,3 +1,9 @@
Fri Jun 1 11:47:11 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix
notifications on non-existant "enable_arrow_keys".
(#53753, Skip Montanaro)
Fri Jun 1 11:31:55 2001 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrectangle.c (gdk_rectangle_get_type): Add

View File

@@ -1,3 +1,9 @@
Fri Jun 1 11:47:11 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix
notifications on non-existant "enable_arrow_keys".
(#53753, Skip Montanaro)
Fri Jun 1 11:31:55 2001 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrectangle.c (gdk_rectangle_get_type): Add

View File

@@ -1,3 +1,9 @@
Fri Jun 1 11:47:11 2001 Owen Taylor <otaylor@redhat.com>
* gtk/gtkcombo.c (gtk_combo_set_use_arrows_always): Fix
notifications on non-existant "enable_arrow_keys".
(#53753, Skip Montanaro)
Fri Jun 1 11:31:55 2001 Owen Taylor <otaylor@redhat.com>
* gdk/gdkrectangle.c (gdk_rectangle_get_type): Add

View File

@@ -893,7 +893,7 @@ gtk_combo_set_use_arrows (GtkCombo * combo, gboolean val)
g_return_if_fail (GTK_IS_COMBO (combo));
combo->use_arrows = val;
g_object_notify (G_OBJECT (combo), "enable_arrows");
g_object_notify (G_OBJECT (combo), "enable_arrow_keys");
}
void
@@ -904,7 +904,7 @@ gtk_combo_set_use_arrows_always (GtkCombo * combo, gboolean val)
combo->use_arrows_always = val;
combo->use_arrows = TRUE;
g_object_notify (G_OBJECT (combo), "enable_arrows");
g_object_notify (G_OBJECT (combo), "enable_arrow_keys");
g_object_notify (G_OBJECT (combo), "enable_arrows_always");
}