This commit is contained in:
Basile Burg 2016-09-18 16:47:02 +02:00
parent c6e18403ea
commit 1159e0ac02
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
1 changed files with 2 additions and 1 deletions

View File

@ -1748,7 +1748,8 @@ begin
for lne in fCallTipStrings do
if lne.isNotEmpty then
str += lne + LineEnding;
str := str[1..str.length - length(LineEnding)];
if str.isEmpty then
exit;
{$IFDEF WINDOWS}
str := str[1..str.length-2];
{$ELSE}