Skip to content

Commit

Permalink
[applications] Fix warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
ManuelSchneid3r committed Oct 19, 2024
1 parent b9efe5c commit a55aa44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions applications/src/mac/application.mm
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ void printBundleInfo(QString path, NSBundle *bundle)
{
for (NSDictionary *documentType in documentTypes)
{
NSString *typeName = [documentType objectForKey:@"CFBundleTypeName"];
// NSString *typeName = [documentType objectForKey:@"CFBundleTypeName"];
NSString *typeRole = [documentType objectForKey:@"CFBundleTypeRole"];
NSString *handlerRank = [documentType objectForKey:@"LSHandlerRank"];
NSArray *contentTypes = [documentType objectForKey:@"LSItemContentTypes"];
NSArray *fileExtensions = [documentType objectForKey:@"CFBundleTypeExtensions"];
NSArray *mimeTypes = [documentType objectForKey:@"CFBundleTypeMIMETypes"];
NSString *iconFile = [documentType objectForKey:@"CFBundleTypeIconFile"];
// NSString *iconFile = [documentType objectForKey:@"CFBundleTypeIconFile"];

// NSLog(@"Document Type Name: %@", typeName);
// NSLog(@"Document Type Role: %@", typeRole);
Expand Down

0 comments on commit a55aa44

Please sign in to comment.