mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-09 19:06:15 +01:00
s/parent/parent_instance/ in GObjects
2007-12-12 Alexander Larsson <alexl@redhat.com> * gbufferedinputstream.h: * gbufferedoutputstream.h: * gdatainputstream.h: * gdataoutputstream.h: * gdirectorymonitor.h: * gfileenumerator.h: * gfileinputstream.h: * gfilemonitor.h: * gfileoutputstream.h: * gfilterinputstream.h: * gfilteroutputstream.h: * ginputstream.h: * glocalfileinputstream.h: * glocalfileoutputstream.h: * gmemoryinputstream.h: * gmemoryoutputstream.h: * gnativevolumemonitor.h: * goutputstream.h: * gunixinputstream.h: * gunixoutputstream.h: * gvfs.h: * gvolumemonitor.h: s/parent/parent_instance/ in GObjects svn path=/trunk/; revision=6102
This commit is contained in:
parent
01e1ab6e68
commit
ab7ff4c6a0
@ -1,3 +1,29 @@
|
||||
2007-12-12 Alexander Larsson <alexl@redhat.com>
|
||||
|
||||
* gbufferedinputstream.h:
|
||||
* gbufferedoutputstream.h:
|
||||
* gdatainputstream.h:
|
||||
* gdataoutputstream.h:
|
||||
* gdirectorymonitor.h:
|
||||
* gfileenumerator.h:
|
||||
* gfileinputstream.h:
|
||||
* gfilemonitor.h:
|
||||
* gfileoutputstream.h:
|
||||
* gfilterinputstream.h:
|
||||
* gfilteroutputstream.h:
|
||||
* ginputstream.h:
|
||||
* glocalfileinputstream.h:
|
||||
* glocalfileoutputstream.h:
|
||||
* gmemoryinputstream.h:
|
||||
* gmemoryoutputstream.h:
|
||||
* gnativevolumemonitor.h:
|
||||
* goutputstream.h:
|
||||
* gunixinputstream.h:
|
||||
* gunixoutputstream.h:
|
||||
* gvfs.h:
|
||||
* gvolumemonitor.h:
|
||||
s/parent/parent_instance/ in GObjects
|
||||
|
||||
2007-12-12 Alexander Larsson <alexl@redhat.com>
|
||||
|
||||
* gdrive.h:
|
||||
|
@ -46,7 +46,7 @@ typedef struct _GBufferedInputStreamPrivate GBufferedInputStreamPrivate;
|
||||
|
||||
struct _GBufferedInputStream
|
||||
{
|
||||
GFilterInputStream parent;
|
||||
GFilterInputStream parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
GBufferedInputStreamPrivate *priv;
|
||||
|
@ -47,7 +47,7 @@ typedef struct _GBufferedOutputStreamPrivate GBufferedOutputStreamPrivate;
|
||||
|
||||
struct _GBufferedOutputStream
|
||||
{
|
||||
GFilterOutputStream parent;
|
||||
GFilterOutputStream parent_instance;
|
||||
|
||||
/*< protected >*/
|
||||
GBufferedOutputStreamPrivate *priv;
|
||||
|
@ -48,7 +48,7 @@ typedef struct _GDataInputStreamPrivate GDataInputStreamPrivate;
|
||||
|
||||
struct _GDataInputStream
|
||||
{
|
||||
GBufferedInputStream parent;
|
||||
GBufferedInputStream parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
GDataInputStreamPrivate *priv;
|
||||
|
@ -38,7 +38,7 @@ G_BEGIN_DECLS
|
||||
|
||||
/**
|
||||
* GDataOutputStream:
|
||||
* @parent: a #GBufferedOutputStream.
|
||||
* @parent_instance: a #GBufferedOutputStream.
|
||||
*
|
||||
* An implementation of #GBufferedOutputStream that allows for high-level
|
||||
* data manipulation of arbitrary data (including binary operations).
|
||||
@ -49,7 +49,7 @@ typedef struct _GDataOutputStreamPrivate GDataOutputStreamPrivate;
|
||||
|
||||
struct _GDataOutputStream
|
||||
{
|
||||
GFilterOutputStream parent;
|
||||
GFilterOutputStream parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
GDataOutputStreamPrivate *priv;
|
||||
|
@ -41,13 +41,13 @@ typedef struct _GDirectoryMonitorPrivate GDirectoryMonitorPrivate;
|
||||
|
||||
/**
|
||||
* GDirectoryMonitor:
|
||||
* @parent: The parent class.
|
||||
* @parent_instance: The parent class.
|
||||
*
|
||||
* Implements a monitor on the given #GFile that points to a directory.
|
||||
**/
|
||||
struct _GDirectoryMonitor
|
||||
{
|
||||
GObject parent;
|
||||
GObject parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
GDirectoryMonitorPrivate *priv;
|
||||
|
@ -41,7 +41,7 @@ G_BEGIN_DECLS
|
||||
|
||||
/**
|
||||
* GFileEnumerator:
|
||||
* @parent: The parent class.
|
||||
* @parent_instance: The parent class.
|
||||
*
|
||||
* A per matched file iterator.
|
||||
**/
|
||||
@ -52,7 +52,7 @@ typedef struct _GFileEnumeratorPrivate GFileEnumeratorPrivate;
|
||||
|
||||
struct _GFileEnumerator
|
||||
{
|
||||
GObject parent;
|
||||
GObject parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
GFileEnumeratorPrivate *priv;
|
||||
|
@ -49,7 +49,7 @@ typedef struct _GFileInputStreamPrivate GFileInputStreamPrivate;
|
||||
|
||||
struct _GFileInputStream
|
||||
{
|
||||
GInputStream parent;
|
||||
GInputStream parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
GFileInputStreamPrivate *priv;
|
||||
|
@ -67,7 +67,7 @@ typedef struct _GFileMonitorPrivate GFileMonitorPrivate;
|
||||
**/
|
||||
struct _GFileMonitor
|
||||
{
|
||||
GObject parent;
|
||||
GObject parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
GFileMonitorPrivate *priv;
|
||||
|
@ -49,7 +49,7 @@ typedef struct _GFileOutputStreamPrivate GFileOutputStreamPrivate;
|
||||
|
||||
struct _GFileOutputStream
|
||||
{
|
||||
GOutputStream parent;
|
||||
GOutputStream parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
GFileOutputStreamPrivate *priv;
|
||||
|
@ -46,7 +46,7 @@ typedef struct _GFilterInputStreamPrivate GFilterInputStreamPrivate;
|
||||
|
||||
struct _GFilterInputStream
|
||||
{
|
||||
GInputStream parent;
|
||||
GInputStream parent_instance;
|
||||
|
||||
/*<protected >*/
|
||||
GInputStream *base_stream;
|
||||
|
@ -46,7 +46,7 @@ typedef struct _GFilterOutputStreamPrivate GFilterOutputStreamPrivate;
|
||||
|
||||
struct _GFilterOutputStream
|
||||
{
|
||||
GOutputStream parent;
|
||||
GOutputStream parent_instance;
|
||||
|
||||
/*< protected >*/
|
||||
GOutputStream *base_stream;
|
||||
|
@ -48,7 +48,7 @@ typedef struct _GInputStreamPrivate GInputStreamPrivate;
|
||||
|
||||
struct _GInputStream
|
||||
{
|
||||
GObject parent;
|
||||
GObject parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
GInputStreamPrivate *priv;
|
||||
|
@ -40,7 +40,7 @@ typedef struct _GLocalFileInputStreamPrivate GLocalFileInputStreamPrivate;
|
||||
|
||||
struct _GLocalFileInputStream
|
||||
{
|
||||
GFileInputStream parent;
|
||||
GFileInputStream parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
GLocalFileInputStreamPrivate *priv;
|
||||
|
@ -41,7 +41,7 @@ typedef struct _GLocalFileOutputStreamPrivate GLocalFileOutputStreamPrivate;
|
||||
|
||||
struct _GLocalFileOutputStream
|
||||
{
|
||||
GFileOutputStream parent;
|
||||
GFileOutputStream parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
GLocalFileOutputStreamPrivate *priv;
|
||||
|
@ -46,7 +46,7 @@ typedef struct _GMemoryInputStreamPrivate GMemoryInputStreamPrivate;
|
||||
|
||||
struct _GMemoryInputStream
|
||||
{
|
||||
GInputStream parent;
|
||||
GInputStream parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
GMemoryInputStreamPrivate *priv;
|
||||
|
@ -46,7 +46,7 @@ typedef struct _GMemoryOutputStreamPrivate GMemoryOutputStreamPrivate;
|
||||
|
||||
struct _GMemoryOutputStream
|
||||
{
|
||||
GOutputStream parent;
|
||||
GOutputStream parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
GMemoryOutputStreamPrivate *priv;
|
||||
|
@ -16,7 +16,7 @@ typedef struct _GNativeVolumeMonitor GNativeVolumeMonitor;
|
||||
typedef struct _GNativeVolumeMonitorClass GNativeVolumeMonitorClass;
|
||||
|
||||
struct _GNativeVolumeMonitor {
|
||||
GVolumeMonitor parent;
|
||||
GVolumeMonitor parent_instance;
|
||||
};
|
||||
|
||||
struct _GNativeVolumeMonitorClass {
|
||||
|
@ -67,7 +67,7 @@ typedef struct _GOutputStreamPrivate GOutputStreamPrivate;
|
||||
|
||||
struct _GOutputStream
|
||||
{
|
||||
GObject parent;
|
||||
GObject parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
GOutputStreamPrivate *priv;
|
||||
|
@ -45,7 +45,7 @@ typedef struct _GUnixInputStreamPrivate GUnixInputStreamPrivate;
|
||||
|
||||
struct _GUnixInputStream
|
||||
{
|
||||
GInputStream parent;
|
||||
GInputStream parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
GUnixInputStreamPrivate *priv;
|
||||
|
@ -45,7 +45,7 @@ typedef struct _GUnixOutputStreamPrivate GUnixOutputStreamPrivate;
|
||||
|
||||
struct _GUnixOutputStream
|
||||
{
|
||||
GOutputStream parent;
|
||||
GOutputStream parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
GUnixOutputStreamPrivate *priv;
|
||||
|
@ -44,7 +44,7 @@ typedef struct _GVfs GVfs; /* Dummy typedef */
|
||||
typedef struct _GVfsClass GVfsClass;
|
||||
|
||||
struct _GVfs {
|
||||
GObject parent;
|
||||
GObject parent_instance;
|
||||
};
|
||||
|
||||
struct _GVfsClass
|
||||
|
@ -40,7 +40,7 @@ G_BEGIN_DECLS
|
||||
|
||||
/**
|
||||
* GVolumeMonitor:
|
||||
* @parent: The parent class.
|
||||
* @parent_instance: The parent instance.
|
||||
*
|
||||
* A Volume Monitor that watches for volume events.
|
||||
**/
|
||||
@ -48,7 +48,7 @@ typedef struct _GVolumeMonitor GVolumeMonitor;
|
||||
typedef struct _GVolumeMonitorClass GVolumeMonitorClass;
|
||||
|
||||
struct _GVolumeMonitor {
|
||||
GObject parent;
|
||||
GObject parent_instance;
|
||||
|
||||
/*< private >*/
|
||||
gpointer priv;
|
||||
|
Loading…
Reference in New Issue
Block a user