mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
fix some warnings in msvc build
svn path=/trunk/; revision=32304
This commit is contained in:
@@ -420,8 +420,8 @@ LRESULT NotifyArea::WndProc(UINT nmsg, WPARAM wparam, LPARAM lparam)
|
||||
case WM_CONTEXTMENU: {
|
||||
Point pt(lparam);
|
||||
POINTS p;
|
||||
p.x = pt.x;
|
||||
p.y = pt.y;
|
||||
p.x = (SHORT) pt.x;
|
||||
p.y = (SHORT) pt.y;
|
||||
ScreenToClient(_hwnd, &pt);
|
||||
|
||||
if (IconHitTest(pt) == _sorted_icons.end()) { // display menu only when no icon clicked
|
||||
|
||||
Reference in New Issue
Block a user