aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/main.c b/src/main.c
deleted file mode 100644
index 5c9723f..0000000
--- a/src/main.c
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * main.c -- logdiag main source file.
- *
- * This file is a part of logdiag.
- * Copyright Přemysl Janouch 2010. All rights reserved.
- *
- * See the file LICENSE for licensing information.
- *
- */
-
-#include <gtk/gtk.h>
-
-#include "config.h"
-
-#include "window-main.h"
-
-
-int main (int argc, char *argv[])
-{
- GtkWidget *wnd;
-
-#ifdef HAVE_GETTEXT
- setlocale (LC_ALL, "");
-
- bindtextdomain (GETTEXT_DOMAIN, GETTEXT_DIRNAME);
- textdomain (GETTEXT_DOMAIN);
-#endif
-
- /* For custom command line arguments, see:
- * http://git.gnome.org/browse/glade3/tree/src/main.c
- */
-
- gtk_init (&argc, &argv);
- wnd = logdiag_window_main_new ();
- gtk_main ();
-
- return 0;
-}
-