diff options
| author | Johan Dahlin <johan@gnome.org> | 2008-07-14 21:36:11 +0000 |
|---|---|---|
| committer | Johan Dahlin <johan@src.gnome.org> | 2008-07-14 21:36:11 +0000 |
| commit | 119e1cd7bcdd505d62df27b4b031127b2e4e443e (patch) | |
| tree | f5f8626fb740c3bca24aff2319dac33950d6d665 | |
| parent | 62f6bc7ea07cc7240cfc67daf51d2737e7cd514b (diff) | |
| download | pygobject-119e1cd7bcdd505d62df27b4b031127b2e4e443e.tar.gz pygobject-119e1cd7bcdd505d62df27b4b031127b2e4e443e.tar.xz pygobject-119e1cd7bcdd505d62df27b4b031127b2e4e443e.zip | |
Remove g_file_input_stream_seek and g_file_output_stream_seek, they
2008-07-14 Johan Dahlin <johan@gnome.org>
* gio/gio.defs:
Remove g_file_input_stream_seek and g_file_output_stream_seek,
they already implement the seekable interface.
svn path=/trunk/; revision=800
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | gio/gio.defs | 24 |
2 files changed, 6 insertions, 24 deletions
@@ -1,4 +1,10 @@ 2008-07-14 Johan Dahlin <johan@gnome.org> + + * gio/gio.defs: + Remove g_file_input_stream_seek and g_file_output_stream_seek, + they already implement the seekable interface. + +2008-07-14 Johan Dahlin <johan@gnome.org> Bug 504337 - crash bug in gobject.Timeout and gobject.Idle diff --git a/gio/gio.defs b/gio/gio.defs index 63ebb31..ba6700a 100644 --- a/gio/gio.defs +++ b/gio/gio.defs @@ -2615,18 +2615,6 @@ ) ) -(define-method seek - (of-object "GFileInputStream") - (c-name "g_file_input_stream_seek") - (return-type "gboolean") - (parameters - '("goffset" "offset") - '("GSeekType" "type" (default "G_SEEK_SET")) - '("GCancellable*" "cancellable" (null-ok) (default "NULL")) - '("GError**" "error") - ) -) - ;; From gfilemonitor.h @@ -2759,18 +2747,6 @@ (return-type "char*") ) -(define-method seek - (of-object "GFileOutputStream") - (c-name "g_file_output_stream_seek") - (return-type "gboolean") - (parameters - '("goffset" "offset") - '("GSeekType" "type" (default "G_SEEK_SET")) - '("GCancellable*" "cancellable" (null-ok) (default "NULL")) - '("GError**" "error") - ) -) - ;; From gfilterinputstream.h |
