diff options
author | George Hazan <george.hazan@gmail.com> | 2016-04-28 18:00:05 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2016-04-28 18:00:05 +0000 |
commit | 2a18cb546bac91077a193691368162d8f07992a1 (patch) | |
tree | 8fb89716131d9586fe7489fe3bb90faaf3b03fee /plugins/Clist_modern/src/modern_clui.cpp | |
parent | 9fa8edc73b6687bbc0f43743b872af83d4d06759 (diff) |
we don't need that FindItem's implementation in nicer+ anymore, it's already in the core
git-svn-id: http://svn.miranda-ng.org/main/trunk@16791 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Clist_modern/src/modern_clui.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_clui.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Clist_modern/src/modern_clui.cpp b/plugins/Clist_modern/src/modern_clui.cpp index 74ff3c3c80..ab054410b0 100644 --- a/plugins/Clist_modern/src/modern_clui.cpp +++ b/plugins/Clist_modern/src/modern_clui.cpp @@ -174,7 +174,7 @@ int CLUI::OnEvent_FontReload(WPARAM wParam, LPARAM lParam) g_CluiData.dwKeyColor = db_get_dw(NULL, "ModernSettings", "KeyColor", (DWORD)SETTING_KEYCOLOR_DEFAULT);
- CLUI__cliInvalidateRect(pcli->hwndContactList, 0, 0);
+ cliInvalidateRect(pcli->hwndContactList, 0, 0);
return 0;
}
@@ -1486,7 +1486,7 @@ int CLUI_SmoothAlphaTransition(HWND hwnd, BYTE GoalAlpha, BOOL wParam) return 0;
}
-BOOL CLUI__cliInvalidateRect(HWND hWnd, CONST RECT* lpRect, BOOL bErase)
+BOOL cliInvalidateRect(HWND hWnd, CONST RECT* lpRect, BOOL bErase)
{
if (CLUI_IsInMainWindow(hWnd) && g_CluiData.fLayered) {
if (IsWindowVisible(hWnd))
|