summaryrefslogtreecommitdiffstats
path: root/include/widgets
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-10-15 15:39:08 +0200
committerDave Davenport <qball@gmpclient.org>2016-10-15 15:39:08 +0200
commitf0981d66972c07127f4bd7b54ab1b9dc7e0a91e9 (patch)
tree1122aec0001bc61bacc917767b6377ff233ace07 /include/widgets
parent9293c8b8ce5580c3be0d29366ca4287a706ee03e (diff)
Indenting, comments
Diffstat (limited to 'include/widgets')
-rw-r--r--include/widgets/listview.h6
-rw-r--r--include/widgets/textbox.h20
2 files changed, 13 insertions, 13 deletions
diff --git a/include/widgets/listview.h b/include/widgets/listview.h
index 22a67653..a489a085 100644
--- a/include/widgets/listview.h
+++ b/include/widgets/listview.h
@@ -83,7 +83,7 @@ void listview_set_padding ( listview *lv, unsigned int padding );
/**
* @param lv Handler to the listview object
- * @param lines The maximum number of lines
+ * @param lines The maximum number of lines
*
* Set the maximum number of lines to show.
*/
@@ -91,7 +91,7 @@ void listview_set_max_lines ( listview *lv, unsigned int lines );
/**
* @param lv Handler to the listview object
- * @param columns The maximum number of columns
+ * @param columns The maximum number of columns
*
* Set the maximum number of columns to show.
*/
@@ -123,7 +123,7 @@ void listview_set_scrollbar_width ( listview *lv, unsigned int width );
* @param lv Handler to the listview object
* @param cycle True for cycle mode
*
- * Set cycle mode. On last entry go to first.
+ * Set cycle mode. On last entry go to first.
*/
void listview_set_cycle ( listview *lv, gboolean cycle );
/**
diff --git a/include/widgets/textbox.h b/include/widgets/textbox.h
index 15de87dc..f467ea6c 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.