summaryrefslogtreecommitdiffstats
path: root/src/item.c
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 /src/item.c
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 'src/item.c')
-rw-r--r--src/item.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/item.c b/src/item.c
index f3ee636..85d7511 100644
--- a/src/item.c
+++ b/src/item.c
@@ -72,8 +72,8 @@ static GtkObjectClass* item_parent_class;
static void
ganv_item_init(GanvItem* item)
{
- GanvItemImpl* impl = G_TYPE_INSTANCE_GET_PRIVATE(
- item, GANV_TYPE_ITEM, GanvItemImpl);
+ GanvItemPrivate* impl = G_TYPE_INSTANCE_GET_PRIVATE(
+ item, GANV_TYPE_ITEM, GanvItemPrivate);
item->object.flags |= GANV_ITEM_VISIBLE;
item->impl = impl;
@@ -653,7 +653,7 @@ ganv_item_class_init(GanvItemClass* klass)
item_parent_class = (GtkObjectClass*)g_type_class_peek_parent(klass);
- g_type_class_add_private(klass, sizeof(GanvItemImpl));
+ g_type_class_add_private(klass, sizeof(GanvItemPrivate));
gobject_class->set_property = ganv_item_set_property;
gobject_class->get_property = ganv_item_get_property;