diff options
author | Matthias Clasen <matthiasc@src.gnome.org> | 2009-03-10 17:45:25 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2009-03-10 17:45:25 +0000 |
commit | 4b497ad5e84ee33710ee01426e82a5e9e6b319ff (patch) | |
tree | 3104f39518d0d080446f63e24713b3a7e29c3d3c /gtk | |
parent | 2f915bec2077fba49e0c0ebee925b9486b3862d6 (diff) | |
download | gdk-pixbuf-4b497ad5e84ee33710ee01426e82a5e9e6b319ff.tar.gz |
::icon-press and ::icon-release are not action signals. Pointed out by
* gtk/gtkentry.c: ::icon-press and ::icon-release are not
action signals. Pointed out by Murray Cumming
svn path=/trunk/; revision=22501
Diffstat (limited to 'gtk')
-rw-r--r-- | gtk/gtkentry.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gtk/gtkentry.c b/gtk/gtkentry.c index 8ba3e422a..be1a83e65 100644 --- a/gtk/gtkentry.c +++ b/gtk/gtkentry.c @@ -1455,7 +1455,7 @@ gtk_entry_class_init (GtkEntryClass *class) * @icon_pos: The position of the clicked icon * @event: the button press event * - * The ::icon-press signal is emitted when an activatable icon + * The ::icon-press signal is emitted when an activatable icon * is clicked. * * Since: 2.16 @@ -1463,7 +1463,7 @@ gtk_entry_class_init (GtkEntryClass *class) signals[ICON_PRESS] = g_signal_new (I_("icon-press"), G_TYPE_FROM_CLASS (gobject_class), - G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, + G_SIGNAL_RUN_LAST, 0, NULL, NULL, _gtk_marshal_VOID__ENUM_BOXED, @@ -1485,7 +1485,7 @@ gtk_entry_class_init (GtkEntryClass *class) signals[ICON_RELEASE] = g_signal_new (I_("icon-release"), G_TYPE_FROM_CLASS (gobject_class), - G_SIGNAL_RUN_LAST | G_SIGNAL_ACTION, + G_SIGNAL_RUN_LAST, 0, NULL, NULL, _gtk_marshal_VOID__ENUM_BOXED, |