From af49afac353c989322c5a109d2dad6d494060b2a Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Sun, 1 May 2011 03:01:34 -0400 Subject: [PATCH] work around isLocalFile not existing --- src/globalactionmanager.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/globalactionmanager.cpp b/src/globalactionmanager.cpp index db20bd663..4d17ea492 100644 --- a/src/globalactionmanager.cpp +++ b/src/globalactionmanager.cpp @@ -169,7 +169,8 @@ GlobalActionManager::handleQueueCommand( const QUrl& url ) if( pair.first != "url" ) continue; QUrl track = QUrl::fromUserInput( pair.second ); - if( track.isLocalFile() ) { // it's local, so we see if it's in the DB and load it if so + //FIXME: isLocalFile is part of KUrl, not QUrl + if( false /*track.isLocalFile()*/ ) { // it's local, so we see if it's in the DB and load it if so // TODO } else { // give it a web result hint // TODO actually read the tags