diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-11-20 15:39:06 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-11-20 15:39:06 (GMT) |
commit | da70d24c1529ed14e9b303d054436f4d7771b610 (patch) | |
tree | 9976f13324cf0bd237211a28a8128ba6ed808df8 /win/ttkWinXPTheme.c | |
parent | 73cd4c1a39143ee2ad2c2bb4dcb84ef52d196797 (diff) | |
parent | 857ad319e1e8ef85c537ede8d628c08de911f03f (diff) | |
download | tk-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.c | 6 |
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) |