From 368d15ea481675674f1a2a5bf7adf9fb42dd527c Mon Sep 17 00:00:00 2001 From: Maxim Ganetsky Date: Thu, 29 Jul 2021 01:32:06 +0300 Subject: [PATCH] IDE: removed useless # symbol from Lazarus version label in About dialog --- ide/aboutfrm.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ide/aboutfrm.pas b/ide/aboutfrm.pas index c3fbdc6550..e0a63284b2 100644 --- a/ide/aboutfrm.pas +++ b/ide/aboutfrm.pas @@ -175,7 +175,7 @@ const begin Notebook.PageIndex:=0; Caption:=lisAboutLazarus; - VersionLabel.Caption := lisVersion+' #: '+ GetLazarusVersionString; + VersionLabel.Caption := lisVersion+': '+ GetLazarusVersionString; RevisionLabel.Caption := lisRevision+LazarusRevisionStr; BuildDateLabel.Caption := lisDate+': '+GetLocalizedBuildDate; FPCVersionLabel.Caption:= lisFPCVersion+{$I %FPCVERSION%};