summaryrefslogtreecommitdiff
path: root/apps/gui/list.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/gui/list.h')
-rw-r--r--apps/gui/list.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/gui/list.h b/apps/gui/list.h
index 7865dddc08..ed61889083 100644
--- a/apps/gui/list.h
+++ b/apps/gui/list.h
@@ -118,7 +118,7 @@ struct gui_synclist
118 /* The data that will be passed to the callback function YOU implement */ 118 /* The data that will be passed to the callback function YOU implement */
119 void * data; 119 void * data;
120 /* The optional title, set to NULL for none */ 120 /* The optional title, set to NULL for none */
121 const char * title; 121 char * title;
122 /* Optional title icon */ 122 /* Optional title icon */
123 enum themable_icons title_icon; 123 enum themable_icons title_icon;
124 bool show_selection_marker; /* set to true by default */ 124 bool show_selection_marker; /* set to true by default */
@@ -166,7 +166,7 @@ extern void gui_synclist_add_item(struct gui_synclist * lists);
166extern void gui_synclist_del_item(struct gui_synclist * lists); 166extern void gui_synclist_del_item(struct gui_synclist * lists);
167extern void gui_synclist_limit_scroll(struct gui_synclist * lists, bool scroll); 167extern void gui_synclist_limit_scroll(struct gui_synclist * lists, bool scroll);
168extern void gui_synclist_flash(struct gui_synclist * lists); 168extern void gui_synclist_flash(struct gui_synclist * lists);
169extern void gui_synclist_set_title(struct gui_synclist * lists, const char * title, 169extern void gui_synclist_set_title(struct gui_synclist * lists, char * title,
170 enum themable_icons icon); 170 enum themable_icons icon);
171extern void gui_synclist_hide_selection_marker(struct gui_synclist *lists, 171extern void gui_synclist_hide_selection_marker(struct gui_synclist *lists,
172 bool hide); 172 bool hide);