aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/publish-calendar/url-editor-dialog.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2011-07-04 21:55:30 +0800
committerMatthew Barnes <mbarnes@redhat.com>2011-07-04 22:20:54 +0800
commit99d492b8284fa467f2b8ad3e6b637e10258d1cc2 (patch)
treeeeabd62681bd3cbf0e903c509dbafeec75f804d1 /plugins/publish-calendar/url-editor-dialog.c
parent56e3e6818693118b1a33c682ff71ec7d561c46d1 (diff)
downloadgsoc2013-evolution-99d492b8284fa467f2b8ad3e6b637e10258d1cc2.tar
gsoc2013-evolution-99d492b8284fa467f2b8ad3e6b637e10258d1cc2.tar.gz
gsoc2013-evolution-99d492b8284fa467f2b8ad3e6b637e10258d1cc2.tar.bz2
gsoc2013-evolution-99d492b8284fa467f2b8ad3e6b637e10258d1cc2.tar.lz
gsoc2013-evolution-99d492b8284fa467f2b8ad3e6b637e10258d1cc2.tar.xz
gsoc2013-evolution-99d492b8284fa467f2b8ad3e6b637e10258d1cc2.tar.zst
gsoc2013-evolution-99d492b8284fa467f2b8ad3e6b637e10258d1cc2.zip
Adapt to CamelSession and e-passwords changes.
Diffstat (limited to 'plugins/publish-calendar/url-editor-dialog.c')
-rw-r--r--plugins/publish-calendar/url-editor-dialog.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/publish-calendar/url-editor-dialog.c b/plugins/publish-calendar/url-editor-dialog.c
index 26d0a981f9..c2e68b9069 100644
--- a/plugins/publish-calendar/url-editor-dialog.c
+++ b/plugins/publish-calendar/url-editor-dialog.c
@@ -437,7 +437,7 @@ url_editor_dialog_construct (UrlEditorDialog *dialog)
gtk_combo_box_set_active (GTK_COMBO_BOX (dialog->publish_frequency), uri->publish_frequency);
gtk_combo_box_set_active (GTK_COMBO_BOX (dialog->type_selector), uri->publish_format);
- uri->password = e_passwords_get_password ("Calendar", uri->location);
+ uri->password = e_passwords_get_password (NULL, uri->location);
if (uri->password) {
if (strlen (uri->password) != 0) {
gtk_entry_set_text (GTK_ENTRY (dialog->password_entry), uri->password);
@@ -572,9 +572,9 @@ url_editor_dialog_run (UrlEditorDialog *dialog)
if (gtk_toggle_button_get_active (GTK_TOGGLE_BUTTON (dialog->remember_pw))) {
e_passwords_add_password (dialog->uri->location, dialog->uri->password);
- e_passwords_remember_password ("Calendar", dialog->uri->location);
+ e_passwords_remember_password (NULL, dialog->uri->location);
} else {
- e_passwords_forget_password ("Calendar", dialog->uri->location);
+ e_passwords_forget_password (NULL, dialog->uri->location);
}
l = e_source_selector_get_selection (E_SOURCE_SELECTOR (dialog->events_selector));