aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/calendar-commands.c
diff options
context:
space:
mode:
authorAshish Shrivastava <shashish@novell.com>2008-11-03 20:10:48 +0800
committerAkhil Laddha <lakhil@src.gnome.org>2008-11-03 20:10:48 +0800
commit26fe8fb76ea445c87fd72997f97e7c4950b53bd1 (patch)
tree76ff236dcf412c1e52da7607bbfa3b4d70afd561 /calendar/gui/calendar-commands.c
parentc495bcad905e857b01f5d61c160f9897942d3394 (diff)
downloadgsoc2013-evolution-26fe8fb76ea445c87fd72997f97e7c4950b53bd1.tar
gsoc2013-evolution-26fe8fb76ea445c87fd72997f97e7c4950b53bd1.tar.gz
gsoc2013-evolution-26fe8fb76ea445c87fd72997f97e7c4950b53bd1.tar.bz2
gsoc2013-evolution-26fe8fb76ea445c87fd72997f97e7c4950b53bd1.tar.lz
gsoc2013-evolution-26fe8fb76ea445c87fd72997f97e7c4950b53bd1.tar.xz
gsoc2013-evolution-26fe8fb76ea445c87fd72997f97e7c4950b53bd1.tar.zst
gsoc2013-evolution-26fe8fb76ea445c87fd72997f97e7c4950b53bd1.zip
** Fix for bug #559086
2008-11-03 Ashish Shrivastava <shashish@novell.com> ** Fix for bug #559086 * Most of the calendar errors are now non-intrusive * calendar.error.xml: Added a new error message for non-intrusive backend_died. * apps_evolution_calendar.schemas.in: * calendar-commands.c: Added new verb for help debug message (help_debug): * gnome-cal.c: Support for non-intrusive error. (client_cal_opened_cb), Define fash table and accessing errors: * e-calendar-view.c: (error_response): (e_calendar_utils_show_error_silent), (e_calendar_utils_show_info_silent): * e-calendar-view.h: * calendar-component.c: Added EActivityHandler and ELogger: (calendar_component_peek_activity_handler), (calendar_component_show_logger): * calendar-component.h: svn path=/trunk/; revision=36727
Diffstat (limited to 'calendar/gui/calendar-commands.c')
-rw-r--r--calendar/gui/calendar-commands.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/calendar/gui/calendar-commands.c b/calendar/gui/calendar-commands.c
index 5cc75275f2..1d55920779 100644
--- a/calendar/gui/calendar-commands.c
+++ b/calendar/gui/calendar-commands.c
@@ -554,6 +554,11 @@ gcal_taskpad_focus_change_cb (GnomeCalendar *gcal, gboolean in, gpointer data)
}
+static void
+help_debug (BonoboUIComponent *uid, void *data, const char *path)
+{
+ calendar_component_show_logger ((GtkWidget *) data);
+}
static BonoboUIVerb verbs [] = {
BONOBO_UI_VERB ("EventOpen", file_open_event_cb),
@@ -579,7 +584,7 @@ static BonoboUIVerb verbs [] = {
BONOBO_UI_VERB ("ShowListView", show_list_view_clicked),
BONOBO_UI_VERB ("CalendarPurge", purge_cmd),
-
+ BONOBO_UI_VERB ("HelpDebug", help_debug),
BONOBO_UI_VERB_END
};