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:
parent
61c6016709
commit
f8809ed35c
@ -150,6 +150,8 @@ begin
|
||||
end;
|
||||
end;
|
||||
end;
|
||||
if (Length(Result) > 1) and (Result[Length(Result)] = '_') then
|
||||
Delete(Result,Length(Result),1);
|
||||
end;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user