summaryrefslogtreecommitdiffstats
path: root/src/text.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/text.c')
-rw-r--r--src/text.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/text.c b/src/text.c
index bbac187..d7ab3e0 100644
--- a/src/text.c
+++ b/src/text.c
@@ -188,12 +188,12 @@ ganv_text_get_property(GObject* object,
}
switch (prop_id) {
- GET_CASE(TEXT, string, impl->text);
- GET_CASE(X, double, impl->coords.x);
- GET_CASE(Y, double, impl->coords.y);
- GET_CASE(WIDTH, double, impl->coords.width);
- GET_CASE(HEIGHT, double, impl->coords.height);
- GET_CASE(COLOR, uint, impl->color);
+ GET_CASE(TEXT, string, impl->text)
+ GET_CASE(X, double, impl->coords.x)
+ GET_CASE(Y, double, impl->coords.y)
+ GET_CASE(WIDTH, double, impl->coords.width)
+ GET_CASE(HEIGHT, double, impl->coords.height)
+ GET_CASE(COLOR, uint, impl->color)
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID(object, prop_id, pspec);
break;