Updates for some deprecated thread APIs
[yelp.git] / src / yelp.c
blobfac6d1a2515637cb0a7d7788f355372be62e8901
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * Copyright (C) 2010 Shaun McCance <shaunm@gnome.org>
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of the
8 * License, or (at your option) any later version.
10 * This program 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 * General Public License for more details.
15 * You should have received a copy of the GNU General Public
16 * License along with this program; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
20 * Author: Shaun McCance <shaunm@gnome.org>
23 #ifdef HAVE_CONFIG_H
24 #include <config.h>
25 #endif
27 #include <locale.h>
29 #include <glib.h>
30 #include <glib/gi18n.h>
31 #include <gtk/gtk.h>
33 #include "yelp-application.h"
35 int
36 main (int argc, char **argv)
38 YelpApplication *app;
40 g_type_init ();
42 setlocale (LC_ALL, "");
43 textdomain (GETTEXT_PACKAGE);
44 bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
45 bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
47 app = yelp_application_new ();
49 return g_application_run (G_APPLICATION (app), argc, argv);