]> git.0d.be Git - empathy.git/blob - src/empathy-debugger.c
Updated Polish translation
[empathy.git] / src / empathy-debugger.c
1 /*
2  * Copyright (C) 2005-2007 Imendio AB
3  * Copyright (C) 2007-2010 Collabora Ltd.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2.1 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General Public
16  * License along with this library; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18  */
19
20 #include <config.h>
21
22 #include <gtk/gtk.h>
23 #include <glib/gi18n.h>
24
25 #include <libempathy/empathy-utils.h>
26 #include <libempathy-gtk/empathy-ui-utils.h>
27
28 #include "empathy-debug-window.h"
29
30 int
31 main (int argc,
32     char **argv)
33 {
34   GtkWidget *window;
35
36   g_thread_init (NULL);
37   gtk_init (&argc, &argv);
38   empathy_gtk_init ();
39
40   g_set_application_name (_("Empathy Debugger"));
41
42   gtk_window_set_default_icon_name ("empathy");
43
44   window = empathy_debug_window_new (NULL);
45   g_signal_connect (window, "destroy", gtk_main_quit, NULL);
46
47   gtk_main ();
48
49   return EXIT_SUCCESS;
50 }