From 6faf671382518db3a81af23bd67a5f5b41ab3b2e Mon Sep 17 00:00:00 2001 From: Matthew Barnes Date: Sun, 16 Dec 2012 16:53:41 -0500 Subject: e-passwords: Remove unused function parameters. --- e-util/e-passwords.c | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'e-util/e-passwords.c') diff --git a/e-util/e-passwords.c b/e-util/e-passwords.c index 1f2d3b2e89..89dc39ef5b 100644 --- a/e-util/e-passwords.c +++ b/e-util/e-passwords.c @@ -658,8 +658,7 @@ e_passwords_set_online (gint state) * Saves the password associated with @key to disk. **/ void -e_passwords_remember_password (const gchar *unused, - const gchar *key) +e_passwords_remember_password (const gchar *key) { EPassMsg *msg; @@ -679,8 +678,7 @@ e_passwords_remember_password (const gchar *unused, * Forgets the password associated with @key, in memory and on disk. **/ void -e_passwords_forget_password (const gchar *unused, - const gchar *key) +e_passwords_forget_password (const gchar *key) { EPassMsg *msg; @@ -701,8 +699,7 @@ e_passwords_forget_password (const gchar *unused, * must free the returned password. **/ gchar * -e_passwords_get_password (const gchar *unused, - const gchar *key) +e_passwords_get_password (const gchar *key) { EPassMsg *msg; gchar *passwd; @@ -749,7 +746,6 @@ e_passwords_add_password (const gchar *key, /** * e_passwords_ask_password: * @title: title for the password dialog - * @unused: this argument is no longer used * @key: key to store the password under * @prompt: prompt string * @remember_type: whether or not to offer to remember the password, @@ -767,7 +763,6 @@ e_passwords_add_password (const gchar *key, **/ gchar * e_passwords_ask_password (const gchar *title, - const gchar *unused, const gchar *key, const gchar *prompt, EPasswordsRememberType remember_type, -- cgit