summaryrefslogtreecommitdiffstats
path: root/ganv/item.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/item.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/item.h')
-rw-r--r--ganv/item.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ganv/item.h b/ganv/item.h
index 2da061b..4605ffb 100644
--- a/ganv/item.h
+++ b/ganv/item.h
@@ -30,9 +30,9 @@ G_BEGIN_DECLS
struct _GanvCanvas;
-typedef struct _GanvItem GanvItem;
-typedef struct _GanvItemImpl GanvItemImpl;
-typedef struct _GanvItemClass GanvItemClass;
+typedef struct _GanvItem GanvItem;
+typedef struct _GanvItemPrivate GanvItemPrivate;
+typedef struct _GanvItemClass GanvItemClass;
/* Object flags for items */
enum {
@@ -52,8 +52,8 @@ enum {
#define GANV_ITEM_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), GANV_TYPE_ITEM, GanvItemClass))
struct _GanvItem {
- GtkObject object;
- GanvItemImpl* impl;
+ GtkObject object;
+ GanvItemPrivate* impl;
};
struct _GanvItemClass {