modify the new_sized() constructor to take a gsize param instead of guint

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
This commit is contained in:
Jonathon Jongsma 2008-02-04 10:04:40 +00:00 committed by Alexander Larsson
parent 2a70534ca3
commit 2be52dd9c3
3 changed files with 8 additions and 2 deletions

View File

@ -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

View 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;

View 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);