@@ -60,7 +60,7 @@ int MCA_folder(MCStringRef p_title, MCStringRef p_prompt, MCStringRef p_initial,
6060 MCPlatformWindowRef t_owner;
6161 t_owner = compute_sheet_owner (p_options);
6262
63- MCPlatformBeginFolderOrFileDialog (kMCPlatformFileDialogKindFolder , t_owner, p_title, p_prompt, nil, 1 , p_initial, false );
63+ MCPlatformBeginFolderOrFileDialog (kMCPlatformFileDialogKindFolder , t_owner, p_title, p_prompt, nil, 1 , p_initial);
6464
6565 MCPlatformDialogResult t_result;
6666 MCAutoStringRef t_folder;
@@ -158,7 +158,7 @@ int MCA_file(MCStringRef p_title, MCStringRef p_prompt, MCStringRef p_filter, MC
158158 else
159159 t_kind = kMCPlatformFileDialogKindOpen ;
160160
161- MCPlatformBeginFolderOrFileDialog (t_kind, t_owner, p_title, p_prompt, *t_types, t_types . Count (), p_initial, true );
161+ MCPlatformBeginFolderOrFileDialog (t_kind, t_owner, p_title, p_prompt, *t_types, t_types . Count (), p_initial);
162162
163163 MCPlatformDialogResult t_result;
164164 MCAutoStringRef t_file, t_type;
@@ -191,7 +191,7 @@ int MCA_file_with_types(MCStringRef p_title, MCStringRef p_prompt, MCStringRef *
191191 else
192192 t_kind = kMCPlatformFileDialogKindOpen ;
193193
194- MCPlatformBeginFolderOrFileDialog (t_kind, t_owner, p_title, p_prompt, p_types, p_type_count, p_initial, true );
194+ MCPlatformBeginFolderOrFileDialog (t_kind, t_owner, p_title, p_prompt, p_types, p_type_count, p_initial);
195195
196196 MCPlatformDialogResult t_result;
197197 MCAutoStringRef t_file, t_type;
@@ -227,7 +227,7 @@ int MCA_ask_file(MCStringRef p_title, MCStringRef p_prompt, MCStringRef p_filter
227227 MCPlatformWindowRef t_owner;
228228 t_owner = compute_sheet_owner (p_options);
229229
230- MCPlatformBeginFolderOrFileDialog (kMCPlatformFileDialogKindSave , t_owner, p_title, p_prompt, *t_types, t_types . Count (), p_initial, true );
230+ MCPlatformBeginFolderOrFileDialog (kMCPlatformFileDialogKindSave , t_owner, p_title, p_prompt, *t_types, t_types . Count (), p_initial);
231231
232232 MCPlatformDialogResult t_result;
233233 MCAutoStringRef t_file, t_type;
@@ -254,7 +254,7 @@ int MCA_ask_file_with_types(MCStringRef p_title, MCStringRef p_prompt, MCStringR
254254 MCPlatformWindowRef t_owner;
255255 t_owner = compute_sheet_owner (p_options);
256256
257- MCPlatformBeginFolderOrFileDialog (kMCPlatformFileDialogKindSave , t_owner, p_title, p_prompt, p_types, p_type_count, p_initial, true );
257+ MCPlatformBeginFolderOrFileDialog (kMCPlatformFileDialogKindSave , t_owner, p_title, p_prompt, p_types, p_type_count, p_initial);
258258
259259 MCPlatformDialogResult t_result;
260260 MCAutoStringRef t_file, t_type;
0 commit comments