aboutsummaryrefslogtreecommitdiff
path: root/c/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'c/main.cpp')
-rw-r--r--c/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/main.cpp b/c/main.cpp
index b8303b5..a672c51 100644
--- a/c/main.cpp
+++ b/c/main.cpp
@@ -355,10 +355,10 @@ LRESULT CALLBACK WndProc(const HWND hWnd, const UINT uMsg, const WPARAM wParam,
break;
}
case WM_LBUTTONDOWN:
- g_dragDlv.HandleDown();
+ g_dragDlv.HandleLButtonDown();
break;
case WM_SETCURSOR:
- if (!g_dragDlv.HandleMove()) {
+ if (!g_dragDlv.HandleSetCursor()) {
/* Use default cursor. */
if (reinterpret_cast<HWND>(wParam) == hWnd)
return DefWindowProc(hWnd, uMsg, wParam, lParam);