Commit 4573489d authored by Felix Paul Kühne's avatar Felix Paul Kühne

macosx/QuincyKit: fix a few compilation warnings

parent 37176e86
...@@ -94,13 +94,11 @@ typedef enum CrashReportStatus { ...@@ -94,13 +94,11 @@ typedef enum CrashReportStatus {
@protocol BWQuincyManagerDelegate <NSObject> @protocol BWQuincyManagerDelegate <NSObject>
@required @optional
// Invoked once the modal sheets are gone // Invoked once the modal sheets are gone
- (void) showMainApplicationWindow; - (void) showMainApplicationWindow;
@optional
// Return the description the crashreport should contain, empty by default. The string will automatically be wrapped into <[DATA[ ]]>, so make sure you don't do that in your string. // Return the description the crashreport should contain, empty by default. The string will automatically be wrapped into <[DATA[ ]]>, so make sure you don't do that in your string.
-(NSString *) crashReportDescription; -(NSString *) crashReportDescription;
...@@ -164,6 +162,7 @@ typedef enum CrashReportStatus { ...@@ -164,6 +162,7 @@ typedef enum CrashReportStatus {
- (NSString *) applicationName; - (NSString *) applicationName;
- (NSString *) applicationVersionString; - (NSString *) applicationVersionString;
- (void)setApplicationVersion:(NSString *)appVersion;
- (NSString *) applicationVersion; - (NSString *) applicationVersion;
@end @end
...@@ -592,7 +592,7 @@ audio_output_t *getAout(void) ...@@ -592,7 +592,7 @@ audio_output_t *getAout(void)
#pragma mark - #pragma mark -
#pragma mark Private #pragma mark Private
@interface VLCMain () @interface VLCMain () <BWQuincyManagerDelegate>
- (void)removeOldPreferences; - (void)removeOldPreferences;
@end @end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment