summaryrefslogtreecommitdiffstats
path: root/win
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2019-02-08 17:10:57 (GMT)
committerfvogel <fvogelnew1@free.fr>2019-02-08 17:10:57 (GMT)
commit1b0426befe60221b28c0ba57a74d22371ae30259 (patch)
tree375fb0891c0efea6f452e0cfdfc97e3b1366e793 /win
parente4d80b4d45925dc8efdb80b5c9bfa8f2e057d78a (diff)
parent57942e0fd075aa6e841279d4e098b6296d97fecd (diff)
downloadtk-1b0426befe60221b28c0ba57a74d22371ae30259.zip
tk-1b0426befe60221b28c0ba57a74d22371ae30259.tar.gz
tk-1b0426befe60221b28c0ba57a74d22371ae30259.tar.bz2
Fix the build for MSVC
Diffstat (limited to 'win')
-rw-r--r--win/tkWinEmbed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/tkWinEmbed.c b/win/tkWinEmbed.c
index f28508d..6c80964 100644
--- a/win/tkWinEmbed.c
+++ b/win/tkWinEmbed.c
@@ -861,7 +861,7 @@ ContainerEventProc(
* Send a ConfigureNotify to the embedded application.
*/
- if (containerPtr->embeddedPtr != None) {
+ if (containerPtr->embeddedPtr != NULL) {
TkDoConfigureNotify(containerPtr->embeddedPtr);
}