You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Compilation failed in RS10.3.3 with the error: WrapVclThemes.pas(109) Error: E2034 Too many actual parameters.
StyleServices(AControl: TControl = nil) has only been supported since RS10.4.
So the code in WrapVclThemes.pas at line 109 (Result := GlobalDelphiWrapper.Wrap(StyleServices(LControl));) needs to be changed to: Result := GlobalDelphiWrapper. StyleServices({$if CompilerVersion>33}LControl{$ifend}));
The text was updated successfully, but these errors were encountered:
Compilation failed in RS10.3.3 with the error: WrapVclThemes.pas(109) Error: E2034 Too many actual parameters.
StyleServices(AControl: TControl = nil) has only been supported since RS10.4.
So the code in WrapVclThemes.pas at line 109 (Result := GlobalDelphiWrapper.Wrap(StyleServices(LControl));) needs to be changed to: Result := GlobalDelphiWrapper. StyleServices({$if CompilerVersion>33}LControl{$ifend}));
The text was updated successfully, but these errors were encountered: