mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-24 10:12:22 -05:00
Don't install spelling dicts if win8+
This commit is contained in:
parent
7e7e87600e
commit
b009084a52
@ -230,8 +230,16 @@ end;
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
function CheckSpellInstall(): Boolean;
|
||||
var
|
||||
Version: TWindowsVersion;
|
||||
begin
|
||||
Result := DirExists(ExpandConstant('{localappdata}') + '\enchant');;
|
||||
GetWindowsVersionEx(Version);
|
||||
|
||||
// Windows 8 or greater has built in spell check.
|
||||
if Version.NTPlatform and (Version.Major > 6) or ((Version.Major = 6) and (Version.Minor > 1)) then
|
||||
Result := True
|
||||
else
|
||||
Result := DirExists(ExpandConstant('{localappdata}') + '\enchant\myspell');
|
||||
end;
|
||||
|
||||
/////////////////////////////////////////////////////////////////////
|
||||
|
Loading…
Reference in New Issue
Block a user