Does anyone know if there is a problem passing a constant through 2 or more procedures?
For instance:
myCall('Hi);
procedure myCall(const theStr :string);
begin
myCall2(theStr);
end;
procedure myCall2(const theStr :string);
begin
// debug here
showMessage(theStr);
end;
The debugger does not seem to show the correct information.
Anyone know what is going on? Or this just soemthing to avoid?
Thanks,
Igos
For instance:
myCall('Hi);
procedure myCall(const theStr :string);
begin
myCall2(theStr);
end;
procedure myCall2(const theStr :string);
begin
// debug here
showMessage(theStr);
end;
The debugger does not seem to show the correct information.
Anyone know what is going on? Or this just soemthing to avoid?
Thanks,
Igos