diff options
author | nobody <nobody@localhost> | 2003-06-29 00:20:00 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2003-06-29 00:20:00 +0800 |
commit | b0cd2bfe6246708f53f974070cff72714f67b52d (patch) | |
tree | e521429188462e4446c632b5bd4b6f333e589995 /notes/main.c | |
parent | 5a8e20476b93515b8e69f7e1c8f659ab3dc55a8f (diff) | |
download | gsoc2013-evolution-gtranslator-1-0.tar.gz gsoc2013-evolution-gtranslator-1-0.tar.zst gsoc2013-evolution-gtranslator-1-0.zip |
This commit was manufactured by cvs2svn to create taggtranslator-1-0
'gtranslator-1-0'.
svn path=/tags/gtranslator-1-0/; revision=21676
Diffstat (limited to 'notes/main.c')
-rw-r--r-- | notes/main.c | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/notes/main.c b/notes/main.c deleted file mode 100644 index 340a09469b..0000000000 --- a/notes/main.c +++ /dev/null @@ -1,52 +0,0 @@ -/* - * - * Author: - * Anders Carlsson (andersca@gnu.org) - * - * (C) 2000 Ximian, 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, GTK_MESSAGE_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; -} |