From 56949550025f447691b0f32632b35af4749da358 Mon Sep 17 00:00:00 2001 From: Frederic Culot Date: Sun, 12 Jul 2009 16:21:57 +0000 Subject: stdbool header removed, unsigned type used instead --- src/vars.h | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) (limited to 'src/vars.h') diff --git a/src/vars.h b/src/vars.h index 3c28e78..1f220e8 100755 --- a/src/vars.h +++ b/src/vars.h @@ -1,4 +1,4 @@ -/* $calcurse: vars.h,v 1.33 2009/07/05 20:33:26 culot Exp $ */ +/* $calcurse: vars.h,v 1.34 2009/07/12 16:22:02 culot Exp $ */ /* * Calcurse - text-based organizer @@ -54,7 +54,6 @@ #endif #include -#include #define DIR_NAME ".calcurse/" #define TODO_PATH_NAME "todo" @@ -135,12 +134,12 @@ struct nbar_s /* General configuration variables */ typedef struct { - bool auto_save; + unsigned auto_save; unsigned periodic_save; - bool confirm_quit; - bool confirm_delete; - bool skip_system_dialogs; - bool skip_progress_bar; + unsigned confirm_quit; + unsigned confirm_delete; + unsigned skip_system_dialogs; + unsigned skip_progress_bar; char *editor; char *pager; char output_datefmt[BUFSIZ]; /* format for displaying date */ @@ -149,7 +148,7 @@ typedef struct conf_t; extern int col, row; -extern bool colorize; +extern unsigned colorize; extern ui_mode_e ui_mode; extern int days[12]; extern char *monthnames[12]; -- cgit v1.2.3-54-g00ecf