From 13b3c28c196da8be56845f0d98364558cc1e0187 Mon Sep 17 00:00:00 2001 From: Scoopta Date: Fri, 8 May 2020 18:34:23 -0700 Subject: [PATCH] Removed unneeded semicolons --- inc/property_box.h | 2 +- src/property_box.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/inc/property_box.h b/inc/property_box.h index f2e993a..bb3d2f1 100644 --- a/inc/property_box.h +++ b/inc/property_box.h @@ -22,7 +22,7 @@ #define WOFI_TYPE_PROPERTY_BOX wofi_property_box_get_type() -G_DECLARE_FINAL_TYPE(WofiPropertyBox, wofi_property_box, WOFI, PROPERTY_BOX, GtkBox); +G_DECLARE_FINAL_TYPE(WofiPropertyBox, wofi_property_box, WOFI, PROPERTY_BOX, GtkBox) GtkWidget* wofi_property_box_new(GtkOrientation orientation, gint spacing); diff --git a/src/property_box.c b/src/property_box.c index fea709b..a7fdd06 100644 --- a/src/property_box.c +++ b/src/property_box.c @@ -27,7 +27,7 @@ typedef struct { struct map* properties; } WofiPropertyBoxPrivate; -G_DEFINE_TYPE_WITH_PRIVATE(WofiPropertyBox, wofi_property_box, GTK_TYPE_BOX); +G_DEFINE_TYPE_WITH_PRIVATE(WofiPropertyBox, wofi_property_box, GTK_TYPE_BOX) static void wofi_property_box_init(WofiPropertyBox* box) { WofiPropertyBoxPrivate* this = wofi_property_box_get_instance_private(box);