diff options
author | George Hazan <george.hazan@gmail.com> | 2013-08-04 08:36:10 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2013-08-04 08:36:10 +0000 |
commit | fed1940981d82c32e339c391b542ec29b165895b (patch) | |
tree | cf0691bf06dbb184fa60a84ab58608a1318b54d0 /plugins/SeenPlugin/src/main.cpp | |
parent | fc3091cb598ad8401fb4af2a6e3931141c9895a1 (diff) |
unneeded type conversion removed
git-svn-id: http://svn.miranda-ng.org/main/trunk@5573 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/SeenPlugin/src/main.cpp')
-rw-r--r-- | plugins/SeenPlugin/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/SeenPlugin/src/main.cpp b/plugins/SeenPlugin/src/main.cpp index 824050a96e..4cd3e6b492 100644 --- a/plugins/SeenPlugin/src/main.cpp +++ b/plugins/SeenPlugin/src/main.cpp @@ -47,7 +47,7 @@ DBVTranslation idleTr[TRANSNUMBER]={ };
BOOL includeIdle;
-LIST<logthread_info> arContacts(16, LIST<logthread_info>::FTSortFunc(HandleKeySortT));
+LIST<logthread_info> arContacts(16, HandleKeySortT);
int MainInit(WPARAM,LPARAM)
{
|