1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-07-31 19:30:21 +02:00

* Style cleanup for GlobalActionManager.

This commit is contained in:
Christian Muehlhaeuser
2012-11-14 07:26:25 +01:00
parent f5ff0c4558
commit 7a64565511
2 changed files with 6 additions and 9 deletions

View File

@@ -1110,10 +1110,10 @@ GlobalActionManager::playSpotify( const QUrl& url )
return true;
}
void
GlobalActionManager::playNow( const query_ptr& q )
{
Pipeline::instance()->resolve( q, true );
m_waitingToPlay = q;
@@ -1270,10 +1270,8 @@ GlobalActionManager::postShortenFinished()
QNetworkReply* reply = qobject_cast<QNetworkReply*>( sender() );
Q_ASSERT( reply );
const QByteArray raw = reply->readAll();
qDebug() << "GOT REPLYL" << raw;
const QUrl url = QUrl::fromUserInput( raw );
qDebug() << "GOT POSTED SHORT URL:" << url.toString();
QClipboard* cb = QApplication::clipboard();
const QByteArray data = percentEncode( url );
@@ -1288,8 +1286,7 @@ GlobalActionManager::postShortenFinished()
void
GlobalActionManager::shortenLinkRequestError( QNetworkReply::NetworkError error )
{
qDebug() << Q_FUNC_INFO;
qDebug() << "Network Error: " << error;
tDebug() << Q_FUNC_INFO << "Network Error:" << error;
QNetworkReply *reply = qobject_cast<QNetworkReply*>( sender() );
@@ -1417,7 +1414,7 @@ GlobalActionManager::hostname() const
QByteArray
GlobalActionManager::percentEncode (const QUrl &url ) const
GlobalActionManager::percentEncode( const QUrl& url ) const
{
QByteArray data = url.toEncoded();

View File

@@ -51,7 +51,7 @@ public:
public slots:
void shortenLink( const QUrl& url, const QVariant &callbackObj = QVariant() );
#ifndef ENABLE_HEADLESS
/// Takes a spotify link and performs the default open action on it
@@ -96,7 +96,7 @@ private slots:
void playlistReadyToShow();
void xspfCreated( const QByteArray& xspf );
void playOrQueueNow( const Tomahawk::query_ptr& );
void playNow( const Tomahawk::query_ptr& );
#endif
@@ -115,7 +115,7 @@ private:
bool handleAutoPlaylistCommand( const QUrl& url );
bool handleImportCommand( const QUrl& url );
bool doQueueAdd( const QStringList& parts, const QList< QPair< QString, QString > >& queryItems );
bool playSpotify( const QUrl& url );
bool queueSpotify( const QStringList& parts, const QList< QPair< QString, QString > >& queryItems );
bool playRdio( const QUrl& url );