mirror of
				https://gitlab.gnome.org/GNOME/glib.git
				synced 2025-10-31 08:22:16 +01:00 
			
		
		
		
	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:
		
				
					committed by
					
						 Alexander Larsson
						Alexander Larsson
					
				
			
			
				
	
			
			
			
						parent
						
							2a70534ca3
						
					
				
				
					commit
					2be52dd9c3
				
			| @@ -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 | ||||
|   | ||||
| @@ -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; | ||||
|  | ||||
|   | ||||
| @@ -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); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user