summaryrefslogtreecommitdiffstats
path: root/ganv/port.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/port.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/port.h')
-rw-r--r--ganv/port.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ganv/port.h b/ganv/port.h
index 70e801e..03f4bb3 100644
--- a/ganv/port.h
+++ b/ganv/port.h
@@ -29,12 +29,12 @@ G_BEGIN_DECLS
#define GANV_IS_PORT_CLASS(klass) (GTK_CHECK_CLASS_TYPE((klass), GANV_TYPE_PORT))
#define GANV_PORT_GET_CLASS(obj) (GTK_CHECK_GET_CLASS((obj), GANV_TYPE_PORT, GanvPortClass))
-typedef struct _GanvPortClass GanvPortClass;
-typedef struct _GanvPortImpl GanvPortImpl;
+typedef struct _GanvPortClass GanvPortClass;
+typedef struct _GanvPortPrivate GanvPortPrivate;
struct _GanvPort {
- GanvBox box;
- GanvPortImpl* impl;
+ GanvBox box;
+ GanvPortPrivate* impl;
};
struct _GanvPortClass {