diff options
Diffstat (limited to 'shell/e-shell-view-menu.c')
-rw-r--r-- | shell/e-shell-view-menu.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/shell/e-shell-view-menu.c b/shell/e-shell-view-menu.c index 0b9bc8c071..5ea85b276e 100644 --- a/shell/e-shell-view-menu.c +++ b/shell/e-shell-view-menu.c @@ -44,6 +44,7 @@ #include "evolution-shell-component-utils.h" #include "e-util/e-dialog-utils.h" +#include "e-util/e-passwords.h" #include <glib.h> @@ -312,6 +313,14 @@ command_send_receive (BonoboUIComponent *ui_component, } static void +command_forget_passwords (BonoboUIComponent *ui_component, + void *data, + const char *path) +{ + e_passwords_forget_passwords(); +} + +static void command_new_folder (BonoboUIComponent *uih, void *data, const char *path) @@ -689,6 +698,7 @@ static BonoboUIVerb folder_verbs [] = { static BonoboUIVerb actions_verbs[] = { BONOBO_UI_VERB ("SendReceive", command_send_receive), + BONOBO_UI_VERB ("ForgetPasswords", command_forget_passwords), BONOBO_UI_VERB_END }; |