1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
2  * vim: set et sw=8 ts=8:
3  *
4  * Copyright (c) 2011, Red Hat, Inc.
5  *
6  * Authors: Cosimo Cecchi <cosimoc@redhat.com>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, see <http://www.gnu.org/licenses/>.
20  *
21  */
22 
23 #include "config.h"
24 #include <gtk/gtk.h>
25 #include "gsd-disk-space.h"
26 
27 int
main(int argc,char ** argv)28 main (int    argc,
29       char **argv)
30 {
31         GMainLoop *loop;
32 
33         gtk_init (&argc, &argv);
34 
35         loop = g_main_loop_new (NULL, FALSE);
36 
37         gsd_ldsm_show_empty_trash ();
38         g_main_loop_run (loop);
39 
40         g_main_loop_unref (loop);
41 
42         return 0;
43 }
44 
45