summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-02-06 23:45:46 +0100
committerDave Davenport <qball@gmpclient.org>2017-02-06 23:45:46 +0100
commit7b3e0918cfe9f24737f725a21ef577aff3a43dfb (patch)
treeaa37bf86bdb8c47c257ca77e131fa93c3ada2555 /include
parentd3b050e1f1276c7f27392805b75ab91335ab2edd (diff)
Reduce amount of paths created
Diffstat (limited to 'include')
-rw-r--r--include/widgets/textbox.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/widgets/textbox.h b/include/widgets/textbox.h
index b7a70d16..20ed7e0a 100644
--- a/include/widgets/textbox.h
+++ b/include/widgets/textbox.h
@@ -46,16 +46,16 @@ 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_INDICATOR = 1 << 23,
+ 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_INDICATOR = 1 << 23,
} TextboxFlags;
/**
* Flags indicating current state of the textbox.