summaryrefslogtreecommitdiffstats
path: root/macosx
diff options
context:
space:
mode:
authorculler <culler>2019-03-07 17:16:33 (GMT)
committerculler <culler>2019-03-07 17:16:33 (GMT)
commit9febe3d031f0782f45894fd86868b6965ba101e1 (patch)
tree0694d21910c6b0795d6f3cb9d04a9c31048952dd /macosx
parent78e9fe3c5367237a7855bc91749374056c7a39b3 (diff)
downloadtk-9febe3d031f0782f45894fd86868b6965ba101e1.zip
tk-9febe3d031f0782f45894fd86868b6965ba101e1.tar.gz
tk-9febe3d031f0782f45894fd86868b6965ba101e1.tar.bz2
Fixed one more None -> NULL compiler warning.
Diffstat (limited to 'macosx')
-rw-r--r--macosx/tkMacOSXDialog.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/tkMacOSXDialog.c b/macosx/tkMacOSXDialog.c
index c3778f1..785f929 100644
--- a/macosx/tkMacOSXDialog.c
+++ b/macosx/tkMacOSXDialog.c
@@ -1950,7 +1950,7 @@ FontchooserParentEventHandler(
if (eventPtr->type == DestroyNotify) {
Tk_DeleteEventHandler(fcdPtr->parent, StructureNotifyMask,
FontchooserParentEventHandler, fcdPtr);
- fcdPtr->parent = None;
+ fcdPtr->parent = NULL;
FontchooserHideCmd(NULL, NULL, 0, NULL);
}
}