summaryrefslogtreecommitdiff
path: root/plugins/Clist_modern
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2016-04-28 10:25:53 +0000
committerGeorge Hazan <george.hazan@gmail.com>2016-04-28 10:25:53 +0000
commit01433b81e943d57b1ec2ebb5758bd2a85d836753 (patch)
treeb91d37e863c641413ae812280db6c0536c507fe1 /plugins/Clist_modern
parented66ac7da13f746d05ed832cf1d6d84cecb18b22 (diff)
we don't redraw invisible contacts
git-svn-id: http://svn.miranda-ng.org/main/trunk@16784 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern')
-rw-r--r--plugins/Clist_modern/src/modern_clcmsgs.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/plugins/Clist_modern/src/modern_clcmsgs.cpp b/plugins/Clist_modern/src/modern_clcmsgs.cpp
index 6748c9eaa4..8a654ba13f 100644
--- a/plugins/Clist_modern/src/modern_clcmsgs.cpp
+++ b/plugins/Clist_modern/src/modern_clcmsgs.cpp
@@ -209,17 +209,6 @@ LRESULT cli_ProcessExternalMessages(HWND hwnd, ClcData *dat, UINT msg, WPARAM wP
pcli->pfnEnsureVisible(hwnd, dat, dat->selection, 0);
}
return 0;
-
- case CLM_SETEXTRAIMAGE:
- if (LOWORD(lParam) >= dat->extraColumnsCount)
- return 0;
-
- if (!pcli->pfnFindItem(hwnd, dat, wParam, &contact, NULL, NULL))
- return 0;
-
- contact->iExtraImage[LOWORD(lParam)] = HIWORD(lParam);
- pcli->pfnInvalidateRect(hwnd, NULL, FALSE);
- return 0;
}
return corecli.pfnProcessExternalMessages(hwnd, dat, msg, wParam, lParam);
}