From 7b7c095b37e85ca3a8f55eff1c3d9643d467b8e0 Mon Sep 17 00:00:00 2001 From: jsmall-nvidia Date: Tue, 25 Apr 2023 10:43:29 -0400 Subject: Dictionary using lowerCamel (#2835) * #include an absolute path didn't work - because paths were taken to always be relative. * WIP lowerCamel Dictionary. * WIP more lowerCamel fixes for Dictionary. * Add/Remove/Clear * GetValue/Contains * Fix tabs in dictionary. Count -> getCount * Fix fields with caps. * Key -> key Value -> value Use m_ for members where appropriate. Use lowerCamel in linked list. * Some small fixes/improvements to Dictionary. * Kick CI. --- tools/platform/windows/win-window.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools/platform/windows/win-window.cpp') 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; -- cgit v1.2.3