diff options
author | Jari Vetoniemi <mailroxas@gmail.com> | 2015-01-18 00:59:11 +0200 |
---|---|---|
committer | Jari Vetoniemi <mailroxas@gmail.com> | 2015-01-18 00:59:11 +0200 |
commit | 6b5b93239eab623c786e1c537563a81a285ffbd2 (patch) | |
tree | da1a11ea6a886e812f5f7455d5e943adfb0b7d52 /client/common/common.h | |
parent | 4dc5c77d8236e0d2ce7aa4a82da3d8103ef9426b (diff) | |
download | bemenu-6b5b93239eab623c786e1c537563a81a285ffbd2.tar.gz bemenu-6b5b93239eab623c786e1c537563a81a285ffbd2.tar.bz2 bemenu-6b5b93239eab623c786e1c537563a81a285ffbd2.zip |
Use bools instead of ints
Diffstat (limited to 'client/common/common.h')
-rw-r--r-- | client/common/common.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/client/common/common.h b/client/common/common.h index fa2025c..fab8758 100644 --- a/client/common/common.h +++ b/client/common/common.h @@ -5,16 +5,16 @@ struct client { enum bm_filter_mode filter_mode; - int32_t wrap; - uint32_t lines; const char *colors[BM_COLOR_LAST]; const char *title; const char *prefix; const char *font; - int32_t selected; - int32_t bottom; - int32_t grab; - int32_t monitor; + uint32_t lines; + uint32_t selected; + uint32_t monitor; + bool bottom; + bool grab; + bool wrap; }; void parse_args(struct client *client, int *argc, char **argv[]); |