diff options
author | George Hazan <george.hazan@gmail.com> | 2015-05-23 21:31:49 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-05-23 21:31:49 +0000 |
commit | f4d4fcdc5e32d3611afdfaf46e80b99d7fcf37ac (patch) | |
tree | 231bcb5be2f097379077f93295e7c853ec770a6e /plugins/UserInfoEx | |
parent | 82d94a48b423914833c26aa6f1949b9c706a440e (diff) |
fix for a crash in UserInfoEx
git-svn-id: http://svn.miranda-ng.org/main/trunk@13803 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/UserInfoEx')
-rw-r--r-- | plugins/UserInfoEx/src/dlg_propsheet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/UserInfoEx/src/dlg_propsheet.cpp b/plugins/UserInfoEx/src/dlg_propsheet.cpp index 64f35dcfe6..ba2f7fd602 100644 --- a/plugins/UserInfoEx/src/dlg_propsheet.cpp +++ b/plugins/UserInfoEx/src/dlg_propsheet.cpp @@ -64,8 +64,8 @@ static HANDLE ghDetailsInitEvent = NULL; static INT_PTR CALLBACK DlgProc(HWND hDlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
-CPsHdr::CPsHdr() :
-_ignore(10, (LIST<TCHAR>::FTSortFunc)mir_tstrcmp)
+CPsHdr::CPsHdr()
+ : _ignore(10, _tcscmp)
{
_dwSize = sizeof(*this);
_hContact = NULL;
|