summaryrefslogtreecommitdiff
path: root/gtk/gtk-2.10.defs
diff options
context:
space:
mode:
authorJohn Finlay <finlay@src.gnome.org>2006-06-05 00:51:42 +0000
committerJohn Finlay <finlay@src.gnome.org>2006-06-05 00:51:42 +0000
commitf260ee682b5bbd4e8c3c4ca232833deaae88b867 (patch)
tree5b2cbcd40a783d267c125b67f4df94e2e2b02c13 /gtk/gtk-2.10.defs
parent43c0ffc530c2f941444687071d96c543fe0de706 (diff)
downloadpygtk-f260ee682b5bbd4e8c3c4ca232833deaae88b867.tar.gz
Add.
* gtk/gtk.override (_wrap_gtk_link_button_set_uri_hook): Add. * gtk/gtk-2.10.defs (gtk_link_button_new_with_label): Set as constructor for GtkLinkButton. Allow label param to default to None.
Diffstat (limited to 'gtk/gtk-2.10.defs')
-rw-r--r--gtk/gtk-2.10.defs4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/gtk-2.10.defs b/gtk/gtk-2.10.defs
index 6e30038e..e4451e47 100644
--- a/gtk/gtk-2.10.defs
+++ b/gtk/gtk-2.10.defs
@@ -691,7 +691,6 @@
(define-function link_button_new
(c-name "gtk_link_button_new")
- (is-constructor-of "GtkLinkButton")
(return-type "GtkWidget*")
(parameters
'("const-gchar*" "uri")
@@ -700,10 +699,11 @@
(define-function link_button_new_with_label
(c-name "gtk_link_button_new_with_label")
+ (is-constructor-of "GtkLinkButton")
(return-type "GtkWidget*")
(parameters
'("const-gchar*" "uri")
- '("const-gchar*" "label")
+ '("const-gchar*" "label" (null-ok) (default "NULL"))
)
)