mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-13 07:56:17 +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>
|
2007-12-12 Alexander Larsson <alexl@redhat.com>
|
||||||
|
|
||||||
* gdrive.h:
|
* gdrive.h:
|
||||||
|
@ -46,7 +46,7 @@ typedef struct _GBufferedInputStreamPrivate GBufferedInputStreamPrivate;
|
|||||||
|
|
||||||
struct _GBufferedInputStream
|
struct _GBufferedInputStream
|
||||||
{
|
{
|
||||||
GFilterInputStream parent;
|
GFilterInputStream parent_instance;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GBufferedInputStreamPrivate *priv;
|
GBufferedInputStreamPrivate *priv;
|
||||||
|
@ -47,7 +47,7 @@ typedef struct _GBufferedOutputStreamPrivate GBufferedOutputStreamPrivate;
|
|||||||
|
|
||||||
struct _GBufferedOutputStream
|
struct _GBufferedOutputStream
|
||||||
{
|
{
|
||||||
GFilterOutputStream parent;
|
GFilterOutputStream parent_instance;
|
||||||
|
|
||||||
/*< protected >*/
|
/*< protected >*/
|
||||||
GBufferedOutputStreamPrivate *priv;
|
GBufferedOutputStreamPrivate *priv;
|
||||||
|
@ -48,7 +48,7 @@ typedef struct _GDataInputStreamPrivate GDataInputStreamPrivate;
|
|||||||
|
|
||||||
struct _GDataInputStream
|
struct _GDataInputStream
|
||||||
{
|
{
|
||||||
GBufferedInputStream parent;
|
GBufferedInputStream parent_instance;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GDataInputStreamPrivate *priv;
|
GDataInputStreamPrivate *priv;
|
||||||
|
@ -38,7 +38,7 @@ G_BEGIN_DECLS
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* GDataOutputStream:
|
* GDataOutputStream:
|
||||||
* @parent: a #GBufferedOutputStream.
|
* @parent_instance: a #GBufferedOutputStream.
|
||||||
*
|
*
|
||||||
* An implementation of #GBufferedOutputStream that allows for high-level
|
* An implementation of #GBufferedOutputStream that allows for high-level
|
||||||
* data manipulation of arbitrary data (including binary operations).
|
* data manipulation of arbitrary data (including binary operations).
|
||||||
@ -49,7 +49,7 @@ typedef struct _GDataOutputStreamPrivate GDataOutputStreamPrivate;
|
|||||||
|
|
||||||
struct _GDataOutputStream
|
struct _GDataOutputStream
|
||||||
{
|
{
|
||||||
GFilterOutputStream parent;
|
GFilterOutputStream parent_instance;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GDataOutputStreamPrivate *priv;
|
GDataOutputStreamPrivate *priv;
|
||||||
|
@ -41,13 +41,13 @@ typedef struct _GDirectoryMonitorPrivate GDirectoryMonitorPrivate;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* GDirectoryMonitor:
|
* GDirectoryMonitor:
|
||||||
* @parent: The parent class.
|
* @parent_instance: The parent class.
|
||||||
*
|
*
|
||||||
* Implements a monitor on the given #GFile that points to a directory.
|
* Implements a monitor on the given #GFile that points to a directory.
|
||||||
**/
|
**/
|
||||||
struct _GDirectoryMonitor
|
struct _GDirectoryMonitor
|
||||||
{
|
{
|
||||||
GObject parent;
|
GObject parent_instance;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GDirectoryMonitorPrivate *priv;
|
GDirectoryMonitorPrivate *priv;
|
||||||
|
@ -41,7 +41,7 @@ G_BEGIN_DECLS
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* GFileEnumerator:
|
* GFileEnumerator:
|
||||||
* @parent: The parent class.
|
* @parent_instance: The parent class.
|
||||||
*
|
*
|
||||||
* A per matched file iterator.
|
* A per matched file iterator.
|
||||||
**/
|
**/
|
||||||
@ -52,7 +52,7 @@ typedef struct _GFileEnumeratorPrivate GFileEnumeratorPrivate;
|
|||||||
|
|
||||||
struct _GFileEnumerator
|
struct _GFileEnumerator
|
||||||
{
|
{
|
||||||
GObject parent;
|
GObject parent_instance;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GFileEnumeratorPrivate *priv;
|
GFileEnumeratorPrivate *priv;
|
||||||
|
@ -49,7 +49,7 @@ typedef struct _GFileInputStreamPrivate GFileInputStreamPrivate;
|
|||||||
|
|
||||||
struct _GFileInputStream
|
struct _GFileInputStream
|
||||||
{
|
{
|
||||||
GInputStream parent;
|
GInputStream parent_instance;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GFileInputStreamPrivate *priv;
|
GFileInputStreamPrivate *priv;
|
||||||
|
@ -67,7 +67,7 @@ typedef struct _GFileMonitorPrivate GFileMonitorPrivate;
|
|||||||
**/
|
**/
|
||||||
struct _GFileMonitor
|
struct _GFileMonitor
|
||||||
{
|
{
|
||||||
GObject parent;
|
GObject parent_instance;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GFileMonitorPrivate *priv;
|
GFileMonitorPrivate *priv;
|
||||||
|
@ -49,7 +49,7 @@ typedef struct _GFileOutputStreamPrivate GFileOutputStreamPrivate;
|
|||||||
|
|
||||||
struct _GFileOutputStream
|
struct _GFileOutputStream
|
||||||
{
|
{
|
||||||
GOutputStream parent;
|
GOutputStream parent_instance;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GFileOutputStreamPrivate *priv;
|
GFileOutputStreamPrivate *priv;
|
||||||
|
@ -46,7 +46,7 @@ typedef struct _GFilterInputStreamPrivate GFilterInputStreamPrivate;
|
|||||||
|
|
||||||
struct _GFilterInputStream
|
struct _GFilterInputStream
|
||||||
{
|
{
|
||||||
GInputStream parent;
|
GInputStream parent_instance;
|
||||||
|
|
||||||
/*<protected >*/
|
/*<protected >*/
|
||||||
GInputStream *base_stream;
|
GInputStream *base_stream;
|
||||||
|
@ -46,7 +46,7 @@ typedef struct _GFilterOutputStreamPrivate GFilterOutputStreamPrivate;
|
|||||||
|
|
||||||
struct _GFilterOutputStream
|
struct _GFilterOutputStream
|
||||||
{
|
{
|
||||||
GOutputStream parent;
|
GOutputStream parent_instance;
|
||||||
|
|
||||||
/*< protected >*/
|
/*< protected >*/
|
||||||
GOutputStream *base_stream;
|
GOutputStream *base_stream;
|
||||||
|
@ -48,7 +48,7 @@ typedef struct _GInputStreamPrivate GInputStreamPrivate;
|
|||||||
|
|
||||||
struct _GInputStream
|
struct _GInputStream
|
||||||
{
|
{
|
||||||
GObject parent;
|
GObject parent_instance;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GInputStreamPrivate *priv;
|
GInputStreamPrivate *priv;
|
||||||
|
@ -40,7 +40,7 @@ typedef struct _GLocalFileInputStreamPrivate GLocalFileInputStreamPrivate;
|
|||||||
|
|
||||||
struct _GLocalFileInputStream
|
struct _GLocalFileInputStream
|
||||||
{
|
{
|
||||||
GFileInputStream parent;
|
GFileInputStream parent_instance;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GLocalFileInputStreamPrivate *priv;
|
GLocalFileInputStreamPrivate *priv;
|
||||||
|
@ -41,7 +41,7 @@ typedef struct _GLocalFileOutputStreamPrivate GLocalFileOutputStreamPrivate;
|
|||||||
|
|
||||||
struct _GLocalFileOutputStream
|
struct _GLocalFileOutputStream
|
||||||
{
|
{
|
||||||
GFileOutputStream parent;
|
GFileOutputStream parent_instance;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GLocalFileOutputStreamPrivate *priv;
|
GLocalFileOutputStreamPrivate *priv;
|
||||||
|
@ -46,7 +46,7 @@ typedef struct _GMemoryInputStreamPrivate GMemoryInputStreamPrivate;
|
|||||||
|
|
||||||
struct _GMemoryInputStream
|
struct _GMemoryInputStream
|
||||||
{
|
{
|
||||||
GInputStream parent;
|
GInputStream parent_instance;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GMemoryInputStreamPrivate *priv;
|
GMemoryInputStreamPrivate *priv;
|
||||||
|
@ -46,7 +46,7 @@ typedef struct _GMemoryOutputStreamPrivate GMemoryOutputStreamPrivate;
|
|||||||
|
|
||||||
struct _GMemoryOutputStream
|
struct _GMemoryOutputStream
|
||||||
{
|
{
|
||||||
GOutputStream parent;
|
GOutputStream parent_instance;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GMemoryOutputStreamPrivate *priv;
|
GMemoryOutputStreamPrivate *priv;
|
||||||
|
@ -16,7 +16,7 @@ typedef struct _GNativeVolumeMonitor GNativeVolumeMonitor;
|
|||||||
typedef struct _GNativeVolumeMonitorClass GNativeVolumeMonitorClass;
|
typedef struct _GNativeVolumeMonitorClass GNativeVolumeMonitorClass;
|
||||||
|
|
||||||
struct _GNativeVolumeMonitor {
|
struct _GNativeVolumeMonitor {
|
||||||
GVolumeMonitor parent;
|
GVolumeMonitor parent_instance;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _GNativeVolumeMonitorClass {
|
struct _GNativeVolumeMonitorClass {
|
||||||
|
@ -67,7 +67,7 @@ typedef struct _GOutputStreamPrivate GOutputStreamPrivate;
|
|||||||
|
|
||||||
struct _GOutputStream
|
struct _GOutputStream
|
||||||
{
|
{
|
||||||
GObject parent;
|
GObject parent_instance;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GOutputStreamPrivate *priv;
|
GOutputStreamPrivate *priv;
|
||||||
|
@ -45,7 +45,7 @@ typedef struct _GUnixInputStreamPrivate GUnixInputStreamPrivate;
|
|||||||
|
|
||||||
struct _GUnixInputStream
|
struct _GUnixInputStream
|
||||||
{
|
{
|
||||||
GInputStream parent;
|
GInputStream parent_instance;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GUnixInputStreamPrivate *priv;
|
GUnixInputStreamPrivate *priv;
|
||||||
|
@ -45,7 +45,7 @@ typedef struct _GUnixOutputStreamPrivate GUnixOutputStreamPrivate;
|
|||||||
|
|
||||||
struct _GUnixOutputStream
|
struct _GUnixOutputStream
|
||||||
{
|
{
|
||||||
GOutputStream parent;
|
GOutputStream parent_instance;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
GUnixOutputStreamPrivate *priv;
|
GUnixOutputStreamPrivate *priv;
|
||||||
|
@ -44,7 +44,7 @@ typedef struct _GVfs GVfs; /* Dummy typedef */
|
|||||||
typedef struct _GVfsClass GVfsClass;
|
typedef struct _GVfsClass GVfsClass;
|
||||||
|
|
||||||
struct _GVfs {
|
struct _GVfs {
|
||||||
GObject parent;
|
GObject parent_instance;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _GVfsClass
|
struct _GVfsClass
|
||||||
|
@ -40,7 +40,7 @@ G_BEGIN_DECLS
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* GVolumeMonitor:
|
* GVolumeMonitor:
|
||||||
* @parent: The parent class.
|
* @parent_instance: The parent instance.
|
||||||
*
|
*
|
||||||
* A Volume Monitor that watches for volume events.
|
* A Volume Monitor that watches for volume events.
|
||||||
**/
|
**/
|
||||||
@ -48,7 +48,7 @@ typedef struct _GVolumeMonitor GVolumeMonitor;
|
|||||||
typedef struct _GVolumeMonitorClass GVolumeMonitorClass;
|
typedef struct _GVolumeMonitorClass GVolumeMonitorClass;
|
||||||
|
|
||||||
struct _GVolumeMonitor {
|
struct _GVolumeMonitor {
|
||||||
GObject parent;
|
GObject parent_instance;
|
||||||
|
|
||||||
/*< private >*/
|
/*< private >*/
|
||||||
gpointer priv;
|
gpointer priv;
|
||||||
|
Loading…
Reference in New Issue
Block a user