]> Dogcows Code - chaz/openbox/blobdiff - render/theme.c
1) translate all of openbox's output
[chaz/openbox] / render / theme.c
index ade6f6c566f158f81272953ef309faf863c277eb..8d61d23de99c2cb6c0468a7366ff74dfd17eade2 100644 (file)
@@ -76,15 +76,19 @@ RrTheme* RrThemeNew(const RrInstance *inst, gchar *name,
 
     if (name) {
         if (!parse_load_theme(name, &ps.doc, &root, &ps.path)) {
-            g_warning("Falling back to the default theme: '%s'",
+            g_message("Unable to load the theme '%s'", name);
+            g_message("Falling back to the default theme '%s'",
                       DEFAULT_THEME);
             /* make it fall back to default theme */
             name = NULL;
         }
     }
     if (!name) {
-        if (!parse_load_theme(DEFAULT_THEME, &ps.doc, &root, &ps.path))
+        if (!parse_load_theme(DEFAULT_THEME, &ps.doc, &root, &ps.path)) {
+            g_message("Unable to load the theme '%s'",
+                      name, DEFAULT_THEME);
             return NULL;
+        }
     }
     ps.inst = inst;
 
This page took 0.022238 seconds and 4 git commands to generate.