From 08f9758626f41561d7420ece2e59489b24f29324 Mon Sep 17 00:00:00 2001 From: JP Rosevear Date: Sun, 26 May 2002 17:10:48 +0000 Subject: update proto 2002-05-26 JP Rosevear * gui/dialogs/comp-editor.h: update proto * gui/dialogs/comp-editor.c (comp_editor_get_comp): new function to get base comp * gui/e-comp-editor-registry.c (e_comp_editor_registry_add): get the base comp, not the current comp, don't unref it (foreach_close_cb): block the signal, unblock it if the editor could not be closed (e_comp_editor_registry_close_all): fix preconditions (editor_destroy_cb): get the base comp, not the current comp, don't unref it svn path=/trunk/; revision=17020 --- calendar/gui/dialogs/comp-editor.c | 13 +++++++++++++ calendar/gui/dialogs/comp-editor.h | 1 + 2 files changed, 14 insertions(+) (limited to 'calendar/gui/dialogs') diff --git a/calendar/gui/dialogs/comp-editor.c b/calendar/gui/dialogs/comp-editor.c index 18ca46af27..3e245a0c98 100644 --- a/calendar/gui/dialogs/comp-editor.c +++ b/calendar/gui/dialogs/comp-editor.c @@ -912,6 +912,19 @@ comp_editor_edit_comp (CompEditor *editor, CalComponent *comp) klass->edit_comp (editor, comp); } +CalComponent * +comp_editor_get_comp (CompEditor *editor) +{ + CompEditorPrivate *priv; + + g_return_val_if_fail (editor != NULL, NULL); + g_return_val_if_fail (IS_COMP_EDITOR (editor), NULL); + + priv = editor->priv; + + return priv->comp; +} + CalComponent * comp_editor_get_current_comp (CompEditor *editor) { diff --git a/calendar/gui/dialogs/comp-editor.h b/calendar/gui/dialogs/comp-editor.h index db4a407e25..6772f135e8 100644 --- a/calendar/gui/dialogs/comp-editor.h +++ b/calendar/gui/dialogs/comp-editor.h @@ -77,6 +77,7 @@ void comp_editor_set_cal_client (CompEditor *editor, CalClient *comp_editor_get_cal_client (CompEditor *editor); void comp_editor_edit_comp (CompEditor *ee, CalComponent *comp); +CalComponent *comp_editor_get_comp (CompEditor *editor); CalComponent *comp_editor_get_current_comp (CompEditor *editor); gboolean comp_editor_save_comp (CompEditor *editor, gboolean send); -- cgit