IDE: messages: about: use wordwrap

git-svn-id: branches/fixes_1_4@47952 -
This commit is contained in:
mattias 2015-02-23 09:16:12 +00:00
parent cc828930bb
commit f542c73f49

View File

@ -3161,7 +3161,7 @@ begin
s+='Parameters:'+LineEnding;
s+=Proc.Parameters.Text+LineEnding;
s+='Command Line:'+LineEnding;
s+=Tool.Process.Executable+' '+Tool.CmdLineParams+LineEnding;
s+=Tool.Process.Executable+' '+Tool.CmdLineParams+LineEnding+LineEnding;
s+='ProcessID:'+LineEnding+IntToStr(Proc.ProcessID)+LineEnding+LineEnding;
if Tool.Terminated then
s+='Terminated'+LineEnding+LineEnding
@ -3187,8 +3187,8 @@ begin
Name:='Memo';
Lines.Text:=s;
Align:=alClient;
WordWrap:=false;
ScrollBars:=ssBoth;
WordWrap:=true; // carbon requires this and it is a good idea in general
ScrollBars:=ssVertical;
ReadOnly:=true;
Parent:=Form;
end;