You are not logged in.
Pages: 1
Getting an error compiling SynDB, because the protected keyword cannot be used in a record structure.
so, this
TQueryValue = {$ifndef UNICODE}object{$else}record{$endif}
protected
/// fName should be the first property, i.e. the searched hashed value
fName: string;
fValue: Variant;
....
should be something like this
TQueryValue = {$ifndef UNICODE}object{$else}record{$endif}
{$ifndef UNICODE}protected{$endif}
/// fName should be the first property, i.e. the searched hashed value
fName: string;
fValue: Variant;
....
Offline
You are right.
Should be fixed by http://synopse.info/fossil/info/d5c218f019
Offline
Pages: 1