aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorHans Petter Jansson <hpj@ximian.com>2003-02-27 13:34:16 +0800
committerHans Petter <hansp@src.gnome.org>2003-02-27 13:34:16 +0800
commit6200259d432602aca43c2ad2fe651c857b6c3621 (patch)
treee1d120f3916b94827efe69b8387e1b73c4b235a1 /calendar
parent531d7a496f4d673a62615175b9332536e924502f (diff)
downloadgsoc2013-evolution-6200259d432602aca43c2ad2fe651c857b6c3621.tar
gsoc2013-evolution-6200259d432602aca43c2ad2fe651c857b6c3621.tar.gz
gsoc2013-evolution-6200259d432602aca43c2ad2fe651c857b6c3621.tar.bz2
gsoc2013-evolution-6200259d432602aca43c2ad2fe651c857b6c3621.tar.lz
gsoc2013-evolution-6200259d432602aca43c2ad2fe651c857b6c3621.tar.xz
gsoc2013-evolution-6200259d432602aca43c2ad2fe651c857b6c3621.tar.zst
gsoc2013-evolution-6200259d432602aca43c2ad2fe651c857b6c3621.zip
This makes alarm notification work.
2003-02-26 Hans Petter Jansson <hpj@ximian.com> This makes alarm notification work. * gui/alarm-notify/notify-main.c (main): Initialize GTK. Don't initialize bonobo activation - bonobo_init() does that for us. svn path=/trunk/; revision=20085
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog7
-rw-r--r--calendar/gui/alarm-notify/notify-main.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 85f3b7661e..92fb486a96 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,12 @@
2003-02-26 Hans Petter Jansson <hpj@ximian.com>
+ This makes alarm notification work.
+
+ * gui/alarm-notify/notify-main.c (main): Initialize GTK. Don't
+ initialize bonobo activation - bonobo_init() does that for us.
+
+2003-02-26 Hans Petter Jansson <hpj@ximian.com>
+
This makes creating appointments and tasks from the "New" button work.
* gui/main.c (comp_editor_factory_fn): Doesn't need to take any args.
diff --git a/calendar/gui/alarm-notify/notify-main.c b/calendar/gui/alarm-notify/notify-main.c
index 41a7b6e8f6..c8611af626 100644
--- a/calendar/gui/alarm-notify/notify-main.c
+++ b/calendar/gui/alarm-notify/notify-main.c
@@ -164,7 +164,7 @@ main (int argc, char **argv)
textdomain (GETTEXT_PACKAGE);
gnome_program_init ("evolution-alarm-notify", VERSION, LIBGNOME_MODULE, argc, argv, NULL);
- bonobo_activation_init (argc, argv);
+ gtk_init (&argc, &argv);
if (bonobo_init (&argc, argv) == FALSE)
g_error (_("Could not initialize Bonobo"));