diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-23 21:41:00 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-23 21:41:00 +0000 |
commit | 90e67bb41be1d0dbe9e39463513974bcdfd6d2d4 (patch) | |
tree | 6ba1a1ad9cb9214d065afbaa2c492986e0e3d51b /plugins/SecureIM/src/crypt_lists.cpp | |
parent | f4d4fcdc5e32d3611afdfaf46e80b99d7fcf37ac (diff) |
some crazy list declarations fixed
git-svn-id: http://svn.miranda-ng.org/main/trunk@13804 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SecureIM/src/crypt_lists.cpp')
-rw-r--r-- | plugins/SecureIM/src/crypt_lists.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/SecureIM/src/crypt_lists.cpp b/plugins/SecureIM/src/crypt_lists.cpp index 28557fd1af..b0407c4a55 100644 --- a/plugins/SecureIM/src/crypt_lists.cpp +++ b/plugins/SecureIM/src/crypt_lists.cpp @@ -1,7 +1,7 @@ #include "commonheaders.h"
-LIST<SupPro> arProto(10, LIST<SupPro>::FTSortFunc(HandleKeySortT));
-LIST<UinKey> arClist(100, LIST<UinKey>::FTSortFunc(NumericKeySortT));
+LIST<SupPro> arProto(10, HandleKeySortT);
+LIST<UinKey> arClist(100, NumericKeySortT);
void loadSupportedProtocols()
{
|