You are not logged in.
Pages: 1
in the downloaded version if you compile the example Synfile an error occurs in the line
/// the type of custom main User Interface description of SynFile
TFileRibbonTabParameters = object(TSQLRibbonTabParameters)
/// the SynFile actions
Actions: TFileActions;
end;
so I looked at the code below and saw that the old version
TSQLRibbonTabParameters = object
public
and not
{$ifndef UNICODE}
TSQLRibbonTabParameters = object
{$else}
TSQLRibbonTabParameters = record
{$endif}
public
maybe you wanted to write {$ifdef UNICODE} TSQLRibbonTabParameters = object {$else}
Offline
Yes.
My mistake.
"object" can inherit, but "record" can't.
I hate the EMB Delphi regressions.
See http://synopse.info/forum/viewtopic.php?id=80
Fixed by latest commit.
Thanks for the immediate report.
Offline
Pages: 1