summaryrefslogtreecommitdiffstats
path: root/src/group.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/group.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/group.c')
-rw-r--r--src/group.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/group.c b/src/group.c
index b13dc13..520c247 100644
--- a/src/group.c
+++ b/src/group.c
@@ -37,8 +37,8 @@ static GanvItemClass* group_parent_class;
static void
ganv_group_init(GanvGroup* group)
{
- GanvGroupImpl* impl = G_TYPE_INSTANCE_GET_PRIVATE(
- group, GANV_TYPE_GROUP, GanvGroupImpl);
+ GanvGroupPrivate* impl = G_TYPE_INSTANCE_GET_PRIVATE(
+ group, GANV_TYPE_GROUP, GanvGroupPrivate);
group->impl = impl;
group->impl->item_list = NULL;
@@ -428,7 +428,7 @@ ganv_group_class_init(GanvGroupClass* klass)
group_parent_class = (GanvItemClass*)g_type_class_peek_parent(klass);
- g_type_class_add_private(klass, sizeof(GanvGroupImpl));
+ g_type_class_add_private(klass, sizeof(GanvGroupPrivate));
gobject_class->set_property = ganv_group_set_property;
gobject_class->get_property = ganv_group_get_property;