diff options
author | Matthias Clasen <mclasen@redhat.com> | 2009-05-11 02:44:12 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2009-05-11 02:44:12 -0400 |
commit | ae94c371d186715ae78d97687b28ff78c5489673 (patch) | |
tree | d72ee0c1ecd4b94ae6572298acc857c7c123d2e8 /gtk/gtklabel.h | |
parent | 2f60e18c700dca53ef2b64085880ae3c71f50f5f (diff) | |
download | gtk+-ae94c371d186715ae78d97687b28ff78c5489673.tar.gz |
Add a separate keybinding signal for activating links
Keeping the keybinding signal and the regular signal separate is
cleaner and allows us to pass the uri as a parameter to the
activate-link signal.
Diffstat (limited to 'gtk/gtklabel.h')
-rw-r--r-- | gtk/gtklabel.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/gtklabel.h b/gtk/gtklabel.h index bc9982e5e0..3788108eda 100644 --- a/gtk/gtklabel.h +++ b/gtk/gtklabel.h @@ -96,7 +96,8 @@ struct _GtkLabelClass void (* populate_popup) (GtkLabel *label, GtkMenu *menu); - gboolean (*activate_link) (GtkLabel *label); + gboolean (*activate_link) (GtkLabel *label, + const gchar *uri); /* Padding for future expansion */ void (*_gtk_reserved1) (void); |