Drop the CALLS_FREE_PTR_PROPERTY() macro

Replace it by g_free() as it does the same thing.
This commit is contained in:
Adrien Plazas
2018-08-03 11:14:46 +02:00
parent 52f7f2da6f
commit 3ebf58548c
3 changed files with 5 additions and 11 deletions

View File

@@ -506,7 +506,7 @@ finalize (GObject *object)
{
g_string_free (self->tone_queue, TRUE);
}
CALLS_FREE_PTR_PROPERTY (self->name);
g_free (self->name);
parent_class->finalize (object);
}