git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@5332 8e941d3f-bd1b-0410-a28a-d453659cc2b4

This commit is contained in:
gbamber
2016-11-09 11:04:06 +00:00
parent de0d021d4d
commit 47c73e266c

View File

@ -185,7 +185,10 @@ begin
end;
procedure TAboutbox.SetDialogTitle(Const AValue:String);
begin
fDialogTitle:=rs_About + ' ' + Avalue;
if AnsiContainsText(fDialogTitle, rs_About) then
fDialogTitle := AValue
else
fDialogTitle := rs_About + ' ' + Avalue;
end;
procedure TAboutbox.ShowDialog;