From 119e1cd7bcdd505d62df27b4b031127b2e4e443e Mon Sep 17 00:00:00 2001 From: Johan Dahlin Date: Mon, 14 Jul 2008 21:36:11 +0000 Subject: Remove g_file_input_stream_seek and g_file_output_stream_seek, they 2008-07-14 Johan Dahlin * 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 --- ChangeLog | 6 ++++++ gio/gio.defs | 24 ------------------------ 2 files changed, 6 insertions(+), 24 deletions(-) diff --git a/ChangeLog b/ChangeLog index f19592b..7b0fabf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-07-14 Johan Dahlin + + * 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 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 -- cgit