Skip to content

Commit 0f25d17

Browse files
author
César Cardoso
committed
Merge branch 'develop'
2 parents 9fbf927 + 390d697 commit 0f25d17

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Src/Utils/C4D.Wizard.Utils.pas

+1-2
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ class function TC4DWizardUtils.SelectFolder(const ADefaultFolder: string; const
474474
Result := '';
475475
LFileOpenDialog := TFileOpenDialog.Create(nil);
476476
try
477-
LFileOpenDialog.Title := 'Code4D-Wizard - Select a folder';
477+
LFileOpenDialog.Title := 'Code4D-Wizard - Select a folder';
478478
LFileOpenDialog.Options := [fdoPickFolders];
479479

480480
if(not ADefaultFolder.Trim.IsEmpty)and(System.SysUtils.DirectoryExists(ADefaultFolder))then
@@ -549,7 +549,6 @@ class function TC4DWizardUtils.DirectoryOrFileMove(AFrom, ATo: string): Boolean;
549549
try
550550
if(MoveFile(PWideChar(AFrom), PWideChar(ATo)))then
551551
Result := True;
552-
//TFile.Move(AFrom, ATo);
553552
except
554553
on E: Exception do
555554
Self.ShowError('Directory or file not moved: ' + E.Message);

0 commit comments

Comments
 (0)