Fix modest_tny_msg_header_get_all_recipients_list (in case from is empty)
[modest] / src / modest-init.c
index 5d3189a..a4f4a89 100644 (file)
@@ -36,6 +36,7 @@
 #include <modest-runtime-priv.h>
 #include <modest-init.h>
 #include <modest-defs.h>
+#include "modest-address-book.h"
 #include <modest-singletons.h>
 #include <widgets/modest-header-view.h>
 #include <widgets/modest-folder-view.h>
@@ -186,7 +187,7 @@ force_ke_recv_load (void)
 {
        if (strcmp ("cerm_device_memory_full",
                    _KR("cerm_device_memory_full")) == 0) {
-               g_warning ("%s: cannot get translation for cerm_device_memory_full",
+               g_debug ("%s: cannot get translation for cerm_device_memory_full",
                           __FUNCTION__);
                return FALSE;
        }
@@ -245,6 +246,9 @@ modest_init (int argc, char *argv[])
                return FALSE;
        }
 
+       /* Initialize addressbook */
+       modest_address_book_init ();
+
        reset = modest_runtime_get_debug_flags () & MODEST_RUNTIME_DEBUG_FACTORY_SETTINGS;
        if (!init_header_columns(modest_runtime_get_conf(), reset)) {
                modest_init_uninit ();
@@ -281,7 +285,7 @@ init_ui (gint argc, gchar** argv)
 {
        /* Set application name */
        g_set_application_name (modest_platform_get_app_name());
-       /* g_message (modest_platform_get_app_name()); */
+       /* g_debug (modest_platform_get_app_name()); */
 
        /* Init stock icons */
        init_stock_icons ();
@@ -564,11 +568,29 @@ init_debug_g_type (void)
        g_type_init_with_debug_flags (gflags);
 }
 
+#ifndef DEBUG
+static void 
+null_log(const gchar* dom, 
+        GLogLevelFlags l, 
+        const gchar* m, 
+        gpointer d)
+{
+       return;
+};
+#endif
+
 static void
 init_debug_logging (void)
 {
        ModestRuntimeDebugFlags mflags;
        mflags = modest_runtime_get_debug_flags ();
+
+#ifndef DEBUG
+       if (! (mflags & MODEST_RUNTIME_DEBUG_CODE)) {
+               g_log_set_handler (NULL, G_LOG_LEVEL_DEBUG, null_log, NULL);
+       }
+#endif
+
        
        if (mflags & MODEST_RUNTIME_DEBUG_ABORT_ON_WARNING)
                g_log_set_always_fatal (G_LOG_LEVEL_ERROR |
@@ -680,7 +702,7 @@ init_stock_icons (void)
                                g_object_unref (pixbuf);
                        }
                        else
-                               g_warning ("Modest: %s: failed to load %s icon", __FUNCTION__, items_names[i]);
+                               g_warning ("%s: failed to load %s icon", __FUNCTION__, items_names[i]);
                }
                /* Drop our reference to the factory, GTK will hold a reference. */
                g_object_unref (factory);