mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-06-06 21:00:07 +02:00
fix parent_class member to be GFilterOutputStreamClass (not
2008-09-02 Michael Natterer <mitch@imendio.com> * gbufferedoutputstream.h (struct _GBufferedOutputStreamClass): fix parent_class member to be GFilterOutputStreamClass (not GOutputStreamClass). Drop three pointers of padding, which is exactly what GFilterOutputStreamClass adds to GOutputStreamClass, so the class struct size stays the same. svn path=/trunk/; revision=7427
This commit is contained in:
parent
56f80f620e
commit
4c2ca6d3f4
@ -1,3 +1,11 @@
|
||||
2008-09-02 Michael Natterer <mitch@imendio.com>
|
||||
|
||||
* gbufferedoutputstream.h (struct _GBufferedOutputStreamClass):
|
||||
fix parent_class member to be GFilterOutputStreamClass (not
|
||||
GOutputStreamClass). Drop three pointers of padding, which is
|
||||
exactly what GFilterOutputStreamClass adds to GOutputStreamClass,
|
||||
so the class struct size stays the same.
|
||||
|
||||
2008-09-02 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
Bug 550059 – Wrong docs for g_emblemed_icon_add_emblem
|
||||
|
@ -57,19 +57,16 @@ struct _GBufferedOutputStream
|
||||
|
||||
struct _GBufferedOutputStreamClass
|
||||
{
|
||||
GOutputStreamClass parent_class;
|
||||
GFilterOutputStreamClass parent_class;
|
||||
|
||||
/*< private >*/
|
||||
/* Padding for future expansion */
|
||||
void (*_g_reserved1) (void);
|
||||
void (*_g_reserved2) (void);
|
||||
void (*_g_reserved3) (void);
|
||||
void (*_g_reserved4) (void);
|
||||
void (*_g_reserved5) (void);
|
||||
};
|
||||
|
||||
|
||||
GType g_buffered_output_stream_get_type (void) G_GNUC_CONST;
|
||||
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,
|
||||
gsize size);
|
||||
|
Loading…
x
Reference in New Issue
Block a user