XE7 fix
Status: Beta
Brought to you by:
smsisko
In XE7 I get this compilation error:
[dcc32 Error] HtmlReader.pas(602): E2010 Incompatible types: 'Integer' and 'TStringSplitOptions'
Line 602 looks like this:
FNodeType := NONE;
XE7 thinks that System.SysUtils.TStringSplitOptions.None is meant, so my fix was to change line 602 to:
FNodeType := DomCore.NONE;