Reverse addons date sort order for the arrow

This commit is contained in:
Benau 2018-11-13 00:33:51 +08:00
parent 967c61a361
commit ac02df76aa

View File

@ -291,7 +291,7 @@ public:
return m_id < a.m_id;
break;
case SO_DATE:
return m_date > a.m_date;
return m_date < a.m_date;
break;
} // switch
// Fix compiler warning.