aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorRodrigo Moya <rodrigo@ximian.com>2004-01-16 00:14:01 +0800
committerRodrigo Moya <rodrigo@src.gnome.org>2004-01-16 00:14:01 +0800
commit12491a3a9146af98be6fa88344a9edbf97774fa2 (patch)
tree4f2a7ac30a1bc4ccab8d4919d3f084eb218fa901 /mail
parentc8cc95d20cc90c2ab3c4118a859e2fc22950c72b (diff)
downloadgsoc2013-evolution-12491a3a9146af98be6fa88344a9edbf97774fa2.tar
gsoc2013-evolution-12491a3a9146af98be6fa88344a9edbf97774fa2.tar.gz
gsoc2013-evolution-12491a3a9146af98be6fa88344a9edbf97774fa2.tar.bz2
gsoc2013-evolution-12491a3a9146af98be6fa88344a9edbf97774fa2.tar.lz
gsoc2013-evolution-12491a3a9146af98be6fa88344a9edbf97774fa2.tar.xz
gsoc2013-evolution-12491a3a9146af98be6fa88344a9edbf97774fa2.tar.zst
gsoc2013-evolution-12491a3a9146af98be6fa88344a9edbf97774fa2.zip
removed ForgetPasswords verb. (emfb_forget_passwords): removed.
2004-01-15 Rodrigo Moya <rodrigo@ximian.com> * em-folder-browser.c: removed ForgetPasswords verb. (emfb_forget_passwords): removed. svn path=/trunk/; revision=24245
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/em-folder-browser.c8
2 files changed, 5 insertions, 8 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index de34ac9b31..201f5595ab 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2004-01-15 Rodrigo Moya <rodrigo@ximian.com>
+
+ * em-folder-browser.c: removed ForgetPasswords verb.
+ (emfb_forget_passwords): removed.
+
2004-01-15 Not Zed <NotZed@Ximian.com>
** See bug #52891.
diff --git a/mail/em-folder-browser.c b/mail/em-folder-browser.c
index eb31568114..b2049ff50a 100644
--- a/mail/em-folder-browser.c
+++ b/mail/em-folder-browser.c
@@ -42,7 +42,6 @@
#include "mail-tools.h"
#include "mail-config.h"
-#include <e-util/e-passwords.h>
#include <e-util/e-dialog-utils.h>
#include <camel/camel-mime-message.h>
@@ -594,12 +593,6 @@ emfb_empty_trash(BonoboUIComponent *uid, void *data, const char *path)
}
static void
-emfb_forget_passwords(BonoboUIComponent *uid, void *data, const char *path)
-{
- e_passwords_forget_passwords();
-}
-
-static void
emfb_mail_compose(BonoboUIComponent *uid, void *data, const char *path)
{
if (!em_utils_check_user_can_send_mail((GtkWidget *)data))
@@ -675,7 +668,6 @@ static BonoboUIVerb emfb_verbs[] = {
/* ViewThreaded is a toggle */
BONOBO_UI_UNSAFE_VERB ("EmptyTrash", emfb_empty_trash),
- BONOBO_UI_UNSAFE_VERB ("ForgetPasswords", emfb_forget_passwords),
BONOBO_UI_UNSAFE_VERB ("MailCompose", emfb_mail_compose),
BONOBO_UI_UNSAFE_VERB ("MailPost", emfb_mail_post),
BONOBO_UI_UNSAFE_VERB ("MailStop", emfb_mail_stop),