Merged revision(s) 43480 #faa6ee5f53 from trunk:

LCL, win32: make UpdateWindowsVersion detect Windows 8, patch by Tomasz Wieckowski, bug #25374
........

git-svn-id: branches/fixes_1_2@43500 -
This commit is contained in:
maxim 2013-11-29 21:15:25 +00:00
parent c07caddce2
commit 9cc4bbe625

View File

@ -149,6 +149,7 @@ type
wvVista,
//wvServer2008, // has the same major/minor as wvVista
wv7,
wv8,
wvLater
);
@ -1634,6 +1635,7 @@ begin
case Win32MinorVersion of
0: WindowsVersion := wvVista;
1: WindowsVersion := wv7;
2: WindowsVersion := wv8;
else
WindowsVersion := wvLater;
end;