about summary refs log tree commit diff stats
path: root/src/config/theme.h
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2020-07-07 14:18:57 +0200
committerMichael Vetter <jubalh@iodoru.org>2020-07-07 14:18:57 +0200
commita2726b6a7d16f5f846a882fbbe9127e4604bb8bb (patch)
treee6d101676dec96430eafa645ad2b7bd5391a4294 /src/config/theme.h
parent95015cec56fa56f2ef97227edf06de17c65000d9 (diff)
downloadprofani-tty-a2726b6a7d16f5f846a882fbbe9127e4604bb8bb.tar.gz
Apply coding style
Diffstat (limited to 'src/config/theme.h')
-rw-r--r--src/config/theme.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/config/theme.h b/src/config/theme.h
index 86fd534e..ef076925 100644
--- a/src/config/theme.h
+++ b/src/config/theme.h
@@ -143,20 +143,20 @@ typedef enum {
     THEME_TRACKBAR,
 } theme_item_t;
 
-void theme_init(const char *const theme_name);
+void theme_init(const char* const theme_name);
 void theme_init_colours(void);
-gboolean theme_load(const char *const theme_name, gboolean load_theme_prefs);
-gboolean theme_exists(const char *const theme_name);
+gboolean theme_load(const char* const theme_name, gboolean load_theme_prefs);
+gboolean theme_exists(const char* const theme_name);
 GSList* theme_list(void);
 void theme_close(void);
-int theme_hash_attrs(const char *str);
+int theme_hash_attrs(const char* str);
 int theme_attrs(theme_item_t attrs);
-char* theme_get_string(char *str);
-void theme_free_string(char *str);
-theme_item_t theme_main_presence_attrs(const char *const presence);
-theme_item_t theme_roster_unread_presence_attrs(const char *const presence);
-theme_item_t theme_roster_active_presence_attrs(const char *const presence);
-theme_item_t theme_roster_presence_attrs(const char *const presence);
+char* theme_get_string(char* str);
+void theme_free_string(char* str);
+theme_item_t theme_main_presence_attrs(const char* const presence);
+theme_item_t theme_roster_unread_presence_attrs(const char* const presence);
+theme_item_t theme_roster_active_presence_attrs(const char* const presence);
+theme_item_t theme_roster_presence_attrs(const char* const presence);
 char* theme_get_bkgnd(void);
 
 #endif