Removed unneeded semicolons

This commit is contained in:
Scoopta 2020-05-08 18:34:23 -07:00
parent fdf1c5572d
commit 13b3c28c19
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@
#define WOFI_TYPE_PROPERTY_BOX wofi_property_box_get_type() #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); GtkWidget* wofi_property_box_new(GtkOrientation orientation, gint spacing);

View File

@ -27,7 +27,7 @@ typedef struct {
struct map* properties; struct map* properties;
} WofiPropertyBoxPrivate; } 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) { static void wofi_property_box_init(WofiPropertyBox* box) {
WofiPropertyBoxPrivate* this = wofi_property_box_get_instance_private(box); WofiPropertyBoxPrivate* this = wofi_property_box_get_instance_private(box);