diff options
author | Michael Meeks <michael@helixcode.com> | 2000-10-18 10:23:51 +0800 |
---|---|---|
committer | Michael Meeks <mmeeks@src.gnome.org> | 2000-10-18 10:23:51 +0800 |
commit | bcafa8027f5f7d7f9a513a1109c6ec81bee8f5df (patch) | |
tree | 59a583c73239110f663c4cbe463ce309d7cb7106 /calendar/gui/calendar-commands.c | |
parent | c0cc72015d1902bfdedb50ba3cbd23cf59afbc56 (diff) | |
download | gsoc2013-evolution-bcafa8027f5f7d7f9a513a1109c6ec81bee8f5df.tar gsoc2013-evolution-bcafa8027f5f7d7f9a513a1109c6ec81bee8f5df.tar.gz gsoc2013-evolution-bcafa8027f5f7d7f9a513a1109c6ec81bee8f5df.tar.bz2 gsoc2013-evolution-bcafa8027f5f7d7f9a513a1109c6ec81bee8f5df.tar.lz gsoc2013-evolution-bcafa8027f5f7d7f9a513a1109c6ec81bee8f5df.tar.xz gsoc2013-evolution-bcafa8027f5f7d7f9a513a1109c6ec81bee8f5df.tar.zst gsoc2013-evolution-bcafa8027f5f7d7f9a513a1109c6ec81bee8f5df.zip |
die. (debug_xml_cb): add debugging hook.
2000-10-18 Michael Meeks <michael@helixcode.com>
* gui/dialogs/task-editor.c (create_menu, create_toolbar): die.
(debug_xml_cb): add debugging hook.
* gui/dialogs/Makefile.am: add EVOLUTION_DATADIR
* gui/dialogs/task-editor.c (task_editor_construct): upd for new UI.
svn path=/trunk/; revision=5973
Diffstat (limited to 'calendar/gui/calendar-commands.c')
-rw-r--r-- | calendar/gui/calendar-commands.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/calendar/gui/calendar-commands.c b/calendar/gui/calendar-commands.c index 428aea937d..6ee9f34755 100644 --- a/calendar/gui/calendar-commands.c +++ b/calendar/gui/calendar-commands.c @@ -484,7 +484,7 @@ properties_cmd (BonoboUIHandler *uih, void *user_data, const char *path) } -BonoboUIVerb verbs [] = { +static BonoboUIVerb verbs [] = { BONOBO_UI_UNSAFE_VERB ("CalendarNew", new_calendar_cmd), BONOBO_UI_UNSAFE_VERB ("CalendarOpen", open_calendar_cmd), BONOBO_UI_UNSAFE_VERB ("CalendarSaveAs", save_as_calendar_cmd), @@ -515,8 +515,6 @@ calendar_control_activate (BonoboControl *control, uic = bonobo_control_get_ui_component (control); g_assert (uic != NULL); - g_print ("In calendar_control_activate\n"); - remote_uih = bonobo_control_get_remote_ui_container (control); bonobo_ui_component_set_container (uic, remote_uih); bonobo_object_release_unref (remote_uih, NULL); @@ -584,8 +582,6 @@ calendar_control_deactivate (BonoboControl *control) BonoboUIComponent *uic = bonobo_control_get_ui_component (control); g_assert (uic != NULL); - g_print ("In calendar_control_deactivate\n"); - bonobo_ui_component_rm (uic, "/", NULL); bonobo_ui_component_unset_container (uic); } |