diff options
Diffstat (limited to 'c/layout.h')
-rw-r--r-- | c/layout.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -61,7 +61,7 @@ inline bool Dragger::HandleDown() { extern HWND g_hWnd; POINT pt; - require(GetRelativeCursorPos(g_hWnd, &pt)); + Require(GetRelativeCursorPos(g_hWnd, &pt)); if (!InDragArea(pt.x, pt.y)) return false; if (IsDouble()) { @@ -77,7 +77,7 @@ inline bool Dragger::HandleMove() { extern HWND g_hWnd; POINT pt; - require(GetRelativeCursorPos(g_hWnd, &pt)); + Require(GetRelativeCursorPos(g_hWnd, &pt)); extern HCURSOR g_hcSizeNs; bool r = true; |