mirror of
https://github.com/LibreOffice/online.git
synced 2025-07-21 23:44:49 +00:00
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:
@ -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;
|
||||
}
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user