aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui/component/addressbook.c
diff options
context:
space:
mode:
authorChris Toshok <toshok@ximian.com>2002-11-13 10:14:32 +0800
committerChris Toshok <toshok@src.gnome.org>2002-11-13 10:14:32 +0800
commit7d53a155c8dcf9e232edcb3c70df6584713e1076 (patch)
treec185bab119a6ffeffebbbd70db483a3e71d1a5db /addressbook/gui/component/addressbook.c
parentbecc84e5c51f8150b8db1fb28337fa55f7c14caf (diff)
downloadgsoc2013-evolution-7d53a155c8dcf9e232edcb3c70df6584713e1076.tar
gsoc2013-evolution-7d53a155c8dcf9e232edcb3c70df6584713e1076.tar.gz
gsoc2013-evolution-7d53a155c8dcf9e232edcb3c70df6584713e1076.tar.bz2
gsoc2013-evolution-7d53a155c8dcf9e232edcb3c70df6584713e1076.tar.lz
gsoc2013-evolution-7d53a155c8dcf9e232edcb3c70df6584713e1076.tar.xz
gsoc2013-evolution-7d53a155c8dcf9e232edcb3c70df6584713e1076.tar.zst
gsoc2013-evolution-7d53a155c8dcf9e232edcb3c70df6584713e1076.zip
push_in = FALSE, no clue why... :) (_arrow_pressed): call
2002-11-12 Chris Toshok <toshok@ximian.com> * gui/contact-editor/e-contact-editor.c (_popup_position): push_in = FALSE, no clue why... :) (_arrow_pressed): call g_signal_stop_emission here, seems to fix things. * gui/component/select-names/e-select-names.c (e_select_names_init): fix warnings. * gui/component/select-names/e-select-names-manager.c (e_select_names_manager_activate_dialog): fix warning. * gui/component/addressbook.c (forget_passwords_cb): remove the PENDING_PORT ifdef. (load_uri_auth_cb): same. (addressbook_authenticate): same. * gui/component/addressbook-factory.c (main): same. * gui/component/addressbook-storage.c (load_source_data): be silent about text nodes if they contain nothing but whitespace. svn path=/trunk/; revision=18728
Diffstat (limited to 'addressbook/gui/component/addressbook.c')
-rw-r--r--addressbook/gui/component/addressbook.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/addressbook/gui/component/addressbook.c b/addressbook/gui/component/addressbook.c
index e97c79d091..19c7b9c91a 100644
--- a/addressbook/gui/component/addressbook.c
+++ b/addressbook/gui/component/addressbook.c
@@ -208,9 +208,7 @@ move_contact_to_cb (BonoboUIComponent *uih, void *user_data, const char *path)
static void
forget_passwords_cb (BonoboUIComponent *uih, void *user_data, const char *path)
{
-#ifdef PENDING_PORT_WORK
e_passwords_forget_passwords();
-#endif
}
static void
@@ -593,9 +591,7 @@ load_uri_auth_cb (EBook *book, EBookStatus status, gpointer closure)
return;
}
else {
-#ifdef PENDING_PORT_WORK
e_passwords_forget_password (data->clean_uri);
-#endif
addressbook_authenticate (book, TRUE, data->source, load_uri_auth_cb, closure);
return;
}
@@ -623,9 +619,7 @@ addressbook_authenticate (EBook *book, gboolean previous_failure, AddressbookSou
if (semicolon)
*semicolon = '\0';
-#ifdef PENDING_PORT_WORK
password = e_passwords_get_password (load_uri_data->clean_uri);
-#endif
if (!password) {
char *prompt;
@@ -647,11 +641,9 @@ addressbook_authenticate (EBook *book, gboolean previous_failure, AddressbookSou
prompt = g_strdup_printf (_("%sEnter password for %s (user %s)"),
failed_auth, source->name, source->email_addr);
remember = source->remember_passwd;
-#ifdef PENDING_PORT_WORK
pass_dup = e_passwords_ask_password (prompt, load_uri_data->clean_uri, prompt, TRUE,
E_PASSWORDS_REMEMBER_FOREVER, &remember,
NULL);
-#endif
if (remember != source->remember_passwd) {
source->remember_passwd = remember;
addressbook_storage_write_sources ();