aboutsummaryrefslogtreecommitdiffstats
path: root/notes/main.c
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-05-26 03:29:39 +0800
committernobody <nobody@localhost>2001-05-26 03:29:39 +0800
commitbe0db30b9482f915d3bfcc68cdd59bce073581b5 (patch)
tree8c1a355ccd0c851879a204e6263cbe6397f1aa5a /notes/main.c
parent03df6fccdefe8b11215183bf4dcfef71eef2290c (diff)
downloadgsoc2013-evolution-LIBGLADE_1_BEFORE_AUTOCONF_1_52.tar
gsoc2013-evolution-LIBGLADE_1_BEFORE_AUTOCONF_1_52.tar.gz
gsoc2013-evolution-LIBGLADE_1_BEFORE_AUTOCONF_1_52.tar.bz2
gsoc2013-evolution-LIBGLADE_1_BEFORE_AUTOCONF_1_52.tar.lz
gsoc2013-evolution-LIBGLADE_1_BEFORE_AUTOCONF_1_52.tar.xz
gsoc2013-evolution-LIBGLADE_1_BEFORE_AUTOCONF_1_52.tar.zst
gsoc2013-evolution-LIBGLADE_1_BEFORE_AUTOCONF_1_52.zip
This commit was manufactured by cvs2svn to create tagLIBGLADE_1_BEFORE_AUTOCONF_1_52
'LIBGLADE_1_BEFORE_AUTOCONF_1_52'. svn path=/tags/LIBGLADE_1_BEFORE_AUTOCONF_1_52/; revision=9995
Diffstat (limited to 'notes/main.c')
-rw-r--r--notes/main.c52
1 files changed, 0 insertions, 52 deletions
diff --git a/notes/main.c b/notes/main.c
deleted file mode 100644
index f3198c0d63..0000000000
--- a/notes/main.c
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- *
- * Author:
- * Anders Carlsson (andersca@gnu.org)
- *
- * (C) 2000 Helix Code, Inc.
- */
-
-#include <config.h>
-#include <gnome.h>
-#include <bonobo.h>
-#include <liboaf/liboaf.h>
-
-#include "e-util/e-gui-utils.h"
-#include "component-factory.h"
-
-static void
-init_corba (gint argc, gchar **argv)
-{
- gnome_init_with_popt_table ("evolution-notes-component", VERSION, argc, argv,
- oaf_popt_options, 0, NULL);
- oaf_init (argc, argv);
-}
-
-static void
-init_bonobo (void)
-{
- if (bonobo_init (CORBA_OBJECT_NIL, CORBA_OBJECT_NIL, CORBA_OBJECT_NIL) == FALSE) {
- e_notice (NULL, GNOME_MESSAGE_BOX_ERROR,
- _("Notes Component: Could not initialize bonobo"));
- exit (1);
- }
-}
-
-gint
-main (gint argc, gchar **argv)
-{
- bindtextdomain (PACKAGE, EVOLUTION_LOCALEDIR);
- textdomain (PACKAGE);
-
- init_corba (argc, argv);
- init_bonobo ();
-
- e_setup_base_dir ();
-
- notes_factory_init ();
- component_factory_init ();
-
- bonobo_main ();
-
- return 0;
-}