summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-04-01 17:58:41 +0200
committerDave Davenport <qball@gmpclient.org>2016-04-01 17:58:41 +0200
commit1b4e5069f6ed11a9b75252458d892050b9c8c197 (patch)
tree9aa57a5be2d82a62e70b7971fc6e1fffc35073d8 /include
parent0c7d1a6b177727384efb4b0479b9aceb279d1cdd (diff)
Revert "Test config file before load, support ~/.config/rofi/theme and remove config_path global, fix loading dynamic options from /etc/rofi.conf"
Diffstat (limited to 'include')
-rw-r--r--include/mode.h2
-rw-r--r--include/textbox.h18
2 files changed, 10 insertions, 10 deletions
diff --git a/include/mode.h b/include/mode.h
index aaf38566..90bae0f3 100644
--- a/include/mode.h
+++ b/include/mode.h
@@ -7,7 +7,7 @@
* The 'object' that makes a mode in rofi.
* @{
*/
-typedef struct rofi_mode Mode;
+typedef struct rofi_mode Mode;
/**
* Enum used to sum the possible states of ROFI.
diff --git a/include/textbox.h b/include/textbox.h
index e1d608e1..3d3b8d09 100644
--- a/include/textbox.h
+++ b/include/textbox.h
@@ -38,15 +38,15 @@ typedef struct
typedef enum
{
- TB_AUTOHEIGHT = 1 << 0,
- TB_AUTOWIDTH = 1 << 1,
- TB_LEFT = 1 << 16,
- TB_RIGHT = 1 << 17,
- TB_CENTER = 1 << 18,
- TB_EDITABLE = 1 << 19,
- TB_MARKUP = 1 << 20,
- TB_WRAP = 1 << 21,
- TB_PASSWORD = 1 << 22,
+ TB_AUTOHEIGHT = 1 << 0,
+ TB_AUTOWIDTH = 1 << 1,
+ TB_LEFT = 1 << 16,
+ TB_RIGHT = 1 << 17,
+ TB_CENTER = 1 << 18,
+ TB_EDITABLE = 1 << 19,
+ TB_MARKUP = 1 << 20,
+ TB_WRAP = 1 << 21,
+ TB_PASSWORD = 1 << 22,
} TextboxFlags;
typedef enum