[ekiga] [windows] Remove unuseful messages



commit 28dac1cbcdaa14de4b118046116587d1ea3c2ce6
Author: Eugen Dedu <Eugen Dedu pu-pm univ-fcomte fr>
Date:   Wed Dec 26 16:46:24 2012 +0100

    [windows] Remove unuseful messages

 lib/gmconf/gmconf-glib.c |   17 ++++-------------
 1 files changed, 4 insertions(+), 13 deletions(-)
---
diff --git a/lib/gmconf/gmconf-glib.c b/lib/gmconf/gmconf-glib.c
index 78bbb47..e1e133f 100644
--- a/lib/gmconf/gmconf-glib.c
+++ b/lib/gmconf/gmconf-glib.c
@@ -1107,10 +1107,6 @@ gm_conf_load_user_conf (DataBase *db)
 
   filename = gm_conf_get_user_conf_filename ();
   result = database_load_file (db, filename);
-
-  if (! result)
-    g_log (G_LOG_DOMAIN, G_LOG_LEVEL_WARNING,
-	   "couldn't read the user configuration in %s", filename);
   g_free (filename);
 
   return result;
@@ -1125,13 +1121,11 @@ gm_conf_load_sys_conf (DataBase *db)
 
   g_return_val_if_fail (db != NULL, FALSE);
 
-  filename = g_build_filename (SYSCONFDIR, "ekiga",
-			       "ekiga.schemas", NULL);
+  filename = g_build_filename (SYSCONFDIR, "ekiga", "ekiga.schemas", NULL);
   result = database_load_file (db, filename);
 
   if (! result)
-    g_log (G_LOG_DOMAIN, G_LOG_LEVEL_WARNING,
-	   "couldn't read the system configuration in %s", filename);
+    g_error ("couldn't read the system configuration (ekiga.schemas) from %s", filename);
   g_free (filename);
 
   return result;
@@ -1156,13 +1150,10 @@ saveconf_timer_callback (G_GNUC_UNUSED gpointer unused)
 void
 gm_conf_init ()
 {
-  gboolean result = FALSE;
   DataBase *db = database_get_default ();
 
-  result = gm_conf_load_sys_conf (db);
-  result = (gm_conf_load_user_conf (db) || result);
-  if (!result)
-    g_warning ("Couldn't load system configuration");
+  gm_conf_load_sys_conf (db);
+  gm_conf_load_user_conf (db);
 
   /* those keys aren't found in gnomemeeting's schema */
   gm_conf_set_bool ("/desktop/gnome/interface/menus_have_icons", TRUE);



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]