Mark unused parameters

This commit is contained in:
Jonas Kvinge
2020-07-17 16:36:24 +02:00
parent 7afde0e93f
commit 4140163ab2
5 changed files with 11 additions and 2 deletions

View File

@@ -159,7 +159,7 @@ QDebug operator<<(QDebug dbg, NSObject* object) {
- (void)application:(NSApplication*)app openFiles:(NSArray*)filenames {
qLog(Debug) << "Wants to open:" << filenames;
[filenames enumerateObjectsUsingBlock:^(id object, NSUInteger idx, BOOL* stop) {
[filenames enumerateObjectsUsingBlock:^(id object, NSUInteger, BOOL*) {
[self application:app openFile:(NSString*)object];
}];