]> git.0d.be Git - empathy.git/blobdiff - src/empathy-chat.c
Use double quotes for all internal headers
[empathy.git] / src / empathy-chat.c
index da69a8ebe3c021248e64321228c1bd0abd016c97..1af26b230dc3d9354016705f54b433e345f7a862 100644 (file)
  *          Guillaume Desmottes <guillaume.desmottes@collabora.co.uk>
  */
 
-#include <config.h>
+#include "config.h"
 
-#include <glib.h>
 #include <glib/gi18n.h>
-#include <gtk/gtk.h>
 
 #include <libnotify/notify.h>
 
-#include <libempathy/empathy-presence-manager.h>
+#include "libempathy/empathy-presence-manager.h"
 
-#include <libempathy-gtk/empathy-theme-manager.h>
-#include <libempathy-gtk/empathy-ui-utils.h>
+#include "libempathy-gtk/empathy-theme-manager.h"
+#include "libempathy-gtk/empathy-ui-utils.h"
 
 #include "empathy-chat-manager.h"
+#include "empathy-chat-resources.h"
 
 #define DEBUG_FLAG EMPATHY_DEBUG_CHAT
-#include <libempathy/empathy-debug.h>
+#include "libempathy/empathy-debug.h"
 
 /* Exit after $TIMEOUT seconds if not displaying any call window */
 #define TIMEOUT 60
@@ -91,6 +90,7 @@ main (int argc,
   GOptionEntry options[] = {
       { NULL }
   };
+  GResource *resource;
 #ifdef ENABLE_DEBUG
   TpDebugSender *debug_sender;
 #endif
@@ -124,6 +124,9 @@ main (int argc,
 
   notify_init (_(PACKAGE_NAME));
 
+  resource = empathy_chat_get_resource ();
+  g_resources_register (resource);
+
   app = gtk_application_new (EMPATHY_CHAT_DBUS_NAME, G_APPLICATION_FLAGS_NONE);
   g_signal_connect (app, "activate", G_CALLBACK (activate_cb), NULL);
 
@@ -164,6 +167,9 @@ main (int argc,
   g_object_unref (debug_sender);
 #endif
 
+  g_resources_unregister (resource);
+  g_resource_unref (resource);
+
   notify_uninit ();
 
   return retval;