Fix warning: block implicitly retains 'self'; explicitly mention 'self' ...

... to indicate this is intended behavior.

Change-Id: Id5318bb20b8066364c5e2fd3b704b5a73bac1b42
Reviewed-on: https://gerrit.libreoffice.org/c/online/+/103711
Tested-by: Jenkins CollaboraOffice <jenkinscollaboraoffice@gmail.com>
Reviewed-by: Tor Lillqvist <tml@collabora.com>
This commit is contained in:
Tor Lillqvist
2020-09-29 16:37:10 +03:00
parent a384d96cb4
commit 894c51d6d4

View File

@ -238,14 +238,14 @@
// to make some sense out of it by not trusting a hide request until we see that it hasn't been
// folllowed by a display request within 100 ms.
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, 100000000ll), dispatch_get_main_queue(), ^{
if (!lastCommandIsHide) {
if (!self->lastCommandIsHide) {
NSLog(@"COKbdMgr: Ignoring hide command that was quickly followed by a display command");
return;
}
if (control != nil) {
[control removeFromSuperview];
if (self->control != nil) {
[self->control removeFromSuperview];
NSLog(@"COKbdMgr: Removed _COWVKMKeyInputControl from webView");
control = nil;
self->control = nil;
}
});
}