aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/contact-editor
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2013-09-30 21:52:45 +0800
committerMilan Crha <mcrha@redhat.com>2013-09-30 21:52:45 +0800
commit10032e2479eb6fc9f5684346364ec52c246a5969 (patch)
tree89dce2c39e699887edee6bc603b5e3fcbb5fa394 /addressbook/gui/contact-editor
parent6a65912679f4287dd7d45e11f5c5a7c893c43112 (diff)
downloadgsoc2013-evolution-10032e2479eb6fc9f5684346364ec52c246a5969.tar
gsoc2013-evolution-10032e2479eb6fc9f5684346364ec52c246a5969.tar.gz
gsoc2013-evolution-10032e2479eb6fc9f5684346364ec52c246a5969.tar.bz2
gsoc2013-evolution-10032e2479eb6fc9f5684346364ec52c246a5969.tar.lz
gsoc2013-evolution-10032e2479eb6fc9f5684346364ec52c246a5969.tar.xz
gsoc2013-evolution-10032e2479eb6fc9f5684346364ec52c246a5969.tar.zst
gsoc2013-evolution-10032e2479eb6fc9f5684346364ec52c246a5969.zip
Bug #705685 - Contact(-list)-editor - reject save when book is still opening
Diffstat (limited to 'addressbook/gui/contact-editor')
-rw-r--r--addressbook/gui/contact-editor/e-contact-editor.c21
1 files changed, 19 insertions, 2 deletions
diff --git a/addressbook/gui/contact-editor/e-contact-editor.c b/addressbook/gui/contact-editor/e-contact-editor.c
index bf6cf9e47a..1a771fe98b 100644
--- a/addressbook/gui/contact-editor/e-contact-editor.c
+++ b/addressbook/gui/contact-editor/e-contact-editor.c
@@ -3153,7 +3153,7 @@ contact_editor_get_client_cb (GObject *source_object,
e_source_combo_box_set_active (
E_SOURCE_COMBO_BOX (combo_box),
- closure->source);
+ e_client_get_source (E_CLIENT (closure->editor->target_client)));
g_error_free (error);
goto exit;
@@ -3711,11 +3711,28 @@ save_contact (EContactEditor *ce,
const gchar *name_entry_string;
const gchar *file_as_entry_string;
const gchar *company_name_string;
- GtkWidget *entry_fullname, *entry_file_as, *company_name;
+ GtkWidget *entry_fullname, *entry_file_as, *company_name, *client_combo_box;
+ ESource *active_source;
if (!ce->target_client)
return;
+ client_combo_box = e_builder_get_widget (ce->builder, "client-combo-box");
+ active_source = e_source_combo_box_ref_active (E_SOURCE_COMBO_BOX (client_combo_box));
+ g_return_if_fail (active_source != NULL);
+
+ if (!e_source_equal (e_client_get_source (E_CLIENT (ce->target_client)), active_source)) {
+ e_alert_run_dialog_for_args (
+ GTK_WINDOW (ce->app),
+ "addressbook:error-still-opening",
+ e_source_get_display_name (active_source),
+ NULL);
+ g_object_unref (active_source);
+ return;
+ }
+
+ g_object_unref (active_source);
+
if (ce->target_editable && e_client_is_readonly (E_CLIENT (ce->source_client))) {
if (e_alert_run_dialog_for_args (
GTK_WINDOW (ce->app),