From 057394f02e7ca7dc511d16492651c7430ee86567 Mon Sep 17 00:00:00 2001
From: Rodrigo Moya <rodrigo@ximian.com>
Date: Thu, 15 Jan 2004 16:15:10 +0000
Subject: added ForgetPasswords menu item. (command_forget_passwords): callback
 for

2004-01-15  Rodrigo Moya <rodrigo@ximian.com>

	* e-shell-view-menu.c: added ForgetPasswords menu item.
	(command_forget_passwords): callback for the new menu item.

	* e-shell-window-commands.c: (command_forget_passwords): ditto.

svn path=/trunk/; revision=24246
---
 shell/e-shell-window-commands.c | 9 +++++++++
 1 file changed, 9 insertions(+)

(limited to 'shell/e-shell-window-commands.c')

diff --git a/shell/e-shell-window-commands.c b/shell/e-shell-window-commands.c
index f5d9bda47c..d9092c22a8 100644
--- a/shell/e-shell-window-commands.c
+++ b/shell/e-shell-window-commands.c
@@ -32,6 +32,7 @@
 #include "evolution-shell-component-utils.h"
 
 #include "e-util/e-dialog-utils.h"
+#include "e-util/e-passwords.h"
 
 #include <libgnome/gnome-exec.h>
 #include <libgnome/gnome-url.h>
@@ -218,6 +219,13 @@ command_send_receive (BonoboUIComponent *uih,
 	e_shell_send_receive (e_shell_window_peek_shell (window));
 }
 
+static void
+command_forget_passwords (BonoboUIComponent *ui_component,
+			  void *data,
+			  const char *path)
+{
+	e_passwords_forget_passwords();
+}
 
 /* Tools menu.  */
 
@@ -257,6 +265,7 @@ static BonoboUIVerb new_verbs [] = {
 
 static BonoboUIVerb actions_verbs[] = {
 	BONOBO_UI_VERB ("SendReceive", (BonoboUIVerbFn) command_send_receive),
+	BONOBO_UI_VERB ("ForgetPasswords", command_forget_passwords),
 
 	BONOBO_UI_VERB_END
 };
-- 
cgit