5.3.2 translation string problem

All announcements, questions and issues related to the TsiLang Components Suite.
Post Reply
David
Posts: 7
Joined: Tue Oct 12, 2004 9:07 am

5.3.2 translation string problem

Post by David »

Hi Igor,
Here is still problem with ignoring strings.
Try this example:

unit..
...

{TSI:IGNORE ON} // bad

procedure Dummy;
begin
end;

{TSI:IGNORE ON} // good

function TForm_Main.CheckTimeoutLicence: Boolean;
var
S: String;
begin
S :='asdf';
end;

If {TSI:IGNORE ON} is before procedure Dummy, string is recognized.
If {TSI:IGNORE ON} is after procedure Dummy, string is not recognized, what is OK.
Post Reply