Fix chromium-style errors (#12802)
This commit is contained in:
parent
5ba9f6a966
commit
cdc5022305
3 changed files with 4 additions and 4 deletions
|
@ -44,13 +44,13 @@
|
|||
}
|
||||
|
||||
- (void)onScreenLocked:(NSNotification*)notification {
|
||||
for (auto& emitter : self->emitters) {
|
||||
for (auto*& emitter : self->emitters) {
|
||||
emitter->Emit("lock-screen");
|
||||
}
|
||||
}
|
||||
|
||||
- (void)onScreenUnlocked:(NSNotification*)notification {
|
||||
for (auto& emitter : self->emitters) {
|
||||
for (auto*& emitter : self->emitters) {
|
||||
emitter->Emit("unlock-screen");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue