aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/publish-calendar/publish-location.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2012-12-17 05:53:41 +0800
committerMatthew Barnes <mbarnes@redhat.com>2012-12-17 06:03:54 +0800
commit6faf671382518db3a81af23bd67a5f5b41ab3b2e (patch)
treef05f4eb81bf648e9f8ee7ce2fffc0c91b2e2c999 /plugins/publish-calendar/publish-location.c
parentf1ca58d40a5a005aa5fa751959edbe4ec5f2d22f (diff)
downloadgsoc2013-evolution-6faf671382518db3a81af23bd67a5f5b41ab3b2e.tar
gsoc2013-evolution-6faf671382518db3a81af23bd67a5f5b41ab3b2e.tar.gz
gsoc2013-evolution-6faf671382518db3a81af23bd67a5f5b41ab3b2e.tar.bz2
gsoc2013-evolution-6faf671382518db3a81af23bd67a5f5b41ab3b2e.tar.lz
gsoc2013-evolution-6faf671382518db3a81af23bd67a5f5b41ab3b2e.tar.xz
gsoc2013-evolution-6faf671382518db3a81af23bd67a5f5b41ab3b2e.tar.zst
gsoc2013-evolution-6faf671382518db3a81af23bd67a5f5b41ab3b2e.zip
e-passwords: Remove unused function parameters.
Diffstat (limited to 'plugins/publish-calendar/publish-location.c')
-rw-r--r--plugins/publish-calendar/publish-location.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/publish-calendar/publish-location.c b/plugins/publish-calendar/publish-location.c
index f84d589287..79eddfc4f7 100644
--- a/plugins/publish-calendar/publish-location.c
+++ b/plugins/publish-calendar/publish-location.c
@@ -77,11 +77,11 @@ migrateURI (const gchar *xml,
uri->publish_frequency = atoi ((gchar *) frequency);
uri->publish_format = URI_PUBLISH_AS_FB;
- password = e_passwords_get_password (NULL, (gchar *) location);
+ password = e_passwords_get_password ((gchar *) location);
if (password) {
- e_passwords_forget_password (NULL, (gchar *) location);
+ e_passwords_forget_password ((gchar *) location);
e_passwords_add_password (uri->location, password);
- e_passwords_remember_password (NULL, uri->location);
+ e_passwords_remember_password (uri->location);
}
for (p = root->children; p != NULL; p = p->next) {