summaryrefslogtreecommitdiffstats
path: root/ganv/box.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2018-09-16 16:36:44 +0200
committerDavid Robillard <d@drobilla.net>2018-09-16 17:08:00 +0200
commit43373dd610017d7e78672e473a36285a92254f2e (patch)
treea348bc2558f25f70e805ab0b3ecb419543fa387b /ganv/box.h
parent0f916d226847cf034693ea1c0427929c4fa0e46e (diff)
downloadganv-43373dd610017d7e78672e473a36285a92254f2e.tar.gz
ganv-43373dd610017d7e78672e473a36285a92254f2e.tar.bz2
ganv-43373dd610017d7e78672e473a36285a92254f2e.zip
Rename private implementation types according to new Gtk conventions
Diffstat (limited to 'ganv/box.h')
-rw-r--r--ganv/box.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ganv/box.h b/ganv/box.h
index 203be69..ab166bf 100644
--- a/ganv/box.h
+++ b/ganv/box.h
@@ -27,12 +27,12 @@ G_BEGIN_DECLS
#define GANV_IS_BOX_CLASS(klass) (GTK_CHECK_CLASS_TYPE((klass), GANV_TYPE_BOX))
#define GANV_BOX_GET_CLASS(obj) (GTK_CHECK_GET_CLASS((obj), GANV_TYPE_BOX, GanvBoxClass))
-typedef struct _GanvBoxClass GanvBoxClass;
-typedef struct _GanvBoxImpl GanvBoxImpl;
+typedef struct _GanvBoxClass GanvBoxClass;
+typedef struct _GanvBoxPrivate GanvBoxPrivate;
struct _GanvBox {
- GanvNode node;
- GanvBoxImpl* impl;
+ GanvNode node;
+ GanvBoxPrivate* impl;
};
/**