diff options
author | Radek Doulik <rodo@ximian.com> | 2005-01-24 22:46:24 +0800 |
---|---|---|
committer | Radek Doulik <rodo@src.gnome.org> | 2005-01-24 22:46:24 +0800 |
commit | 3d223d457e70f4b4cb1b75a520c7957a6c9b6e1d (patch) | |
tree | eff2cf7fa7d03f69bfba801c53b4be387be27c9a /mail/em-popup.h | |
parent | 601b97decb3c0f34a38eee8d59b5378f4c19de40 (diff) | |
download | gsoc2013-evolution-3d223d457e70f4b4cb1b75a520c7957a6c9b6e1d.tar.gz gsoc2013-evolution-3d223d457e70f4b4cb1b75a520c7957a6c9b6e1d.tar.zst gsoc2013-evolution-3d223d457e70f4b4cb1b75a520c7957a6c9b6e1d.zip |
removed EM_POPUP_SELECT_MARK_[NO]JUNK masks
2005-01-24 Radek Doulik <rodo@ximian.com>
* em-popup.[ch]: removed EM_POPUP_SELECT_MARK_[NO]JUNK masks
2005-01-20 Radek Doulik <rodo@ximian.com>
* em-folder-view.c: patch from Chris Lahey, makes Mark as Junk/not
Junk items active on all messages, removes calls to
message_list_get_selected where not needed
svn path=/trunk/; revision=28527
Diffstat (limited to 'mail/em-popup.h')
-rw-r--r-- | mail/em-popup.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/mail/em-popup.h b/mail/em-popup.h index d35f171629..dc032f6783 100644 --- a/mail/em-popup.h +++ b/mail/em-popup.h @@ -82,8 +82,6 @@ enum _em_popup_target_t { * @EM_POPUP_SELECT_ADD_SENDER: The message contains sender addresses * which might be added to the addressbook. i.e. it isn't a message in * the Sent or Drafts folders. - * @EM_POPUP_SELECT_MARK_JUNK: Message(s) are not marked as junk. - * @EM_POPUP_SELECT_MARK_NOJUNK: Message(s) are marked as junk. * @EM_POPUP_SELECT_FOLDER: A folder is set on the selection. * @EM_POPUP_SELECT_LAST: The last bit used, can be used to add * additional types from derived application code. @@ -104,10 +102,8 @@ enum _em_popup_target_select_t { EM_POPUP_SELECT_FLAG_COMPLETED = 1<<12, EM_POPUP_SELECT_FLAG_CLEAR = 1<<13, 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 */ + EM_POPUP_SELECT_FOLDER = 1<<15, /* do we have any folder at all? */ + EM_POPUP_SELECT_LAST = 1<<17, /* reserve 2 slots */ }; /** |