summaryrefslogtreecommitdiff
path: root/libyelp/yelp-document.h
diff options
context:
space:
mode:
authorShaun McCance <shaunm@gnome.org>2020-03-09 19:37:19 -0400
committerShaun McCance <shaunm@gnome.org>2020-03-09 19:37:19 -0400
commite6e3f2547abb0993d08e50688b163eea5b230096 (patch)
tree3d236a149e584f997a5605732c1818e763c8098b /libyelp/yelp-document.h
parent3bf412214bf80a586406d5a75226ada38a877985 (diff)
downloadyelp-e6e3f2547abb0993d08e50688b163eea5b230096.tar.gz
Remove deprecated method of doing private structs on gobjects
Diffstat (limited to 'libyelp/yelp-document.h')
-rw-r--r--libyelp/yelp-document.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/libyelp/yelp-document.h b/libyelp/yelp-document.h
index 8ee9203e..d4db68c5 100644
--- a/libyelp/yelp-document.h
+++ b/libyelp/yelp-document.h
@@ -35,9 +35,9 @@ G_BEGIN_DECLS
#define YELP_IS_DOCUMENT_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), YELP_TYPE_DOCUMENT))
#define YELP_DOCUMENT_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), YELP_TYPE_DOCUMENT, YelpDocumentClass))
-typedef struct _YelpDocument YelpDocument;
-typedef struct _YelpDocumentClass YelpDocumentClass;
-typedef struct _YelpDocumentPriv YelpDocumentPriv;
+typedef struct _YelpDocument YelpDocument;
+typedef struct _YelpDocumentClass YelpDocumentClass;
+typedef struct _YelpDocumentPrivate YelpDocumentPrivate;
typedef enum {
YELP_DOCUMENT_SIGNAL_CONTENTS,
@@ -51,8 +51,8 @@ typedef void (*YelpDocumentCallback) (YelpDocument *document,
GError *error);
struct _YelpDocument {
- GObject parent;
- YelpDocumentPriv *priv;
+ GObject parent;
+ YelpDocumentPrivate *priv;
};
struct _YelpDocumentClass {