diff options
author | crupest <crupest@outlook.com> | 2018-11-19 17:27:39 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2018-11-19 17:27:39 +0800 |
commit | a8f9fac512cf3e4884cee3b7f655429ece89a025 (patch) | |
tree | 1fe286351460e13af044346fc444e2189d49a0f4 /src/ui/window.cpp | |
parent | f78359cc042f089b2f99b23dd3df7ae02ecdabec (diff) | |
download | cru-a8f9fac512cf3e4884cee3b7f655429ece89a025.tar.gz cru-a8f9fac512cf3e4884cee3b7f655429ece89a025.tar.bz2 cru-a8f9fac512cf3e4884cee3b7f655429ece89a025.zip |
Rename two methods in Control.
Diffstat (limited to 'src/ui/window.cpp')
-rw-r--r-- | src/ui/window.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/window.cpp b/src/ui/window.cpp index 39b574bd..87656cdc 100644 --- a/src/ui/window.cpp +++ b/src/ui/window.cpp @@ -206,7 +206,7 @@ namespace cru::ui DestroyWindow(hwnd_); } - void Window::Repaint() { + void Window::InvalidateDraw() { if (IsWindowValid()) { InvalidateRect(hwnd_, nullptr, false); } @@ -601,7 +601,7 @@ namespace cru::ui if (debug_layout_ != value) { debug_layout_ = value; - Repaint(); + InvalidateDraw(); } } #endif |