summaryrefslogtreecommitdiffstats
path: root/tools/platform/windows/win-window.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/platform/windows/win-window.cpp')
-rw-r--r--tools/platform/windows/win-window.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/platform/windows/win-window.cpp b/tools/platform/windows/win-window.cpp
index d785b0fb7..896bbd2c6 100644
--- a/tools/platform/windows/win-window.cpp
+++ b/tools/platform/windows/win-window.cpp
@@ -71,7 +71,7 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
bool useDefProc = true;
Window* window = nullptr;
- Win32AppContext::windows.TryGetValue(hWnd, window);
+ Win32AppContext::windows.tryGetValue(hWnd, window);
switch (message)
{
case WM_LBUTTONUP:
@@ -400,7 +400,7 @@ public:
{
if (handle)
{
- Win32AppContext::windows.Remove(handle);
+ Win32AppContext::windows.remove(handle);
}
DestroyWindow(handle);
handle = NULL;