File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ FlutterDesktopEngineRef FlutterDesktopRunEngine(
40
40
window_properties.height , window_properties.transparent ,
41
41
window_properties.focusable );
42
42
}
43
- if (!engine->RunEngine (engine_properties.entry_point )) {
43
+ if (!engine->RunEngine (engine_properties.entrypoint )) {
44
44
FT_LOG (Error) << " Failed to start the Flutter engine." ;
45
45
return nullptr ;
46
46
}
Original file line number Diff line number Diff line change @@ -55,13 +55,13 @@ typedef struct {
55
55
const char * * switches ;
56
56
// The number of elements in |switches|.
57
57
size_t switches_count ;
58
- // The optional entry point in the Dart project, if the entry point is null,
58
+ // The optional entrypoint in the Dart project. If the entrypoint is null,
59
59
// defaults to main().
60
- const char * entry_point ;
60
+ const char * entrypoint ;
61
61
// Number of elements in the array passed in as dart_entrypoint_argv.
62
62
int dart_entrypoint_argc ;
63
63
// Array of Dart entrypoint arguments. This is deep copied during the call
64
- // to FlutterDesktopEngineCreate .
64
+ // to FlutterDesktopRunEngine .
65
65
const char * * dart_entrypoint_argv ;
66
66
} FlutterDesktopEngineProperties ;
67
67
You can’t perform that action at this time.
0 commit comments