summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2021-10-06 16:09:11 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2021-10-06 16:09:11 (GMT)
commit88bcb221923fb169035a482c8e6b6d6de06f592f (patch)
treec67ffcba1fdc6b85d4260ec622b6fcf9fcc4329a /win
parent60890ac1a7964bd9cbc807459ddeebc478cbdf8c (diff)
downloadtk-88bcb221923fb169035a482c8e6b6d6de06f592f.zip
tk-88bcb221923fb169035a482c8e6b6d6de06f592f.tar.gz
tk-88bcb221923fb169035a482c8e6b6d6de06f592f.tar.bz2
Fix [32bda06ec0]: Tk build failure at branch "main" (2021-10-04) using mingw 6.0 (missing include at tkWinWm.c)
Diffstat (limited to 'win')
-rw-r--r--win/tkWinWm.c2
-rw-r--r--win/ttkWinMonitor.c2
-rw-r--r--win/ttkWinTheme.c2
-rw-r--r--win/ttkWinXPTheme.c2
4 files changed, 4 insertions, 4 deletions
diff --git a/win/tkWinWm.c b/win/tkWinWm.c
index cca8fb0..95ec190 100644
--- a/win/tkWinWm.c
+++ b/win/tkWinWm.c
@@ -13,12 +13,12 @@
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*/
+#include "tkWinInt.h"
#include <windows.h>
#include <wtypes.h>
#include <shobjidl.h>
#include <shlguid.h>
#include <shellapi.h>
-#include "tkWinInt.h"
#include "tkWinIco.h"
/*
* These next two defines are only valid on Win2K/XP+.
diff --git a/win/ttkWinMonitor.c b/win/ttkWinMonitor.c
index 1d31c1c..2db00b5 100644
--- a/win/ttkWinMonitor.c
+++ b/win/ttkWinMonitor.c
@@ -2,7 +2,7 @@
#define WIN32_LEAN_AND_MEAN
#endif
-#include <tkWinInt.h>
+#include "tkWinInt.h"
#include "ttk/ttkTheme.h"
#if !defined(WM_THEMECHANGED)
diff --git a/win/ttkWinTheme.c b/win/ttkWinTheme.c
index d3277f2..56e6882 100644
--- a/win/ttkWinTheme.c
+++ b/win/ttkWinTheme.c
@@ -5,7 +5,7 @@
#define WIN32_LEAN_AND_MEAN
#endif
-#include <tkWinInt.h>
+#include "tkWinInt.h"
#ifndef DFCS_HOT /* Windows 98/Me, Windows 2000/XP only */
#define DFCS_HOT 0
diff --git a/win/ttkWinXPTheme.c b/win/ttkWinXPTheme.c
index 3fedff7..2500ea2 100644
--- a/win/ttkWinXPTheme.c
+++ b/win/ttkWinXPTheme.c
@@ -15,7 +15,7 @@
* shellcc/platform/commctls/userex/refentry.asp >
*/
-#include <tkWinInt.h>
+#include "tkWinInt.h"
#ifndef HAVE_UXTHEME_H
/* Stub for platforms that lack the XP theme API headers: */
int TtkXPTheme_Init(Tcl_Interp *interp, HWND hwnd) { return TCL_OK; }