diff options
| author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2025-09-12 14:14:26 (GMT) |
|---|---|---|
| committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2025-09-12 14:14:26 (GMT) |
| commit | 87a60afbc2b6575f5d95996436bdaca5d138fdaf (patch) | |
| tree | 7c260cd92b99ab7bf6d3265c42e9c2fdbec2bc3e /win/tkWinInt.h | |
| parent | bc0bf14e28a221b797b6cae526d33efa8a3df9be (diff) | |
| parent | dd655f079219fe95caa1051af4c6ec6e0c9507ef (diff) | |
| download | tk-core-no-xp-theme.zip tk-core-no-xp-theme.tar.gz tk-core-no-xp-theme.tar.bz2 | |
Eliminate classic and XP theme on Windowscore-no-xp-theme
Diffstat (limited to 'win/tkWinInt.h')
| -rw-r--r-- | win/tkWinInt.h | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/win/tkWinInt.h b/win/tkWinInt.h index 36aa6a4..8345795 100644 --- a/win/tkWinInt.h +++ b/win/tkWinInt.h @@ -188,9 +188,11 @@ MODULE_SCOPE void TkWinSetupSystemFonts(TkMainInfo *mainPtr); * Values returned by TkWinGetPlatformTheme. */ -#define TK_THEME_WIN_CLASSIC 1 -#define TK_THEME_WIN_XP 2 -#define TK_THEME_WIN_VISTA 3 +#ifndef TK_NO_DEPRECATED +# define TK_THEME_WIN_CLASSIC 1 +# define TK_THEME_WIN_XP 2 +# define TK_THEME_WIN_VISTA 3 +#endif /* * The following is implemented in tkWinWm and used by tkWinEmbed.c |
