From 8ba4cb66eaa7b4ccdbb89f23d25193e950c3081e Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Tue, 5 Jun 2012 09:10:56 +0100 Subject: [PATCH] Declare method as well --- src/TomahawkApp.cpp | 2 +- src/libtomahawk/mac/FileHelpers.h | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/TomahawkApp.cpp b/src/TomahawkApp.cpp index d95e24840..0b46c7f1e 100644 --- a/src/TomahawkApp.cpp +++ b/src/TomahawkApp.cpp @@ -328,7 +328,7 @@ TomahawkApp::init() connect( r, SIGNAL( finished() ), this, SLOT( spotifyApiCheckFinished() ) ); #endif -#ifdef Q_WS_MAC +#ifdef Q_OS_MAC // Make sure to do this after main window is inited Tomahawk::enableFullscreen( m_mainwindow ); #endif diff --git a/src/libtomahawk/mac/FileHelpers.h b/src/libtomahawk/mac/FileHelpers.h index 5c0d46803..ad5fb49d0 100644 --- a/src/libtomahawk/mac/FileHelpers.h +++ b/src/libtomahawk/mac/FileHelpers.h @@ -33,6 +33,8 @@ // Will be asynchronous: Implement the delegate protocol know about the completion + (void) moveFile:(NSString *)source to:(NSString*)dest withDelegate:delegate; +// Internal ++ (void)notifyDelegate:(NSDictionary *)info; @end