diff options
author | Cody Russell <bratsche@gnome.org> | 2007-06-04 18:57:55 +0000 |
---|---|---|
committer | Cody Russell <bratsche@src.gnome.org> | 2007-06-04 18:57:55 +0000 |
commit | 5a01ec8551c6c7324cc8ab76af9ca1da3174aa93 (patch) | |
tree | 404405765732278ed5d3865edec53ff9557b9a21 /gtk/gtklinkbutton.h | |
parent | ee592b324792cdd78d570fe0f178c1bc3ee72af0 (diff) | |
download | gtk+-5a01ec8551c6c7324cc8ab76af9ca1da3174aa93.tar.gz |
gtk/gtklinkbutton.h Change function argument "link" to "link_" to fix
2007-06-04 Cody Russell <bratsche@gnome.org>
* gtk/gtklinkbutton.h
* gtk/gtkaboutdialog.h: Change function argument "link"
to "link_" to fix warnings for applications compiling
with -Wshadow. (#379213)
svn path=/trunk/; revision=18033
Diffstat (limited to 'gtk/gtklinkbutton.h')
-rw-r--r-- | gtk/gtklinkbutton.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtklinkbutton.h b/gtk/gtklinkbutton.h index 92b48512e0..24e79b460c 100644 --- a/gtk/gtklinkbutton.h +++ b/gtk/gtklinkbutton.h @@ -42,7 +42,7 @@ typedef struct _GtkLinkButtonClass GtkLinkButtonClass; typedef struct _GtkLinkButtonPrivate GtkLinkButtonPrivate; typedef void (*GtkLinkButtonUriFunc) (GtkLinkButton *button, - const gchar *link, + const gchar *link_, gpointer user_data); struct _GtkLinkButton |