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 f7846de40362869cd745700b0f7d3f787cc8f48a..3d09e0e0c5397c04f7873c6134fde6cbdafe3665 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 04468eda1a8132a1034a202e475b23927923d64f..4732fce4271cc8b717e149710824b63f601bda39 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 134bf82829f08cc16fdfacc7b6f9ff89395af9c1..5adce9e1fb66b27e4fb4ded5154b9d989e288a40 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);