summaryrefslogtreecommitdiffstats
path: root/src/Canvas.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2020-07-18 11:55:45 +0200
committerDavid Robillard <d@drobilla.net>2020-07-18 11:56:30 +0200
commitdced6ada2b53c601ed6a90849cd54a78b6485980 (patch)
tree8e637bbde754adfcc767e6571db250e64566d005 /src/Canvas.cpp
parentcd07449e306366fe8cc881b469d9a97b17c0c22e (diff)
downloadganv-dced6ada2b53c601ed6a90849cd54a78b6485980.tar.gz
ganv-dced6ada2b53c601ed6a90849cd54a78b6485980.tar.bz2
ganv-dced6ada2b53c601ed6a90849cd54a78b6485980.zip
Remove spurious semicolons
Diffstat (limited to 'src/Canvas.cpp')
-rw-r--r--src/Canvas.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Canvas.cpp b/src/Canvas.cpp
index 6a18cdc..73e32bc 100644
--- a/src/Canvas.cpp
+++ b/src/Canvas.cpp
@@ -1866,8 +1866,8 @@ ganv_canvas_get_property(GObject* object,
switch (prop_id) {
GET_CASE(WIDTH, double, canvas->impl->width)
- GET_CASE(HEIGHT, double, canvas->impl->height)
- GET_CASE(LOCKED, boolean, canvas->impl->locked);
+ GET_CASE(HEIGHT, double, canvas->impl->height)
+ GET_CASE(LOCKED, boolean, canvas->impl->locked)
case PROP_FOCUSED_ITEM:
g_value_set_object(value, GANV_CANVAS(object)->impl->focused_item);
break;