From c891eab8a4f5c44e2d6c942635d1f0e53d48f9d4 Mon Sep 17 00:00:00 2001
From: George Hazan <george.hazan@gmail.com>
Date: Wed, 10 Apr 2013 09:10:30 +0000
Subject: fix for inaccurate lists' declarations

git-svn-id: http://svn.miranda-ng.org/main/trunk@4411 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
---
 plugins/CSList/src/cslist.cpp         | 2 +-
 plugins/Db3x/src/init.cpp             | 2 +-
 plugins/Db3x_mmap/src/init.cpp        | 2 +-
 plugins/Dbx_mmap_SA/src/init.cpp      | 2 +-
 plugins/XSoundNotify/src/xsn_main.cpp | 2 +-
 plugins/YARelay/src/main.cpp          | 2 +-
 src/modules/button/button.cpp         | 2 +-
 7 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/plugins/CSList/src/cslist.cpp b/plugins/CSList/src/cslist.cpp
index 54a30b6b82..34b32f470c 100644
--- a/plugins/CSList/src/cslist.cpp
+++ b/plugins/CSList/src/cslist.cpp
@@ -31,7 +31,7 @@ CLIST_INTERFACE *pcli;
 int hLangpack;
 HINSTANCE g_hInst;
 
-static LIST<CSWindow> arWindows(3, LIST<CSWindow>::FTSortFunc(HandleKeySort));
+static LIST<CSWindow> arWindows(3, HandleKeySortT);
 
 PLUGININFOEX pluginInfoEx =
 {
diff --git a/plugins/Db3x/src/init.cpp b/plugins/Db3x/src/init.cpp
index 96f3da5799..440cd9045b 100644
--- a/plugins/Db3x/src/init.cpp
+++ b/plugins/Db3x/src/init.cpp
@@ -42,7 +42,7 @@ static PLUGININFOEX pluginInfo =
 
 HINSTANCE g_hInst = NULL;
 
-LIST<CDb3x> g_Dbs(1, (LIST<CDb3x>::FTSortFunc)HandleKeySort);
+LIST<CDb3x> g_Dbs(1, HandleKeySortT);
 
 /////////////////////////////////////////////////////////////////////////////////////////
 
diff --git a/plugins/Db3x_mmap/src/init.cpp b/plugins/Db3x_mmap/src/init.cpp
index 30c0e9294f..092a04be03 100644
--- a/plugins/Db3x_mmap/src/init.cpp
+++ b/plugins/Db3x_mmap/src/init.cpp
@@ -42,7 +42,7 @@ static PLUGININFOEX pluginInfo =
 
 HINSTANCE g_hInst = NULL;
 
-LIST<CDb3Mmap> g_Dbs(1, (LIST<CDb3Mmap>::FTSortFunc)HandleKeySort);
+LIST<CDb3Mmap> g_Dbs(1, HandleKeySortT);
 
 /////////////////////////////////////////////////////////////////////////////////////////
 
diff --git a/plugins/Dbx_mmap_SA/src/init.cpp b/plugins/Dbx_mmap_SA/src/init.cpp
index 3b535e1ffe..81b20e3a7e 100644
--- a/plugins/Dbx_mmap_SA/src/init.cpp
+++ b/plugins/Dbx_mmap_SA/src/init.cpp
@@ -44,7 +44,7 @@ PLUGININFOEX pluginInfo = {
 	{0x28ff9b91, 0x3e4d, 0x4f1c, {0xb4, 0x7c, 0xc6, 0x41, 0xb0, 0x37, 0xff, 0x40}}
 };
 
-LIST<CDbxMmapSA> g_Dbs(1, (LIST<CDbxMmapSA>::FTSortFunc)HandleKeySort);
+LIST<CDbxMmapSA> g_Dbs(1, HandleKeySortT);
 
 /////////////////////////////////////////////////////////////////////////////////////////
 
diff --git a/plugins/XSoundNotify/src/xsn_main.cpp b/plugins/XSoundNotify/src/xsn_main.cpp
index ce1ace8ab9..6954e8b2ef 100644
--- a/plugins/XSoundNotify/src/xsn_main.cpp
+++ b/plugins/XSoundNotify/src/xsn_main.cpp
@@ -11,7 +11,7 @@ There is no warranty.
 
 HINSTANCE hInst;
 int hLangpack;
-LIST<XSN_Data> XSN_Users(10, LIST<XSN_Data>::FTSortFunc(HandleKeySort));
+LIST<XSN_Data> XSN_Users(10, HandleKeySortT);
 HGENMENU hChangeSound = NULL;
 HANDLE hChangeSoundDlgList = NULL;
 
diff --git a/plugins/YARelay/src/main.cpp b/plugins/YARelay/src/main.cpp
index 6453a68f62..8613d49304 100644
--- a/plugins/YARelay/src/main.cpp
+++ b/plugins/YARelay/src/main.cpp
@@ -29,7 +29,7 @@ HANDLE hForwardFrom, hForwardTo;
 TCHAR tszForwardTemplate[MAXTEMPLATESIZE]; 
 int iSplit, iSplitMaxSize, iSendParts, iMarkRead, iSendAndHistory, iForwardOnStatus;
 
-LIST<MESSAGE_PROC> arMessageProcs(10, LIST<MESSAGE_PROC>::FTSortFunc(HandleKeySort));
+LIST<MESSAGE_PROC> arMessageProcs(10, HandleKeySortT);
 
 PLUGININFOEX pluginInfoEx = {
 	sizeof(PLUGININFOEX),
diff --git a/src/modules/button/button.cpp b/src/modules/button/button.cpp
index 577f4c5e4f..b619eacceb 100644
--- a/src/modules/button/button.cpp
+++ b/src/modules/button/button.cpp
@@ -34,7 +34,7 @@ struct TTooltips
 	HWND  hwnd;
 };
 
-static LIST<TTooltips> lToolTips(1, (LIST<TTooltips>::FTSortFunc)NumericKeySort);
+static LIST<TTooltips> lToolTips(1, NumericKeySortT);
 static CRITICAL_SECTION csTips;
 static BOOL bModuleInitialized = FALSE;
 
-- 
cgit v1.2.3