diff options
author | George Hazan <george.hazan@gmail.com> | 2014-02-11 14:03:02 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2014-02-11 14:03:02 +0000 |
commit | ad74c506afcedba09a9fa7cef1f652599bfcf2a1 (patch) | |
tree | bd037b7194f3f63c2a4fc49c4af4f480f2da2ffb /src/modules/utils | |
parent | 438c2e29bcbb6b4324c31d11c51007639780263c (diff) |
fixes WindowList sorting
git-svn-id: http://svn.miranda-ng.org/main/trunk@8095 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'src/modules/utils')
-rw-r--r-- | src/modules/utils/windowlist.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/utils/windowlist.cpp b/src/modules/utils/windowlist.cpp index 80c84906f4..0b57c298e1 100644 --- a/src/modules/utils/windowlist.cpp +++ b/src/modules/utils/windowlist.cpp @@ -39,7 +39,7 @@ typedef OBJLIST<TWindowListItem> TWindowList; static INT_PTR AllocWindowList(WPARAM, LPARAM)
{
- return (INT_PTR)new TWindowList(10, HandleKeySortT);
+ return (INT_PTR)new TWindowList(10, NumericKeySortT);
}
static INT_PTR DestroyWindowList(WPARAM wParam, LPARAM)
|