1 /* -*- c-basic-offset: 4 -*- vi:set ts=4 sts=4 sw=4:
2  * * Copyright (C) 2008-2011 Ali <aliov@xfce.org>
3  * * Copyright (C) 2015 Xfce Development Team <xfce4-dev@xfce.org>
4  *
5  * Licensed under the GNU General Public License Version 2
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
20  */
21 
22 #ifdef HAVE_CONFIG_H
23 #include <config.h>
24 #endif
25 
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29 
30 #include <gtk/gtk.h>
31 #include <gtk/gtkx.h>
32 #include <glib.h>
33 
34 #include <libxfce4util/libxfce4util.h>
35 #include <libxfce4ui/libxfce4ui.h>
36 
37 #include "xfpm-settings-app.h"
38 
main(int argc,char ** argv)39 int main (int argc, char **argv)
40 {
41   xfce_textdomain(GETTEXT_PACKAGE, LOCALEDIR, "UTF-8");
42 
43   return g_application_run (G_APPLICATION (xfpm_settings_app_new ()), argc, argv);
44 }
45