Removed unneeded semicolons
This commit is contained in:
parent
fdf1c5572d
commit
13b3c28c19
@ -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);
|
||||
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user