diff options
author | Milan Crha <mcrha@redhat.com> | 2007-11-23 17:38:33 +0800 |
---|---|---|
committer | Milan Crha <mcrha@src.gnome.org> | 2007-11-23 17:38:33 +0800 |
commit | 614642401ca9368814f29978dbbbda988d6df18c (patch) | |
tree | 7cb6bbca2ec504c18a39a09d30572248fc2ef888 | |
parent | 4f786c1511d528853f8a9ce06821ca27e160b889 (diff) | |
download | gsoc2013-evolution-614642401ca9368814f29978dbbbda988d6df18c.tar.gz gsoc2013-evolution-614642401ca9368814f29978dbbbda988d6df18c.tar.zst gsoc2013-evolution-614642401ca9368814f29978dbbbda988d6df18c.zip |
** Fix for bug #479081
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.
svn path=/trunk/; revision=34572
-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; } |