mirror of
https://git.notmuchmail.org/git/notmuch
synced 2025-02-17 23:53:15 +01:00
lib: Kill last usage of C++ type bool
Signed-off-by: Louis Rilling <l.rilling@av7.net>
This commit is contained in:
parent
bdf38b5e0f
commit
21b13c3932
1 changed files with 6 additions and 6 deletions
|
@ -49,16 +49,16 @@ struct visible _notmuch_message {
|
||||||
struct maildir_flag_tag {
|
struct maildir_flag_tag {
|
||||||
char flag;
|
char flag;
|
||||||
const char *tag;
|
const char *tag;
|
||||||
bool inverse;
|
notmuch_bool_t inverse;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* ASCII ordered table of Maildir flags and associated tags */
|
/* ASCII ordered table of Maildir flags and associated tags */
|
||||||
static struct maildir_flag_tag flag2tag[] = {
|
static struct maildir_flag_tag flag2tag[] = {
|
||||||
{ 'D', "draft", false},
|
{ 'D', "draft", FALSE},
|
||||||
{ 'F', "flagged", false},
|
{ 'F', "flagged", FALSE},
|
||||||
{ 'P', "passed", false},
|
{ 'P', "passed", FALSE},
|
||||||
{ 'R', "replied", false},
|
{ 'R', "replied", FALSE},
|
||||||
{ 'S', "unread", true }
|
{ 'S', "unread", TRUE }
|
||||||
};
|
};
|
||||||
|
|
||||||
/* We end up having to call the destructor explicitly because we had
|
/* We end up having to call the destructor explicitly because we had
|
||||||
|
|
Loading…
Add table
Reference in a new issue