diff options
author | George Hazan <george.hazan@gmail.com> | 2014-02-11 14:59:24 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-02-11 14:59:24 +0000 |
commit | 56ae169ecbc85ba64991edf1019bf15d1f963a11 (patch) | |
tree | 0e8e79135824b1fe786df49286885e7045c6c807 /plugins/TabSRMM | |
parent | 22ec745cade30ac40cb3ff41f8720826fafd784c (diff) |
more sorting issues
git-svn-id: http://svn.miranda-ng.org/main/trunk@8097 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/TabSRMM')
-rw-r--r-- | plugins/TabSRMM/src/contactcache.cpp | 2 | ||||
-rw-r--r-- | plugins/TabSRMM/src/eventpopups.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TabSRMM/src/contactcache.cpp b/plugins/TabSRMM/src/contactcache.cpp index 31f20b99a7..1b690f5aaf 100644 --- a/plugins/TabSRMM/src/contactcache.cpp +++ b/plugins/TabSRMM/src/contactcache.cpp @@ -35,7 +35,7 @@ #include "commonheaders.h"
-static OBJLIST<CContactCache> arContacts(50, HandleKeySortT);
+static OBJLIST<CContactCache> arContacts(50, NumericKeySortT);
CContactCache::CContactCache(const MCONTACT hContact)
{
diff --git a/plugins/TabSRMM/src/eventpopups.cpp b/plugins/TabSRMM/src/eventpopups.cpp index 43aa9d02d8..58acd08e64 100644 --- a/plugins/TabSRMM/src/eventpopups.cpp +++ b/plugins/TabSRMM/src/eventpopups.cpp @@ -40,7 +40,7 @@ #include "commonheaders.h"
-static LIST<PLUGIN_DATAT> arPopupList(10, HandleKeySortT);
+static LIST<PLUGIN_DATAT> arPopupList(10, NumericKeySortT);
BOOL bWmNotify = TRUE;
|