The error is output because the label attribute for g is an empty string.
unit Problem;
interface
type
T0 = class
f : integer;
property g : integer read f write f label '';
end;
implementation
begin
end.
In this solution, the label attribute has been replaced by a non-zero length string.
unit Solve;
interface
type
T0 = class
f : integer;
property g : integer read f write f label 'LabelText';
end;
implementation
begin
end.|
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
|
What do you think about this topic? Send feedback!
|