summaryrefslogtreecommitdiffstats
path: root/win/tkWinEmbed.c
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2019-02-08 17:10:18 (GMT)
committerfvogel <fvogelnew1@free.fr>2019-02-08 17:10:18 (GMT)
commit57942e0fd075aa6e841279d4e098b6296d97fecd (patch)
treec131067161f19b04380e0bbc3b3de5168356e16a /win/tkWinEmbed.c
parent71775ff27a2673061e31435638f38fa3783868d0 (diff)
downloadtk-57942e0fd075aa6e841279d4e098b6296d97fecd.zip
tk-57942e0fd075aa6e841279d4e098b6296d97fecd.tar.gz
tk-57942e0fd075aa6e841279d4e098b6296d97fecd.tar.bz2
Fix the build for MSVC
Diffstat (limited to 'win/tkWinEmbed.c')
-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);
}