Silence some unused parameter warnings
This commit is contained in:
parent
636771e566
commit
8c4e426534
@ -630,6 +630,7 @@ static const NSRange kEmptyRange = { NSNotFound, 0 };
|
|||||||
#pragma mark - Notifications
|
#pragma mark - Notifications
|
||||||
|
|
||||||
- (void)applicationDidResignActive:(NSNotification *)notification {
|
- (void)applicationDidResignActive:(NSNotification *)notification {
|
||||||
|
(void)notification;
|
||||||
if (_count > 0) {
|
if (_count > 0) {
|
||||||
debug_key(@"Application resigning active.");
|
debug_key(@"Application resigning active.");
|
||||||
[self update];
|
[self update];
|
||||||
@ -637,6 +638,7 @@ static const NSRange kEmptyRange = { NSNotFound, 0 };
|
|||||||
}
|
}
|
||||||
|
|
||||||
- (void)applicationDidBecomeActive:(NSNotification *)notification {
|
- (void)applicationDidBecomeActive:(NSNotification *)notification {
|
||||||
|
(void)notification;
|
||||||
if (self.isDesired) {
|
if (self.isDesired) {
|
||||||
debug_key(@"Application became active.");
|
debug_key(@"Application became active.");
|
||||||
[self update];
|
[self update];
|
||||||
@ -1551,6 +1553,7 @@ void _glfwPlatformUpdateIMEState(_GLFWwindow *w, const GLFWIMEUpdateEvent *ev) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
- (void)toggleSecureInput:(id)sender {
|
- (void)toggleSecureInput:(id)sender {
|
||||||
|
(void)sender;
|
||||||
[[SecureKeyboardEntryController sharedInstance] toggle];
|
[[SecureKeyboardEntryController sharedInstance] toggle];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user