diff options
author | Jason Leach <jleach@ximian.com> | 2001-08-05 02:33:50 +0800 |
---|---|---|
committer | Jacob Leach <jleach@src.gnome.org> | 2001-08-05 02:33:50 +0800 |
commit | ed0295fd125834f672109cf6f968b21b224069ad (patch) | |
tree | f6b97d01f34cfe0a83e4c5408f412f223fa30ee8 /mail/message-list.h | |
parent | e444178d117e6f6b9afc3ffb507acbf641edad1f (diff) | |
download | gsoc2013-evolution-ed0295fd125834f672109cf6f968b21b224069ad.tar.gz gsoc2013-evolution-ed0295fd125834f672109cf6f968b21b224069ad.tar.zst gsoc2013-evolution-ed0295fd125834f672109cf6f968b21b224069ad.zip |
Add a @wraparound argument, so the 'n' and 'p' keypresses (or anything
2001-08-04 Jason Leach <jleach@ximian.com>
* message-list.c (message_list_select): Add a @wraparound
argument, so the 'n' and 'p' keypresses (or anything else that
wants to) can wrap around to find the next unread.
* folder-browser.c (on_key_press): Tell it to wrap around here.
* mail-callbacks.c (delete_msg): Don't wrap around here (or the
other callbacks in this file).
svn path=/trunk/; revision=11651
Diffstat (limited to 'mail/message-list.h')
-rw-r--r-- | mail/message-list.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mail/message-list.h b/mail/message-list.h index 6482a09210..26a6512d0d 100644 --- a/mail/message-list.h +++ b/mail/message-list.h @@ -113,7 +113,9 @@ void message_list_foreach (MessageList *message_list, void message_list_select (MessageList *message_list, int base_row, MessageListSelectDirection direction, - guint32 flags, guint32 mask); + guint32 flags, + guint32 mask, + gboolean wraparound); void message_list_select_uid (MessageList *message_list, const char *uid); |