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_clcutils.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_clcutils.cpp')
-rw-r--r-- | plugins/Clist_modern/src/modern_clcutils.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Clist_modern/src/modern_clcutils.cpp b/plugins/Clist_modern/src/modern_clcutils.cpp index c172e89ed1..2843dd748d 100644 --- a/plugins/Clist_modern/src/modern_clcutils.cpp +++ b/plugins/Clist_modern/src/modern_clcutils.cpp @@ -180,7 +180,7 @@ void cliScrollTo(HWND hwnd, ClcData *dat, int desty, int noSmooth) }
}
dat->yScroll = desty;
- CLUI__cliInvalidateRect(hwnd, NULL, FALSE);
+ cliInvalidateRect(hwnd, NULL, FALSE);
SetScrollPos(hwnd, SB_VERT, dat->yScroll, TRUE);
}
|