mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-10-02 12:29:56 +02:00
* Fix bug #33236: Give feedback when connection test succeeds (part 2, renames variable)
git-svn-id: trunk@57386 -
This commit is contained in:
parent
f4922224e6
commit
dda40dc1a4
@ -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);
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user