diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2004-01-16 00:15:10 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2004-01-16 00:15:10 +0800 |
commit | 057394f02e7ca7dc511d16492651c7430ee86567 (patch) | |
tree | 78fcf3598d0b58e66d8af5167668a55bd8307bdd | |
parent | 12491a3a9146af98be6fa88344a9edbf97774fa2 (diff) | |
download | gsoc2013-evolution-057394f02e7ca7dc511d16492651c7430ee86567.tar.gz gsoc2013-evolution-057394f02e7ca7dc511d16492651c7430ee86567.tar.zst gsoc2013-evolution-057394f02e7ca7dc511d16492651c7430ee86567.zip |
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
-rw-r--r-- | shell/ChangeLog | 7 | ||||
-rw-r--r-- | shell/e-shell-view-menu.c | 10 | ||||
-rw-r--r-- | shell/e-shell-window-commands.c | 9 |
3 files changed, 26 insertions, 0 deletions
diff --git a/shell/ChangeLog b/shell/ChangeLog index a4aa7b2c3d..2941106992 100644 --- a/shell/ChangeLog +++ b/shell/ChangeLog @@ -1,3 +1,10 @@ +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. + 2004-01-15 JP Rosevear <jpr@ximian.com> * main.c (kill_dataserver): kill the correct binary, tidy includes 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 }; 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 }; |