Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit 19ca3e6

Browse files
author
Chun-Heng Tai
committed
update
1 parent 3e70dac commit 19ca3e6

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

shell/platform/windows/client_wrapper/flutter_view_controller.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// found in the LICENSE file.
44

55
#include "include/flutter/flutter_view_controller.h"
6+
67
#include <algorithm>
78
#include <iostream>
89

shell/platform/windows/win32_window.cc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ void Win32Window::InitializeChild(const char* title,
2525
unsigned int height) {
2626
Destroy();
2727
std::wstring converted_title = NarrowToWide(title);
28+
2829
WNDCLASS window_class = ResgisterWindowClass(converted_title);
2930

3031
auto* result = CreateWindowEx(
@@ -129,7 +130,6 @@ Win32Window::MessageHandler(HWND hwnd,
129130
window->HandleResize(width, height);
130131
break;
131132
case WM_FONTCHANGE:
132-
std::cout << "font change message\n";
133133
window->OnFontChange();
134134
break;
135135
case WM_MOUSEMOVE:
@@ -142,7 +142,6 @@ Win32Window::MessageHandler(HWND hwnd,
142142
case WM_LBUTTONDOWN:
143143
xPos = GET_X_LPARAM(lparam);
144144
yPos = GET_Y_LPARAM(lparam);
145-
std::cout << "left pointer down \n";
146145
window->OnPointerDown(static_cast<double>(xPos),
147146
static_cast<double>(yPos));
148147
break;

shell/platform/windows/win32_window.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77

88
#include <Windows.h>
99
#include <Windowsx.h>
10-
#include <iostream>
1110
#include <memory>
1211
#include <string>
1312

0 commit comments

Comments
 (0)