diff options
author | George Hazan <george.hazan@gmail.com> | 2013-04-10 09:10:30 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-04-10 09:10:30 +0000 |
commit | c891eab8a4f5c44e2d6c942635d1f0e53d48f9d4 (patch) | |
tree | 858d7eaf32d0cdc8ec4907dd33659f3605382b05 /plugins/XSoundNotify | |
parent | 0c8232561f94cbf801c8c5415841d05fac9402f7 (diff) |
fix for inaccurate lists' declarations
git-svn-id: http://svn.miranda-ng.org/main/trunk@4411 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/XSoundNotify')
-rw-r--r-- | plugins/XSoundNotify/src/xsn_main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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;
|