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

Commit 4d2caac

Browse files
authored
Fix UWP build for UpdateCursorRect rename (#24697)
1 parent bf97442 commit 4d2caac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

shell/platform/windows/flutter_window_winuwp.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ void FlutterWindowWinUWP::UpdateFlutterCursor(const std::string& cursor_name) {
6868
// https://github.com/flutter/flutter/issues/70199
6969
}
7070

71-
void FlutterWindowWinUWP::UpdateCursorRect(const Rect& rect) {
71+
void FlutterWindowWinUWP::OnCursorRectUpdated(const Rect& rect) {
7272
// TODO(cbracken): Implement IMM candidate window positioning.
7373
}
7474

shell/platform/windows/flutter_window_winuwp.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ class FlutterWindowWinUWP : public WindowBindingHandler {
5050
void UpdateFlutterCursor(const std::string& cursor_name) override;
5151

5252
// |WindowBindingHandler|
53-
void UpdateCursorRect(const Rect& rect) override;
53+
void OnCursorRectUpdated(const Rect& rect) override;
5454

5555
// |WindowBindingHandler|
5656
void OnWindowResized() override;

0 commit comments

Comments
 (0)