summaryrefslogtreecommitdiffstats
path: root/win/ttkWinXPTheme.c
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-11-20 15:39:06 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-11-20 15:39:06 (GMT)
commitda70d24c1529ed14e9b303d054436f4d7771b610 (patch)
tree9976f13324cf0bd237211a28a8128ba6ed808df8 /win/ttkWinXPTheme.c
parent73cd4c1a39143ee2ad2c2bb4dcb84ef52d196797 (diff)
parent857ad319e1e8ef85c537ede8d628c08de911f03f (diff)
downloadtk-da70d24c1529ed14e9b303d054436f4d7771b610.zip
tk-da70d24c1529ed14e9b303d054436f4d7771b610.tar.gz
tk-da70d24c1529ed14e9b303d054436f4d7771b610.tar.bz2
Some bit of Windows 8.1 compatibility: See [http://msdn.microsoft.com/en-us/library/windows/desktop/dn302074.aspx]
Diffstat (limited to 'win/ttkWinXPTheme.c')
-rw-r--r--win/ttkWinXPTheme.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/win/ttkWinXPTheme.c b/win/ttkWinXPTheme.c
index 1a5e934..08569a3 100644
--- a/win/ttkWinXPTheme.c
+++ b/win/ttkWinXPTheme.c
@@ -1259,10 +1259,10 @@ MODULE_SCOPE int TtkXPTheme_Init(Tcl_Interp *interp, HWND hwnd)
HINSTANCE hlibrary;
Ttk_Theme themePtr, parentPtr, vistaPtr;
ElementInfo *infoPtr;
- OSVERSIONINFO os;
+ OSVERSIONINFOW os;
- os.dwOSVersionInfoSize = sizeof(os);
- GetVersionEx(&os);
+ os.dwOSVersionInfoSize = sizeof(OSVERSIONINFOW);
+ GetVersionExW(&os);
procs = LoadXPThemeProcs(&hlibrary);
if (!procs)