SynHighlighterSQL.pas
Property FunctionNames not work correctly on design time.
Please fix the method SetFunctionNames.
from:
procedure TSynSQLSyn.SetFunctionNames(const Value: TUnicodeStrings); begin fFunctionNames := Value; end;
to:
procedure TSynSQLSyn.SetFunctionNames(const Value: TUnicodeStrings); begin fFunctionNames.Assign(Value); end;
Thanks