summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDana Jansens <danakj@orodu.net>2007-05-31 15:44:28 +0000
committerDana Jansens <danakj@orodu.net>2007-05-31 15:44:28 +0000
commit7f5f9c5523d0bf48ebdc65b47f03dd7f17bb79ae (patch)
tree129bbd5b2a5b5a293d5b0f7303e7302c17cac071
parente4b162d470bfbb04035bb9b3f4481fb9d171fda2 (diff)
cleaner code
-rw-r--r--render/theme.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/render/theme.c b/render/theme.c
index ed836efd..f6887079 100644
--- a/render/theme.c
+++ b/render/theme.c
@@ -87,14 +87,15 @@ RrTheme* RrThemeNew(const RrInstance *inst, const gchar *name,
name = NULL;
}
}
- if (name == NULL && allow_fallback) {
- if (!parse_load_theme(DEFAULT_THEME, &ps.doc, &root, &ps.path)) {
- g_message("Unable to load the theme '%s'", DEFAULT_THEME);
+ if (name == NULL)
+ if (allow_fallback) {
+ if (!parse_load_theme(DEFAULT_THEME, &ps.doc, &root, &ps.path)) {
+ g_message("Unable to load the theme '%s'", DEFAULT_THEME);
+ return NULL;
+ }
+ } else
return NULL;
- }
}
- if (name == NULL)
- return NULL;
ps.inst = inst;