summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXButton.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2014-08-27 15:35:19 (GMT)
committerdgp <dgp@users.sourceforge.net>2014-08-27 15:35:19 (GMT)
commitf6a5d06ec35c31a3c7b0b060788e50f367480cf8 (patch)
treeb15211137315a312fec3c7380fda208bfbccd014 /macosx/tkMacOSXButton.c
parentffde386176f4a359aab3850c82745e11c8afa14d (diff)
parent22bc8117e933613b01991f5ec62d5e7a64a63551 (diff)
downloadtk-f6a5d06ec35c31a3c7b0b060788e50f367480cf8.zip
tk-f6a5d06ec35c31a3c7b0b060788e50f367480cf8.tar.gz
tk-f6a5d06ec35c31a3c7b0b060788e50f367480cf8.tar.bz2
Stop segfaults on Mac OSX after [$button destroy].
Diffstat (limited to 'macosx/tkMacOSXButton.c')
-rw-r--r--macosx/tkMacOSXButton.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/macosx/tkMacOSXButton.c b/macosx/tkMacOSXButton.c
index 9896971..95611d0 100644
--- a/macosx/tkMacOSXButton.c
+++ b/macosx/tkMacOSXButton.c
@@ -187,6 +187,7 @@ TkpDestroyButton(
TkButton *butPtr)
{
MacButton *macButtonPtr = (MacButton *) butPtr;
+ [macButtonPtr->button setTag:(NSInteger)-1];
TkMacOSXMakeCollectableAndRelease(macButtonPtr->button);
TkMacOSXMakeCollectableAndRelease(macButtonPtr->selectImage);