diff options
-rw-r--r-- | plugins/exchange-operations/ChangeLog | 7 | ||||
-rw-r--r-- | plugins/exchange-operations/exchange-account-setup.c | 3 |
2 files changed, 10 insertions, 0 deletions
diff --git a/plugins/exchange-operations/ChangeLog b/plugins/exchange-operations/ChangeLog index e41100484f..e69873d123 100644 --- a/plugins/exchange-operations/ChangeLog +++ b/plugins/exchange-operations/ChangeLog @@ -1,3 +1,10 @@ +2007-11-23 Milan Crha <mcrha@redhat.com> + + ** Fix for bug #479081 + + * exchange-account-setup.c: (org_gnome_exchange_owa_url): + Check for input validity immediately after creating setup widgets. + 2007-11-14 Matthew Barnes <mbarnes@redhat.com> * exchange-folder.c (ex_create_folder_info): diff --git a/plugins/exchange-operations/exchange-account-setup.c b/plugins/exchange-operations/exchange-account-setup.c index 9707006f4b..0213247c5a 100644 --- a/plugins/exchange-operations/exchange-account-setup.c +++ b/plugins/exchange-operations/exchange-account-setup.c @@ -658,6 +658,9 @@ org_gnome_exchange_owa_url(EPlugin *epl, EConfigHookItemFactoryData *data) /* Track the authenticate label, so we can destroy it if e-config is to destroy the hbox */ g_object_set_data((GObject *)hbox, "authenticate-label", label); + /* check for correctness of the input in the owa_entry */ + owa_editor_entry_changed (owa_entry, data->config); + g_free (owa_url); return hbox; } |