1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-02-22 19:05:05 +01:00

Remove unused, stylefix

This commit is contained in:
Hugo Lindström 2013-04-01 19:06:42 +02:00
parent 100f08b0b8
commit 49be0e77cf
2 changed files with 3 additions and 7 deletions

View File

@ -62,7 +62,6 @@ WhatsHotWidget::WhatsHotWidget( QWidget* parent )
, m_spinner( 0 )
, m_loading( true )
{
qDebug() << Q_FUNC_INFO;
ui->setupUi( this );
TomahawkUtils::unmarginLayout( layout() );
@ -217,7 +216,7 @@ WhatsHotWidget::infoSystemInfo( Tomahawk::InfoSystem::InfoRequestData requestDat
{
case InfoSystem::InfoChartCapabilities:
{
setViewData(returnedData);
setViewData( returnedData );
}
case InfoSystem::InfoChart:
{
@ -374,7 +373,6 @@ WhatsHotWidget::infoSystemFinished( QString target )
{
if ( target != s_whatsHotIdentifier )
{
tDebug(LOGVERBOSE) << Q_FUNC_INFO << "Bad target" << target << s_whatsHotIdentifier;
return;
}

View File

@ -96,7 +96,7 @@ private:
void setLeftViewArtists( TreeModel* artistModel );
void setLeftViewAlbums( PlayableModel* albumModel );
void setLeftViewTracks( PlaylistModel* trackModel );
void setViewData(const QVariantMap &data);
void setViewData( const QVariantMap& data );
QStandardItem* parseNode( QStandardItem* parentItem, const QString& label, const QVariant& data );
@ -118,11 +118,9 @@ private:
QHash< QString, PlaylistModel* > m_trackModels;
QString m_queueItemToShow;
QSet< QString > m_queuedFetches;
QTimer* m_timer;
QMap<QString, QVariant> m_currentVIds;
AnimatedSpinner *m_spinner;
QList<QVariantMap> m_charts;
AnimatedSpinner* m_spinner;
bool m_loading;
friend class Tomahawk::ChartsPlaylistInterface;
};