Fix checking modal result, handle mrCancel. Issue: #40920

This commit is contained in:
Martin 2024-04-25 21:47:15 +02:00
parent 0002e72121
commit 49f44c8ee1
9 changed files with 11 additions and 11 deletions

View File

@ -300,7 +300,7 @@ begin
Data := FVSTPackages.GetNodeData(Node);
if Data^.FDataType = 1 then
begin
if MessageDlgEx(Format(rsCreateRepositoryFrm_Conf1, [Data^.FDisplayname]), mtConfirmation, [mbYes, mbNo], Self) = mrNo then
if MessageDlgEx(Format(rsCreateRepositoryFrm_Conf1, [Data^.FDisplayname]), mtConfirmation, [mbYes, mbNo], Self) <> mrYes then
Exit;
CanGo := False;
PackageIndex := FSerializablePackages.FindPackageIndex(Data^.FName, fpbPackageName);

View File

@ -1213,7 +1213,7 @@ var
Node: PVirtualNode;
MetaPkg: TMetaPackage;
begin
if MessageDlgEx(rsMainFrm_miResetRating + '?', mtConfirmation, [mbYes, mbNo], Self) = mrNo then
if MessageDlgEx(rsMainFrm_miResetRating + '?', mtConfirmation, [mbYes, mbNo], Self) <> mrYes then
Exit;
Node := VisualTree.VST.GetFirstSelected;
if Node <> nil then

View File

@ -93,7 +93,7 @@ begin
if SDRep.Execute then
begin
if (not IsDirectoryEmpty(ExtractFilePath(SDRep.FileName))) then
if MessageDlgEx(Format(rsCreateRepositoryFrm_Info1, [ExtractFilePath(SDRep.FileName)]), mtConfirmation, [mbYes, mbNo], Self) = mrNo then
if MessageDlgEx(Format(rsCreateRepositoryFrm_Info1, [ExtractFilePath(SDRep.FileName)]), mtConfirmation, [mbYes, mbNo], Self) <> mrYes then
Exit;
if not DirectoryIsWritable(ExtractFilePath(SDRep.FileName)) then
begin

View File

@ -289,7 +289,7 @@ begin
if Dataset.TableExists then
begin
if MessageDlg(Format(sATableNamedAlreadyExistsAreYouSureYouWantToReplace, [Dataset.TableName, LineEnding]),
mtWarning,[mbYes,MbNo],0) = mrNo then
mtWarning,[mbYes,mbNo],0) <> mrYes then
exit
else
DataSet.ExecSQL('DROP TABLE '+DataSet.TableName+';');

View File

@ -306,7 +306,7 @@ begin
if IDEMessageDialog(dlgMarkupUserDefinedDelCaption,
Format(dlgMarkupUserDefinedDelPrompt, [FUserWords.Name]),
mtConfirmation, mbYesNo) = mrNo
mtConfirmation, mbYesNo) <> mrYes
then
exit;

View File

@ -852,7 +852,7 @@ begin
if EnvironmentDebugOpts.ConfirmDeleteFileBreakPoints then begin
MsgResult:=TaskDlg(lisDeleteAllBreakpoints, lisDeleteAllBreakpoints2, '', tdiQuestion,
[mbYes, mbNo], dbgDoNotShowThisMessageAgain, NotAgain);
if MsgResult = mrNo then
if MsgResult <> mrYes then
exit;
if NotAgain then
EnvironmentDebugOpts.ConfirmDeleteFileBreakPoints:= False;
@ -927,7 +927,7 @@ begin
if EnvironmentDebugOpts.ConfirmDeleteAllBreakPoints then begin
MsgResult:=TaskDlg(lisDeleteAllBreakpoints, lisDeleteAllBreakpoints, '', tdiQuestion,
[mbYes, mbNo], dbgDoNotShowThisMessageAgain, NotAgain);
if MsgResult = mrNo then
if MsgResult <> mrYes then
exit;
if NotAgain then
EnvironmentDebugOpts.ConfirmDeleteAllBreakPoints := False;

View File

@ -125,7 +125,7 @@ begin
if EnvironmentDebugOpts.ConfirmDeleteAllHistory then begin
MsgResult:=TaskDlg(dlgHistoryDeleteAllConfirm, dlgHistoryDeleteAllConfirm, '', tdiQuestion,
[mbYes, mbNo], dbgDoNotShowThisMessageAgain, NotAgain);
if MsgResult = mrNo then
if MsgResult <> mrYes then
exit;
if NotAgain then
EnvironmentDebugOpts.ConfirmDeleteAllHistory := False;

View File

@ -908,7 +908,7 @@ begin
if EnvironmentDebugOpts.ConfirmDeleteAllWatches then begin
MsgResult:=TaskDlg(dlgWatchesDeleteAllConfirm, dlgWatchesDeleteAllConfirm, '', tdiQuestion,
[mbYes, mbNo], dbgDoNotShowThisMessageAgain, NotAgain);
if MsgResult = mrNo then
if MsgResult <> mrYes then
exit;
if NotAgain then
EnvironmentDebugOpts.ConfirmDeleteAllWatches := False;

View File

@ -181,7 +181,7 @@ var
begin
if MessageDlg('This will add all files in the project directory ' + LineEnding +
'recursively. Do you want to continue?',
mtConfirmation, [mbYes, mbNo],0) = mrNo then exit;
mtConfirmation, [mbYes, mbNo],0) <> mrYes then exit;
Modified := True;
Files := TStringList.Create;
try
@ -384,7 +384,7 @@ begin
If SaveDialog1.Execute then
begin
if FileExists(SaveDialog1.FileName)
and (MessageDlg('File Already Exists! Ovewrite?', mtWarning, [mbYes, mbNo],0) = mrNo) then Exit;
and (MessageDlg('File Already Exists! Ovewrite?', mtWarning, [mbYes, mbNo],0) <> mrYes) then Exit;
OpenProject(SaveDialog1.FileName);
Project.SaveToFile(SaveDialog1.FileName);
end;