diff options
Diffstat (limited to 'ganv/port.h')
-rw-r--r-- | ganv/port.h | 8 |
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 { |