Update Catalan translation
[empathy-mirror.git] / tests / interactive / test-empathy-status-preset-dialog.c
blob78a23a4361b7361d0456f97acac47cbdb24e1ebf
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3 * Copyright (C) 2009 Collabora Ltd.
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 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
19 * Authors:
20 * Danielle Madeley <danielle.madeley@collabora.co.uk>
21 * Will Thompson <will.thompson@collabora.co.uk>
24 #include "config.h"
26 #include <gtk/gtk.h>
28 #include "empathy-status-preset-dialog.h"
29 #include "empathy-status-presets.h"
30 #include "empathy-ui-utils.h"
32 int
33 main (int argc, char **argv)
35 GtkWidget *dialog;
37 gtk_init (&argc, &argv);
38 empathy_gtk_init ();
40 empathy_status_presets_get_all ();
42 dialog = empathy_status_preset_dialog_new (NULL);
43 gtk_dialog_run (GTK_DIALOG (dialog));
45 return 0;