diff options
author | Johan Dahlin <jdahlin@async.com.br> | 2008-05-23 19:26:00 +0000 |
---|---|---|
committer | Johan Dahlin <johan@src.gnome.org> | 2008-05-23 19:26:00 +0000 |
commit | 92bb3ce22c25cdd0b155557a24a91a2ace707661 (patch) | |
tree | 45a9ed6d73aa78a50f2e24ace0bf01fc3b46d608 | |
parent | 20f32c36cdf6f12b54f815c9264a10b2058d982b (diff) | |
download | pygobject-92bb3ce22c25cdd0b155557a24a91a2ace707661.tar.gz pygobject-92bb3ce22c25cdd0b155557a24a91a2ace707661.tar.xz pygobject-92bb3ce22c25cdd0b155557a24a91a2ace707661.zip |
Add default values for all GSeekType variables.
2008-05-23 Johan Dahlin <jdahlin@async.com.br>
* gio/gio.defs:
Add default values for all GSeekType variables.
svn path=/trunk/; revision=784
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gio/gio.defs | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2008-05-23 Johan Dahlin <jdahlin@async.com.br> + + * gio/gio.defs: + Add default values for all GSeekType variables. + 2008-05-21 Gustavo J. A. M. Carneiro <gjc@gnome.org> * gobject/gobjectmodule.c (pyg_spawn_async): Accept None for the diff --git a/gio/gio.defs b/gio/gio.defs index 04d2a80..04b59df 100644 --- a/gio/gio.defs +++ b/gio/gio.defs @@ -2609,7 +2609,7 @@ (return-type "gboolean") (parameters '("goffset" "offset") - '("GSeekType" "type") + '("GSeekType" "type" (default "G_SEEK_SET")) '("GCancellable*" "cancellable" (null-ok) (default "NULL")) '("GError**" "error") ) @@ -2753,7 +2753,7 @@ (return-type "gboolean") (parameters '("goffset" "offset") - '("GSeekType" "type") + '("GSeekType" "type" (default "G_SEEK_SET")) '("GCancellable*" "cancellable" (null-ok) (default "NULL")) '("GError**" "error") ) @@ -3788,7 +3788,7 @@ (return-type "gboolean") (parameters '("goffset" "offset") - '("GSeekType" "type") + '("GSeekType" "type" (default "G_SEEK_SET")) '("GCancellable*" "cancellable" (null-ok) (default "NULL")) '("GError**" "error") ) |