1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 20:23:13 +02:00

Made NumberList take an arg to determin if it should pass numbers in descending order, fixes listing specific ranges being returned in descending order

This commit is contained in:
Adam
2010-05-25 13:50:17 -05:00
committed by Adam
parent 4a2b9ebcf3
commit f0a44ba894
14 changed files with 49 additions and 35 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ class MemoListCallback : public NumberList
MemoInfo *mi;
bool SentHeader;
public:
MemoListCallback(User *_u, ChannelInfo *_ci, MemoInfo *_mi, const std::string &list) : NumberList(list), u(_u), ci(_ci), mi(_mi), SentHeader(false)
MemoListCallback(User *_u, ChannelInfo *_ci, MemoInfo *_mi, const std::string &list) : NumberList(list, false), u(_u), ci(_ci), mi(_mi), SentHeader(false)
{
}