aboutsummaryrefslogtreecommitdiffstats
path: root/my-evolution/main.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-08-05 03:29:35 +0800
committernobody <nobody@localhost>2001-08-05 03:29:35 +0800
commit3c9ec9e74ef3128e84c0076eb1761205b0e84532 (patch)
tree0f0f7d161df8ec2e9a2e06dc0f87a8c17389d1e1 /my-evolution/main.c
parent950e90cd92e950cb17645b5c3d6fc6eae2f07c5e (diff)
downloadgsoc2013-evolution-3c9ec9e74ef3128e84c0076eb1761205b0e84532.tar
gsoc2013-evolution-3c9ec9e74ef3128e84c0076eb1761205b0e84532.tar.gz
gsoc2013-evolution-3c9ec9e74ef3128e84c0076eb1761205b0e84532.tar.bz2
gsoc2013-evolution-3c9ec9e74ef3128e84c0076eb1761205b0e84532.tar.lz
gsoc2013-evolution-3c9ec9e74ef3128e84c0076eb1761205b0e84532.tar.xz
gsoc2013-evolution-3c9ec9e74ef3128e84c0076eb1761205b0e84532.tar.zst
gsoc2013-evolution-3c9ec9e74ef3128e84c0076eb1761205b0e84532.zip
This commit was manufactured by cvs2svn to create tagGNOME_CORE_1_4_0_6
'GNOME_CORE_1_4_0_6'. svn path=/tags/GNOME_CORE_1_4_0_6/; revision=11668
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;
-}