when using search or filters, messages with priority of "none" should behave
like messages with priority of "normal".
r & sr=bienvenu
This commit is contained in:
sspitzer%netscape.com 2001-07-13 21:50:30 +00:00
Родитель 897cc62fcc
Коммит 1d72a3ca66
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -1130,7 +1130,7 @@ nsMsgSearchTerm::MatchPriority (nsMsgPriorityValue priorityToMatch,
// Use this ugly little hack to get around the fact that enums don't have
// integer compare operators
int p1 = (int) priorityToMatch;
int p1 = (priorityToMatch == nsMsgPriority::none) ? (int) nsMsgPriority::normal : (int) priorityToMatch;
int p2 = (int) m_value.u.priority;
switch (m_operator)