diff options
author | Larry Ewing <lewing@ximian.com> | 2004-04-28 03:33:30 +0800 |
---|---|---|
committer | Larry Ewing <lewing@src.gnome.org> | 2004-04-28 03:33:30 +0800 |
commit | a91a0e92b5b14bbaaebe803747003d27e2a72bd2 (patch) | |
tree | e17bcce58ffe5023dd2fc9adeef8576ca6e70cab /addressbook/gui | |
parent | e5315bc0c4faa64bf721d5b987e565e57733e5b7 (diff) | |
download | gsoc2013-evolution-a91a0e92b5b14bbaaebe803747003d27e2a72bd2.tar.gz gsoc2013-evolution-a91a0e92b5b14bbaaebe803747003d27e2a72bd2.tar.zst gsoc2013-evolution-a91a0e92b5b14bbaaebe803747003d27e2a72bd2.zip |
remove debug spew.
2004-04-27 Larry Ewing <lewing@ximian.com>
* gui/component/addressbook-config.c: remove debug spew.
svn path=/trunk/; revision=25640
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/component/addressbook-config.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/addressbook/gui/component/addressbook-config.c b/addressbook/gui/component/addressbook-config.c index baad07f731..ddd6fb21ef 100644 --- a/addressbook/gui/component/addressbook-config.c +++ b/addressbook/gui/component/addressbook-config.c @@ -642,10 +642,9 @@ general_tab_check (AddressbookSourceDialog *dialog) return TRUE; string = gtk_entry_get_text (GTK_ENTRY (dialog->host)); - if (!string || !string[0]) { + if (!string || !string[0]) valid = FALSE; - g_warning ("no host"); - } + if (valid) { if (dialog->auth != ADDRESSBOOK_LDAP_AUTH_NONE) { if (dialog->auth == ADDRESSBOOK_LDAP_AUTH_SIMPLE_BINDDN) @@ -653,10 +652,8 @@ general_tab_check (AddressbookSourceDialog *dialog) else string = gtk_entry_get_text (GTK_ENTRY (dialog->email)); - if (!string || !string[0]) { - g_warning ("no string"); + if (!string || !string[0]) valid = FALSE; - } } } @@ -1009,8 +1006,6 @@ add_folder_modify (GtkWidget *widget, AddressbookSourceDialog *sdialog) gboolean valid = TRUE; gboolean remote = FALSE; - g_warning ("Modify callback"); - valid = display_name_check (sdialog); remote = source_group_is_remote (sdialog->source_group); |