summaryrefslogtreecommitdiffstats
path: root/gio
diff options
context:
space:
mode:
authorGian Mario Tagliaretti <gianmt@gnome.org>2009-04-12 14:26:36 +0000
committerGian Mario Tagliaretti <gianmt@src.gnome.org>2009-04-12 14:26:36 +0000
commit37938b14a08f00b36aa575c2e9a74cf15d425ccf (patch)
tree6e59013a547ce82f8731547b29ac9694b6ce8839 /gio
parentf2ab953f48ab69a7a205578f4cc37e289e962ee1 (diff)
downloadpygobject-37938b14a08f00b36aa575c2e9a74cf15d425ccf.tar.gz
pygobject-37938b14a08f00b36aa575c2e9a74cf15d425ccf.tar.xz
pygobject-37938b14a08f00b36aa575c2e9a74cf15d425ccf.zip
should accept None for cancellable and set the default flag to
2009-04-12 Gian Mario Tagliaretti <gianmt@gnome.org> * gio/gio.defs: (g_file_monitor) should accept None for cancellable and set the default flag to G_FILE_MONITOR_NONE. svn path=/trunk/; revision=1059
Diffstat (limited to 'gio')
-rw-r--r--gio/gio.defs4
1 files changed, 2 insertions, 2 deletions
diff --git a/gio/gio.defs b/gio/gio.defs
index 5dd822d..14c44e7 100644
--- a/gio/gio.defs
+++ b/gio/gio.defs
@@ -2542,8 +2542,8 @@
(c-name "g_file_monitor")
(return-type "GFileMonitor*")
(parameters
- '("GFileMonitorFlags" "flags")
- '("GCancellable*" "cancellable")
+ '("GFileMonitorFlags" "flags" (default "G_FILE_MONITOR_NONE"))
+ '("GCancellable*" "cancellable" (null-ok) (default "NULL"))
'("GError**" "error")
)
)