summaryrefslogtreecommitdiffstats
path: root/win/tkWinEmbed.c
diff options
context:
space:
mode:
authorculler <culler>2019-02-08 18:02:47 (GMT)
committerculler <culler>2019-02-08 18:02:47 (GMT)
commita9e9a66f972c679eaf82fe93243d55a9cf4e46db (patch)
tree7fd87126cfcf165befe04624792b16145a26b3d6 /win/tkWinEmbed.c
parent062d578e1ddbd93e8b49ae48baef4d9fa30ecb29 (diff)
parent1b0426befe60221b28c0ba57a74d22371ae30259 (diff)
downloadtk-a9e9a66f972c679eaf82fe93243d55a9cf4e46db.zip
tk-a9e9a66f972c679eaf82fe93243d55a9cf4e46db.tar.gz
tk-a9e9a66f972c679eaf82fe93243d55a9cf4e46db.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 0317ce6..c45f088 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);
}