aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-08-14 04:10:28 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-08-14 04:10:28 +0800
commit818312e89242a30a8b85796f4c6355bff7177ca3 (patch)
tree0e0925a13787427c7685c296266fa6078843898f /mail
parenta3f9b35f4fc21de5b9574619d88763a0fbea821a (diff)
downloadgsoc2013-evolution-818312e89242a30a8b85796f4c6355bff7177ca3.tar
gsoc2013-evolution-818312e89242a30a8b85796f4c6355bff7177ca3.tar.gz
gsoc2013-evolution-818312e89242a30a8b85796f4c6355bff7177ca3.tar.bz2
gsoc2013-evolution-818312e89242a30a8b85796f4c6355bff7177ca3.tar.lz
gsoc2013-evolution-818312e89242a30a8b85796f4c6355bff7177ca3.tar.xz
gsoc2013-evolution-818312e89242a30a8b85796f4c6355bff7177ca3.tar.zst
gsoc2013-evolution-818312e89242a30a8b85796f4c6355bff7177ca3.zip
Removed an unused variable.
2002-08-13 Jeffrey Stedfast <fejj@ximian.com> * mail-callbacks.c (forward_message): Removed an unused variable. * mail-account-editor.c (construct): Set the focus on the Account Name entry widget. Fixes bug #10350. svn path=/trunk/; revision=17771
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog7
-rw-r--r--mail/mail-account-editor.c2
-rw-r--r--mail/mail-callbacks.c3
3 files changed, 10 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 23ccb91160..4dd02ce563 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,10 @@
+2002-08-13 Jeffrey Stedfast <fejj@ximian.com>
+
+ * mail-callbacks.c (forward_message): Removed an unused variable.
+
+ * mail-account-editor.c (construct): Set the focus on the Account
+ Name entry widget. Fixes bug #10350.
+
2002-08-12 Dan Winship <danw@ximian.com>
* mail-display.c (on_url_requested): Replace no-longer-existent
diff --git a/mail/mail-account-editor.c b/mail/mail-account-editor.c
index 25b6ce3d8b..01f4494f0e 100644
--- a/mail/mail-account-editor.c
+++ b/mail/mail-account-editor.c
@@ -178,6 +178,8 @@ construct (MailAccountEditor *editor, MailConfigAccount *account, MailAccountsTa
mail_account_gui_setup (editor->gui, GTK_WIDGET (editor));
mail_account_gui_build_extra_conf (editor->gui, source->url);
+
+ gtk_widget_grab_focus (GTK_WIDGET (editor->gui->account_name));
}
MailAccountEditor *
diff --git a/mail/mail-callbacks.c b/mail/mail-callbacks.c
index 0172c675d9..52c778739e 100644
--- a/mail/mail-callbacks.c
+++ b/mail/mail-callbacks.c
@@ -1289,7 +1289,7 @@ reply_to_sender (GtkWidget *widget, gpointer user_data)
if (FOLDER_BROWSER_IS_DESTROYED (fb) || !check_send_configuration (fb))
return;
- mail_reply(fb->folder, NULL, fb->message_list->cursor_uid, REPLY_SENDER);
+ mail_reply (fb->folder, NULL, fb->message_list->cursor_uid, REPLY_SENDER);
}
void
@@ -1418,7 +1418,6 @@ static void
forward_message (FolderBrowser *fb, MailConfigForwardStyle style)
{
GPtrArray *uids;
- int i;
if (FOLDER_BROWSER_IS_DESTROYED (fb))
return;