diff options
Diffstat (limited to 'calendar/gui/alarm-notify')
-rw-r--r-- | calendar/gui/alarm-notify/Makefile.am | 1 | ||||
-rw-r--r-- | calendar/gui/alarm-notify/alarm-queue.c | 5 |
2 files changed, 4 insertions, 2 deletions
diff --git a/calendar/gui/alarm-notify/Makefile.am b/calendar/gui/alarm-notify/Makefile.am index ffe95557ec..2040efcc94 100644 --- a/calendar/gui/alarm-notify/Makefile.am +++ b/calendar/gui/alarm-notify/Makefile.am @@ -49,6 +49,7 @@ evolution_alarm_notify_SOURCES = \ evolution_alarm_notify_LDADD = \ $(top_builddir)/e-util/libeutil.la \ + $(top_builddir)/widgets/misc/libemiscwidgets.la \ $(top_builddir)/calendar/common/libevolution-calendarprivate.la \ $(EVOLUTION_CALENDAR_LIBS) diff --git a/calendar/gui/alarm-notify/alarm-queue.c b/calendar/gui/alarm-notify/alarm-queue.c index e8797639a6..9fc55e5869 100644 --- a/calendar/gui/alarm-notify/alarm-queue.c +++ b/calendar/gui/alarm-notify/alarm-queue.c @@ -52,6 +52,7 @@ #include "config-data.h" #include "util.h" #include "e-util/e-popup.h" +#include "widgets/misc/e-error.h" @@ -683,7 +684,7 @@ edit_component (ECal *client, ECalComponent *comp) 0, NULL, &ev); if (BONOBO_EX (&ev)) { - g_message (G_STRLOC ": Could not activate the component editor factory"); + e_error_run (NULL, "editor-error", bonobo_exception_get_text (&ev)); CORBA_exception_free (&ev); return; } @@ -700,7 +701,7 @@ edit_component (ECal *client, ECalComponent *comp) GNOME_Evolution_Calendar_CompEditorFactory_editExisting (factory, uri, (char *) uid, corba_type, &ev); if (BONOBO_EX (&ev)) - g_message (G_STRLOC ": Exception while editing the component"); + e_error_run (NULL, "editor-error", bonobo_exception_get_text (&ev)); CORBA_exception_free (&ev); |