summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-01-09 22:40:11 +0100
committerDave Davenport <qball@gmpclient.org>2017-01-09 22:40:11 +0100
commit25dff63006663c947c17c4edbb85c6a12fcca799 (patch)
treec21ced366a7d71bf2fa539afd36743a7d5bd1056 /include
parentca01af6338382c75f31555160f40aa5385be6521 (diff)
Improve error handling string.
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 f8469ead..d81d8806 100644
--- a/include/widgets/textbox.h
+++ b/include/widgets/textbox.h
@@ -48,16 +48,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.