1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-06 14:16:32 +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();