We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8fbe48 commit 83b48beCopy full SHA for 83b48be
src/win32/window_manager.cc
@@ -52,7 +52,7 @@ std::string getWindowTitle(const WindowHandle windowHandle) {
52
return "";
53
}
54
55
-std::bool focusWindow(const WindowHandle windowHandle) {
+bool focusWindow(const WindowHandle windowHandle) {
56
HWND hWnd = reinterpret_cast<HWND>(windowHandle);
57
if (IsWindow(hWnd)) {
58
// Restore the window if it's minimized
@@ -66,7 +66,7 @@ std::bool focusWindow(const WindowHandle windowHandle) {
66
return false;
67
68
69
-std::bool resizeWindow(const WindowHandle windowHandle, const MMRect& rect) {
+bool resizeWindow(const WindowHandle windowHandle, const MMRect rect) {
70
71
72
//size
0 commit comments