Skip to content
Snippets Groups Projects
Commit f7919236 authored by Sean Davis's avatar Sean Davis
Browse files

Add missing xfconf_init to test-window.c

parent d1b032ad
No related branches found
No related tags found
No related merge requests found
......@@ -28,6 +28,7 @@
#include <gtk/gtk.h>
#include <libxfce4util/libxfce4util.h>
#include <xfconf/xfconf.h>
#include "gs-debug.h"
#include "gs-grab.h"
......@@ -143,6 +144,13 @@ main (int argc,
exit (1);
}
if (!xfconf_init(&error)) {
g_error("Failed to connect to xfconf daemon: %s.", error->message);
g_error_free(error);
exit(1);
}
gs_debug_init (TRUE, FALSE);
grab = gs_grab_new ();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment