summaryrefslogtreecommitdiff
path: root/gtk/gtk-2.12.defs
diff options
context:
space:
mode:
authorGian Mario Tagliaretti <gianmt@src.gnome.org>2007-08-05 16:20:01 +0000
committerGian Mario Tagliaretti <gianmt@src.gnome.org>2007-08-05 16:20:01 +0000
commit2e1c70aa77251f6a70f99fb22f8ba4859a8a477e (patch)
tree32c438d418021a7c70b27061301dc382d98b12ac /gtk/gtk-2.12.defs
parentaee386dff0712de8412c47acc60c471e3715b17a (diff)
downloadpygtk-2e1c70aa77251f6a70f99fb22f8ba4859a8a477e.tar.gz
allow None where needed on gtk.Tooltip methods
svn path=/trunk/; revision=2872
Diffstat (limited to 'gtk/gtk-2.12.defs')
-rw-r--r--gtk/gtk-2.12.defs8
1 files changed, 4 insertions, 4 deletions
diff --git a/gtk/gtk-2.12.defs b/gtk/gtk-2.12.defs
index 0425779b..c30de1a5 100644
--- a/gtk/gtk-2.12.defs
+++ b/gtk/gtk-2.12.defs
@@ -914,7 +914,7 @@
(c-name "gtk_tooltip_set_markup")
(return-type "none")
(parameters
- '("const-gchar*" "markup")
+ '("const-gchar*" "markup" (null-ok))
)
)
@@ -923,7 +923,7 @@
(c-name "gtk_tooltip_set_text")
(return-type "none")
(parameters
- '("const-gchar*" "text")
+ '("const-gchar*" "text" (null-ok))
)
)
@@ -932,7 +932,7 @@
(c-name "gtk_tooltip_set_icon")
(return-type "none")
(parameters
- '("GdkPixbuf*" "pixbuf")
+ '("GdkPixbuf*" "pixbuf" (null-ok))
)
)
@@ -941,7 +941,7 @@
(c-name "gtk_tooltip_set_icon_from_stock")
(return-type "none")
(parameters
- '("const-gchar*" "stock_id")
+ '("const-gchar*" "stock_id" (null-ok))
'("GtkIconSize" "size")
)
)