lib: Kill last usage of C++ type bool

Signed-off-by: Louis Rilling <l.rilling@av7.net>
This commit is contained in:
Louis Rilling 2011-09-15 00:23:18 +02:00 committed by David Bremner
parent bdf38b5e0f
commit 21b13c3932

View file

@ -49,16 +49,16 @@ struct visible _notmuch_message {
struct maildir_flag_tag {
char flag;
const char *tag;
bool inverse;
notmuch_bool_t inverse;
};
/* ASCII ordered table of Maildir flags and associated tags */
static struct maildir_flag_tag flag2tag[] = {
{ 'D', "draft", false},
{ 'F', "flagged", false},
{ 'P', "passed", false},
{ 'R', "replied", false},
{ 'S', "unread", true }
{ 'D', "draft", FALSE},
{ 'F', "flagged", FALSE},
{ 'P', "passed", FALSE},
{ 'R', "replied", FALSE},
{ 'S', "unread", TRUE }
};
/* We end up having to call the destructor explicitly because we had