Delete "_" if it is the last character of the generated name.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1317 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
inoussa 2010-09-08 14:00:31 +00:00
parent 61c6016709
commit f8809ed35c

View File

@ -150,6 +150,8 @@ begin
end;
end;
end;
if (Length(Result) > 1) and (Result[Length(Result)] = '_') then
Delete(Result,Length(Result),1);
end;
end;