Skip to content

Commit 83b48be

Browse files
committed
fix windows build
1 parent a8fbe48 commit 83b48be

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/win32/window_manager.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ std::string getWindowTitle(const WindowHandle windowHandle) {
5252
return "";
5353
}
5454

55-
std::bool focusWindow(const WindowHandle windowHandle) {
55+
bool focusWindow(const WindowHandle windowHandle) {
5656
HWND hWnd = reinterpret_cast<HWND>(windowHandle);
5757
if (IsWindow(hWnd)) {
5858
// Restore the window if it's minimized
@@ -66,7 +66,7 @@ std::bool focusWindow(const WindowHandle windowHandle) {
6666
return false;
6767
}
6868

69-
std::bool resizeWindow(const WindowHandle windowHandle, const MMRect& rect) {
69+
bool resizeWindow(const WindowHandle windowHandle, const MMRect rect) {
7070
HWND hWnd = reinterpret_cast<HWND>(windowHandle);
7171
if (IsWindow(hWnd)) {
7272
//size

0 commit comments

Comments
 (0)