diff options
author | Not Zed <NotZed@Ximian.com> | 2004-02-17 13:06:10 +0800 |
---|---|---|
committer | Michael Zucci <zucchi@src.gnome.org> | 2004-02-17 13:06:10 +0800 |
commit | 2edcc77ca4cab6e255a7c1830ca56302e3c5e2e0 (patch) | |
tree | e194d5ce77207a656bf17bcfec4d3c7ff21f2c73 /mail/em-popup.h | |
parent | 0c5435836a8cc45ec3d35edd57bf9ed9b05e6248 (diff) | |
download | gsoc2013-evolution-2edcc77ca4cab6e255a7c1830ca56302e3c5e2e0.tar.gz gsoc2013-evolution-2edcc77ca4cab6e255a7c1830ca56302e3c5e2e0.tar.zst gsoc2013-evolution-2edcc77ca4cab6e255a7c1830ca56302e3c5e2e0.zip |
** See bug #54200.
2004-02-17 Not Zed <NotZed@Ximian.com>
** See bug #54200.
* em-popup.c (em_popup_target_new_select): add
EM_POPUP_SELECT_FOLDER - to find out if we have a folder at
all. Handle getting a NULL folder passed in.
* em-folder-view.c (em_folder_view_get_popup_target): Added
EM_FOLDER_VIEW_SELECT_FOLDER - to detect when we dont have a
folder set on the emfolderview.
* em-folder-browser.c (emfb_mark_all_read): if we don't have a
folder, dont try and run.
(emfb_enable_map[]): Disable a bunch of stuff we have no
folder set.
svn path=/trunk/; revision=24755
Diffstat (limited to 'mail/em-popup.h')
-rw-r--r-- | mail/em-popup.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mail/em-popup.h b/mail/em-popup.h index f71d312b90..88a4ff83ab 100644 --- a/mail/em-popup.h +++ b/mail/em-popup.h @@ -90,6 +90,7 @@ enum { EM_POPUP_SELECT_ADD_SENDER = 1<<14, EM_POPUP_SELECT_MARK_JUNK = 1<<15, EM_POPUP_SELECT_MARK_NOJUNK = 1<<16, + EM_POPUP_SELECT_FOLDER = 1<<17, /* do we have any folder at all? */ EM_POPUP_SELECT_LAST = 1<<18 /* reserve 2 slots */ }; |