Skip to content

Commit 381fd98

Browse files
authored
Merge pull request #1422 from dcermak/bool-to-boolean
Change type of bool to gboolean
2 parents e38001f + 62be5b4 commit 381fd98

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/rules.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ struct rule {
5656
char *format;
5757
char *script;
5858
enum behavior_fullscreen fullscreen;
59-
bool enabled;
59+
gboolean enabled;
6060
int progress_bar_alignment;
6161
char *set_stack_tag; // this has to be the last modifying rule
6262
};

test/dbus.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -639,7 +639,7 @@ TEST test_dbus_cb_dunst_RuleList(void)
639639
g_variant_dict_init(&d, dict);
640640

641641
char *str;
642-
bool boolean;
642+
gboolean boolean;
643643

644644
ASSERT(g_variant_dict_lookup(&d, "name", "s", &str));
645645
ASSERT_STR_EQ("testing RuleList", str);

0 commit comments

Comments
 (0)