summaryrefslogtreecommitdiffstats
path: root/macosx/tkMacOSXKeyEvent.c
diff options
context:
space:
mode:
authormarc_culler <marc.culler@gmail.com>2020-07-15 20:57:08 (GMT)
committermarc_culler <marc.culler@gmail.com>2020-07-15 20:57:08 (GMT)
commit3a4dab519f8f01cd8d16d28af150bb2b07894b5f (patch)
treefd28c8dfdefeaccf959959dcf60f88045f5bd2dd /macosx/tkMacOSXKeyEvent.c
parent4819d3849f45e832a8b26c7906c36f66472ef3b9 (diff)
downloadtk-3a4dab519f8f01cd8d16d28af150bb2b07894b5f.zip
tk-3a4dab519f8f01cd8d16d28af150bb2b07894b5f.tar.gz
tk-3a4dab519f8f01cd8d16d28af150bb2b07894b5f.tar.bz2
More fixes from [7ebdd17974] (thanks Christopher Chavez): remove the needsRedisplay flag, update comments.
Diffstat (limited to 'macosx/tkMacOSXKeyEvent.c')
-rw-r--r--macosx/tkMacOSXKeyEvent.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/macosx/tkMacOSXKeyEvent.c b/macosx/tkMacOSXKeyEvent.c
index 9c22820..572e318 100644
--- a/macosx/tkMacOSXKeyEvent.c
+++ b/macosx/tkMacOSXKeyEvent.c
@@ -268,14 +268,6 @@ static NSUInteger textInputModifiers;
@implementation TKContentView
--(id)init {
- self = [super init];
- if (self) {
- _needsRedisplay = NO;
- }
- return self;
-}
-
/*
* Implementation of the NSTextInputClient protocol.
*/
@@ -551,7 +543,6 @@ static NSUInteger textInputModifiers;
}
/* End of NSTextInputClient implementation. */
-@synthesize needsRedisplay = _needsRedisplay;
@end