summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorculler <culler@noemail.net>2017-11-13 22:29:44 (GMT)
committerculler <culler@noemail.net>2017-11-13 22:29:44 (GMT)
commitf09366edb0e8306fb86b75d642c1f7edebeb4027 (patch)
tree4cf4cb67fd69368a140a84be510a6e02f0262855
parente46529aa8878af7e7f833e7fab23d1e4173a939d (diff)
downloadtk-f09366edb0e8306fb86b75d642c1f7edebeb4027.zip
tk-f09366edb0e8306fb86b75d642c1f7edebeb4027.tar.gz
tk-f09366edb0e8306fb86b75d642c1f7edebeb4027.tar.bz2
_poolLock should be declared int, not BOOL. This is unrelated to icons,
but breaks the build for -arch i386. FossilOrigin-Name: 0954fead36af8f9a91f571142c42c65b741634d45ff76346114df2b239364031
-rw-r--r--macosx/tkMacOSXPrivate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/macosx/tkMacOSXPrivate.h b/macosx/tkMacOSXPrivate.h
index 16bb9ea..972b74c 100644
--- a/macosx/tkMacOSXPrivate.h
+++ b/macosx/tkMacOSXPrivate.h
@@ -287,7 +287,7 @@ VISIBILITY_HIDDEN
int _poolLock;
#endif
}
-@property BOOL poolLock;
+@property int poolLock;
@end
@interface TKApplication(TKInit)