diff options
author | patthoyts <patthoyts@users.sourceforge.net> | 2009-12-03 23:58:34 (GMT) |
---|---|---|
committer | patthoyts <patthoyts@users.sourceforge.net> | 2009-12-03 23:58:34 (GMT) |
commit | 4f22e4e2865a8ef6917cc8a16c3a4041ab2e3b5a (patch) | |
tree | af01d0a3f9a01d3ce36f35080c91b9855a8d1636 /win/ttkWinXPTheme.c | |
parent | 11451aec4915dc62cc84ee9caf897dc10818e8c9 (diff) | |
download | tk-4f22e4e2865a8ef6917cc8a16c3a4041ab2e3b5a.zip tk-4f22e4e2865a8ef6917cc8a16c3a4041ab2e3b5a.tar.gz tk-4f22e4e2865a8ef6917cc8a16c3a4041ab2e3b5a.tar.bz2 |
Fix the selection of treeview rows on Windows XP and Vista
Diffstat (limited to 'win/ttkWinXPTheme.c')
-rw-r--r-- | win/ttkWinXPTheme.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/win/ttkWinXPTheme.c b/win/ttkWinXPTheme.c index 0c5369c..5502206 100644 --- a/win/ttkWinXPTheme.c +++ b/win/ttkWinXPTheme.c @@ -1,5 +1,5 @@ /* - * $Id: ttkWinXPTheme.c,v 1.18.2.1 2009/05/14 00:53:04 patthoyts Exp $ + * $Id: ttkWinXPTheme.c,v 1.18.2.2 2009/12/03 23:58:35 patthoyts Exp $ * * Tk theme engine which uses the Windows XP "Visual Styles" API * Adapted from Georgios Petasis' XP theme patch. @@ -27,7 +27,11 @@ int TtkXPTheme_Init(Tcl_Interp *interp, HWND hwnd) { return TCL_OK; } #include <windows.h> #include <uxtheme.h> -#include <tmschema.h> +#ifdef HAVE_VSSYM32_H +# include <vssym32.h> +#else +# include <tmschema.h> +#endif #include <tkWinInt.h> |