[vlc-commits] macosx/QuincyKit: fix a few compilation warnings
Felix Paul Kühne
git at videolan.org
Fri Jan 10 18:24:53 CET 2014
vlc | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Fri Jan 10 18:24:42 2014 +0100| [4573489d01e8fa72e209fa3cb03c69f82b3e609e] | committer: Felix Paul Kühne
macosx/QuincyKit: fix a few compilation warnings
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4573489d01e8fa72e209fa3cb03c69f82b3e609e
---
modules/gui/macosx/BWQuincyManager.h | 5 ++---
modules/gui/macosx/intf.m | 2 +-
2 files changed, 3 insertions(+), 4 deletions(-)
diff --git a/modules/gui/macosx/BWQuincyManager.h b/modules/gui/macosx/BWQuincyManager.h
index 82f6769..b757be1 100644
--- a/modules/gui/macosx/BWQuincyManager.h
+++ b/modules/gui/macosx/BWQuincyManager.h
@@ -94,13 +94,11 @@ typedef enum CrashReportStatus {
@protocol BWQuincyManagerDelegate <NSObject>
- at required
+ at optional
// Invoked once the modal sheets are gone
- (void) showMainApplicationWindow;
- at 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.
-(NSString *) crashReportDescription;
@@ -164,6 +162,7 @@ typedef enum CrashReportStatus {
- (NSString *) applicationName;
- (NSString *) applicationVersionString;
+- (void)setApplicationVersion:(NSString *)appVersion;
- (NSString *) applicationVersion;
@end
diff --git a/modules/gui/macosx/intf.m b/modules/gui/macosx/intf.m
index 583bd9a..f4f3ebe 100644
--- a/modules/gui/macosx/intf.m
+++ b/modules/gui/macosx/intf.m
@@ -592,7 +592,7 @@ audio_output_t *getAout(void)
#pragma mark -
#pragma mark Private
- at interface VLCMain ()
+ at interface VLCMain () <BWQuincyManagerDelegate>
- (void)removeOldPreferences;
@end
More information about the vlc-commits
mailing list