Skip to content

Commit ba92cb6

Browse files
committed
Fix format
Signed-off-by: Bari Rao <[email protected]>
1 parent 0fb0618 commit ba92cb6

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/flutter/shell/platform/linux_embedded/flutter_elinux_engine.cc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,8 @@ void FlutterELinuxEngine::HandlePlatformMessage(
371371

372372
auto message = ConvertToDesktopMessage(*engine_message);
373373

374-
message_dispatcher_->HandleMessage(message, [this] {}, [this] {});
374+
message_dispatcher_->HandleMessage(
375+
message, [this] {}, [this] {});
375376
}
376377

377378
void FlutterELinuxEngine::ReloadSystemFonts() {
@@ -397,9 +398,10 @@ void FlutterELinuxEngine::SendSystemLocales() {
397398
// Convert the locale list to the locale pointer list that must be provided.
398399
std::vector<const FlutterLocale*> flutter_locale_list;
399400
flutter_locale_list.reserve(flutter_locales.size());
400-
std::transform(flutter_locales.begin(), flutter_locales.end(),
401-
std::back_inserter(flutter_locale_list),
402-
[](const auto& arg) -> const auto* { return &arg; });
401+
std::transform(
402+
flutter_locales.begin(), flutter_locales.end(),
403+
std::back_inserter(flutter_locale_list),
404+
[](const auto& arg) -> const auto* { return &arg; });
403405
auto result = embedder_api_.UpdateLocales(engine_, flutter_locale_list.data(),
404406
flutter_locale_list.size());
405407
if (result != kSuccess) {

0 commit comments

Comments
 (0)