aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-03-22 16:38:50 -0500
committerTed Gould <ted@gould.cx>2011-03-22 16:38:50 -0500
commitff7b647f722a837545c605c196eb3c26e42fd405 (patch)
tree96c1e0a855b12f6e43eed5ae57976b704fabd445
parentea287c1955268f063d7ec700e13d52c16fcff4cb (diff)
parentf46b11e29842f87f5cc3bef8c6dfb8abe090e99f (diff)
downloadayatana-indicator-datetime-ff7b647f722a837545c605c196eb3c26e42fd405.tar.gz
ayatana-indicator-datetime-ff7b647f722a837545c605c196eb3c26e42fd405.tar.bz2
ayatana-indicator-datetime-ff7b647f722a837545c605c196eb3c26e42fd405.zip
Removing the password dialog
-rw-r--r--src/datetime-service.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/datetime-service.c b/src/datetime-service.c
index 8b5e5b6..eacce36 100644
--- a/src/datetime-service.c
+++ b/src/datetime-service.c
@@ -469,7 +469,6 @@ auth_func (ECal *ecal,
const gchar *key,
gpointer user_data)
{
- gboolean remember; // TODO: Is this useful? Should we be storing it somewhere?
ESource *source = e_cal_get_source (ecal);
gchar *auth_domain = e_source_get_duped_property (source, "auth-domain");
@@ -479,16 +478,6 @@ auth_func (ECal *ecal,
gchar *password = e_passwords_get_password (component_name, key);
- if (password == NULL) {
- password = e_passwords_ask_password (
- _("Enter password"),
- component_name, key, prompt,
- E_PASSWORDS_REMEMBER_FOREVER |
- E_PASSWORDS_SECRET |
- E_PASSWORDS_ONLINE,
- &remember, NULL);
- }
-
g_free (auth_domain);
return password;