aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/main.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-08-20 23:43:30 +0800
committernobody <nobody@localhost>2001-08-20 23:43:30 +0800
commit60ef87c83e1bea0c299b8fe3368fcf435b87d607 (patch)
treeec1f6913db147c635df98f914ab6b3a1711e0fac /my-evolution/main.c
parentdb79f8266e5055e6d5512016dfa518f71ce1a8cc (diff)
downloadgsoc2013-evolution-MC_4_5_55.tar.gz
gsoc2013-evolution-MC_4_5_55.tar.zst
gsoc2013-evolution-MC_4_5_55.zip
This commit was manufactured by cvs2svn to create tag 'MC_4_5_55'.MC_4_5_55
svn path=/tags/MC_4_5_55/; revision=12307
Diffstat (limited to 'my-evolution/main.c')
-rw-r--r--my-evolution/main.c69
1 files changed, 0 insertions, 69 deletions
diff --git a/my-evolution/main.c b/my-evolution/main.c
deleted file mode 100644
index f13e76434c..0000000000
--- a/my-evolution/main.c
+++ /dev/null
@@ -1,69 +0,0 @@
-/*
- * main.c: Main file for the Executive Summary
- *
- * Copyright (C) 2001 Ximian, Inc.
- *
- * Authors: Iain Holmes <iain@ximian.com>
- */
-
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
-#include <stdio.h>
-#include <unistd.h>
-#include <stdlib.h>
-
-#include <glib.h>
-#include <gdk/gdk.h>
-#include <gdk/gdkrgb.h>
-
-#include <libgnome/gnome-defs.h>
-#include <libgnome/gnome-i18n.h>
-#include <libgnomeui/gnome-init.h>
-
-#include <bonobo/bonobo-main.h>
-#include <liboaf/liboaf.h>
-
-#ifdef GTKHTML_HAVE_GCONF
-#include <gconf/gconf.h>
-#endif
-
-#include <libgnomevfs/gnome-vfs.h>
-#include <glade/glade.h>
-
-#include "component-factory.h"
-
-int
-main (int argc,
- char **argv)
-{
- CORBA_ORB orb;
-
- bindtextdomain (PACKAGE, EVOLUTION_LOCALEDIR);
- textdomain (PACKAGE);
-
- gnome_init_with_popt_table ("Evolution Executive Summary", VERSION,
- argc, argv, oaf_popt_options, 0, NULL);
- orb = oaf_init (argc, argv);
-
- gdk_rgb_init ();
- if (bonobo_init (orb, CORBA_OBJECT_NIL, CORBA_OBJECT_NIL) == FALSE) {
- g_error (_("Executive summary component could not initialize Bonobo.\n"));
- exit (1);
- }
-
-#ifdef GTKHTML_HAVE_GCONF
- gconf_init (argc, argv, NULL);
-#endif
-
- glade_gnome_init ();
- gnome_vfs_init ();
-
- /* Start our component */
- component_factory_init ();
-
- bonobo_main ();
-
- return 0;
-}