modify the new_sized() constructor to take a gsize param instead of guint
authorJonathon Jongsma <jjongsma@gnome.org>
Mon, 4 Feb 2008 10:04:40 +0000 (10:04 +0000)
committerAlexander Larsson <alexl@src.gnome.org>
Mon, 4 Feb 2008 10:04:40 +0000 (10:04 +0000)
2008-02-02  Jonathon Jongsma  <jjongsma@gnome.org>

* gio/gbufferedoutputstream.c:
* gio/gbufferedoutputstream.h: modify the new_sized() constructor to take a
gsize param instead of guint to match the GBufferedInputStream constructor.

svn path=/trunk/; revision=6448

ChangeLog
gio/gbufferedoutputstream.c
gio/gbufferedoutputstream.h

index f7846de..3d09e0e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2008-02-02  Jonathon Jongsma  <jjongsma@gnome.org>
+
+       * gio/gbufferedoutputstream.c:
+       * gio/gbufferedoutputstream.h: modify the new_sized() constructor to take a
+       gsize param instead of guint to match the GBufferedInputStream constructor.
+
 2008-02-03  Hans Breuer  <hans@breuer.org>
 
        * **/makefile.msc.in : update
index 04468ed..4732fce 100644 (file)
@@ -381,7 +381,7 @@ g_buffered_output_stream_new (GOutputStream *base_stream)
  **/  
 GOutputStream *
 g_buffered_output_stream_new_sized (GOutputStream *base_stream,
-                                    guint          size)
+                                    gsize          size)
 {
   GOutputStream *stream;
 
index 134bf82..5adce9e 100644 (file)
@@ -74,7 +74,7 @@ struct _GBufferedOutputStreamClass
 GType           g_buffered_output_stream_get_type  (void) G_GNUC_CONST;
 GOutputStream* g_buffered_output_stream_new             (GOutputStream         *base_stream);
 GOutputStream* g_buffered_output_stream_new_sized       (GOutputStream         *base_stream,
-                                                        guint                  size);
+                                                        gsize                  size);
 gsize          g_buffered_output_stream_get_buffer_size (GBufferedOutputStream *stream);
 void           g_buffered_output_stream_set_buffer_size (GBufferedOutputStream *stream,
                                                         gsize                  size);