aboutsummaryrefslogtreecommitdiff
path: root/src/theme.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/theme.c')
-rw-r--r--src/theme.c24
1 files changed, 18 insertions, 6 deletions
diff --git a/src/theme.c b/src/theme.c
index 4560abc..00e0d30 100644
--- a/src/theme.c
+++ b/src/theme.c
@@ -18,7 +18,9 @@ static char *themeName;
/****************************************************************************
****************************************************************************/
-void InitializeThemes() {
+void
+InitializeThemes()
+{
themeName = NULL;
themePaths = NULL;
@@ -27,17 +29,23 @@ void InitializeThemes() {
/****************************************************************************
****************************************************************************/
-void StartupThemes() {
+void
+StartupThemes()
+{
}
/****************************************************************************
****************************************************************************/
-void ShutdownThemes() {
+void
+ShutdownThemes()
+{
}
/****************************************************************************
****************************************************************************/
-void DestroyThemes() {
+void
+DestroyThemes()
+{
ThemePathNode *tp;
@@ -56,7 +64,9 @@ void DestroyThemes() {
/****************************************************************************
****************************************************************************/
-void AddThemePath(const char *path) {
+void
+AddThemePath(const char *path)
+{
ThemePathNode *tp;
@@ -75,7 +85,9 @@ void AddThemePath(const char *path) {
/****************************************************************************
****************************************************************************/
-void SetTheme(const char *name) {
+void
+SetTheme(const char *name)
+{
if(themeName) {
Warning("theme set multiple times");