* Fix bug #33236: Give feedback when connection test succeeds (part 2, renames variable)

git-svn-id: trunk@57386 -
This commit is contained in:
michael 2018-02-27 12:40:29 +00:00
parent f4922224e6
commit dda40dc1a4
2 changed files with 3 additions and 3 deletions

View File

@ -169,7 +169,7 @@ begin
if (S<>'') then
MessageDlg(SErrConnectionNotOK,S,mtError,[mbOK],0)
else
MessageDlg(SSuccess,SConnectionSuccesful,mtInfo,[mbOK],0)
MessageDlg(SSuccess,SConnectionSuccesful,mtInformation,[mbOK],0)
end;
constructor TSQLReportDataConfigFrame.Create(AOwner: TComponent);

View File

@ -63,7 +63,7 @@ var
Resourcestring
SConnectionSuccesful = 'Connection to the database was succesfully made.';
SErrConnectionNotOK = 'Error connecting to the database';
SSucces = 'Succesfully connected.';
SSuccess = 'Succesfully connected.';
implementation
@ -114,7 +114,7 @@ begin
if (S<>'') then
MessageDlg(SErrConnectionNotOK,S,mtError,[mbOK],0)
else
MessageDlg(SSucces,SConnectionSuccesful,mtInfo,[mbOK],0);
MessageDlg(SSuccess,SConnectionSuccesful,mtInformation,[mbOK],0);
end;
procedure TReportConnectionEditorForm.Setparams(AValue: TJSONObject);