aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog5
-rw-r--r--mail/mail-ops.c2
-rw-r--r--mail/message-list.c2
3 files changed, 7 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 045e1c5873..d4df3feef1 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,3 +1,8 @@
+2000-06-29 Christopher James Lahey <clahey@helixcode.com>
+
+ * message-list.c, mail-ops.c: Changed the name of
+ e_table_select_row to e_table_set_cursor_row.
+
2000-06-29 Peter Williams <peterw@helixcode.com>
* message-list.c (message_list_init): Set the dnd_code of the
diff --git a/mail/mail-ops.c b/mail/mail-ops.c
index 7ba935be8a..7889f9acf8 100644
--- a/mail/mail-ops.c
+++ b/mail/mail-ops.c
@@ -642,7 +642,7 @@ delete_msg (GtkWidget *button, gpointer user_data)
/* Move the cursor down a row... FIXME: should skip other
* deleted messages.
*/
- e_table_select_row (E_TABLE (ml->etable), ml->selected_row + 1);
+ e_table_set_cursor_row (E_TABLE (ml->etable), ml->selected_row + 1);
}
static void real_expunge_folder( gpointer user_data )
diff --git a/mail/message-list.c b/mail/message-list.c
index 9a3eba31e6..8d08a91a4e 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -1061,7 +1061,7 @@ on_cursor_change_cmd (ETable *table,
static gint
idle_select_row (gpointer user_data)
{
- e_table_select_row (user_data, 0);
+ e_table_set_cursor_row (user_data, 0);
return FALSE;
}