Ist euch aufgefallen, dass das Icon im MessageDlg für mtConfirmation vom blauen Fragezeichen auf das Warnungssymbol geändert wurde?
Weiß jemand von euch mit welcher Begründung sowas gemacht wurde?
Delphi-Quellcode:
unit Vcl.Dialogs
// Delphi 11.2
function GetMsgIconResourceName:
String;
begin
Result := '
';
case DlgType
of
mtWarning:
Result := '
MSG_WARNING';
mtError:
Result := '
MSG_ERROR';
mtInformation,
mtConfirmation:
Result := '
MSG_INFO';
end;
end;
// Delphi 11.3
function GetMsgIconResourceName:
String;
begin
Result := '
';
case DlgType
of
mtWarning,
mtConfirmation:
Result := '
MSG_WARNING';
mtError:
Result := '
MSG_ERROR';
mtInformation:
Result := '
MSG_INFO';
end;
end;