1
0
mirror of https://github.com/arsenetar/dupeguru-cocoa.git synced 2026-03-27 07:51:39 +00:00

Fix some deprecation warnings update submodules

This commit is contained in:
2020-12-29 20:40:44 -06:00
parent 99b98db93a
commit 2eada16210
13 changed files with 67 additions and 47 deletions

View File

@@ -165,7 +165,7 @@ http://www.gnu.org/licenses/gpl-3.0.html
- (BOOL)previewPanel:(QLPreviewPanel *)panel handleEvent:(NSEvent *)event
{
// redirect all key down events to the table view
if ([event type] == NSKeyDown) {
if ([event type] == NSEventTypeKeyDown) {
[[self view] keyDown:event];
return YES;
}
@@ -177,4 +177,4 @@ http://www.gnu.org/licenses/gpl-3.0.html
{
[[self view] setNeedsDisplay:YES];
}
@end
@end