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

Commit 1b606bd

Browse files
committed
upper case function name
1 parent 1519063 commit 1b606bd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

shell/platform/darwin/ios/framework/Source/FlutterEngine.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1008,7 +1008,7 @@ - (void)flutterTextInputViewDidResignFirstResponder:(FlutterTextInputView*)textI
10081008
// Have to check in the next run loop, because iOS requests the previous first responder to
10091009
// resign before requesting the next view to become first responder.
10101010
dispatch_async(dispatch_get_main_queue(), ^(void) {
1011-
long platform_view_id = self.platformViewsController->findFirstResponderPlatformViewId();
1011+
long platform_view_id = self.platformViewsController->FindFirstResponderPlatformViewId();
10121012
if (platform_view_id == -1) {
10131013
return;
10141014
}

shell/platform/darwin/ios/framework/Source/FlutterPlatformViews.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ - (BOOL)hasFirstResponderInViewHierarchySubtree {
342342
return [touch_interceptors_[view_id].get() embeddedView];
343343
}
344344

345-
long FlutterPlatformViewsController::findFirstResponderPlatformViewId() {
345+
long FlutterPlatformViewsController::FindFirstResponderPlatformViewId() {
346346
for (auto const& [id, root_view] : root_views_) {
347347
if ([(UIView*)root_view.get() hasFirstResponderInViewHierarchySubtree]) {
348348
return id;

shell/platform/darwin/ios/framework/Source/FlutterPlatformViews_Internal.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ class FlutterPlatformViewsController {
179179

180180
// Returns the platform view id if the platform view (or any of its descendant view) is the first
181181
// responder. Returns -1 if no such platform view is found.
182-
long findFirstResponderPlatformViewId();
182+
long FindFirstResponderPlatformViewId();
183183

184184
private:
185185
static const size_t kMaxLayerAllocations = 2;

0 commit comments

Comments
 (0)