From 43373dd610017d7e78672e473a36285a92254f2e Mon Sep 17 00:00:00 2001 From: David Robillard Date: Sun, 16 Sep 2018 16:36:44 +0200 Subject: Rename private implementation types according to new Gtk conventions --- ganv/port.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'ganv/port.h') 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 { -- cgit v1.2.1