mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
[qwaq] Initialize onEvent
sigh
This commit is contained in:
parent
48f41142f5
commit
6ec7b96693
2 changed files with 2 additions and 1 deletions
|
@ -16,7 +16,6 @@
|
|||
linebuffer = [DrawBuffer buffer: { xlen, 1 }];
|
||||
growMode = gfGrowHi;
|
||||
options = ofCanFocus | ofRelativeEvents;
|
||||
onEvent = [[ListenerGroup alloc] init];
|
||||
return self;
|
||||
}
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
}
|
||||
onReceiveFocus = [[ListenerGroup alloc] init];
|
||||
onReleaseFocus = [[ListenerGroup alloc] init];
|
||||
onEvent = [[ListenerGroup alloc] init];
|
||||
return self;
|
||||
}
|
||||
|
||||
|
@ -24,6 +25,7 @@
|
|||
self.absRect = rect;
|
||||
onReceiveFocus = [[ListenerGroup alloc] init];
|
||||
onReleaseFocus = [[ListenerGroup alloc] init];
|
||||
onEvent = [[ListenerGroup alloc] init];
|
||||
return self;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue