aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/addressbook-config.c
diff options
context:
space:
mode:
authorLarry Ewing <lewing@ximian.com>2004-04-28 03:33:30 +0800
committerLarry Ewing <lewing@src.gnome.org>2004-04-28 03:33:30 +0800
commita91a0e92b5b14bbaaebe803747003d27e2a72bd2 (patch)
treee17bcce58ffe5023dd2fc9adeef8576ca6e70cab /addressbook/gui/component/addressbook-config.c
parente5315bc0c4faa64bf721d5b987e565e57733e5b7 (diff)
downloadgsoc2013-evolution-a91a0e92b5b14bbaaebe803747003d27e2a72bd2.tar
gsoc2013-evolution-a91a0e92b5b14bbaaebe803747003d27e2a72bd2.tar.gz
gsoc2013-evolution-a91a0e92b5b14bbaaebe803747003d27e2a72bd2.tar.bz2
gsoc2013-evolution-a91a0e92b5b14bbaaebe803747003d27e2a72bd2.tar.lz
gsoc2013-evolution-a91a0e92b5b14bbaaebe803747003d27e2a72bd2.tar.xz
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/component/addressbook-config.c')
-rw-r--r--addressbook/gui/component/addressbook-config.c11
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);