1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-13 17:43:59 +02:00

* Style fixes.

This commit is contained in:
Christian Muehlhaeuser
2013-06-20 09:31:03 +02:00
committed by Michael Zanetti
parent 277edfe8ca
commit 21beba0881
2 changed files with 9 additions and 2 deletions

View File

@@ -429,36 +429,42 @@ Result::sourceIcon( TomahawkUtils::ImageMode style, const QSize& desiredSize ) c
} }
} }
unsigned int unsigned int
Result::bitrate() const Result::bitrate() const
{ {
return m_bitrate; return m_bitrate;
} }
unsigned int unsigned int
Result::size() const Result::size() const
{ {
return m_size; return m_size;
} }
unsigned int unsigned int
Result::modificationTime() const Result::modificationTime() const
{ {
return m_modtime; return m_modtime;
} }
void void
Result::setScore( float score ) Result::setScore( float score )
{ {
m_score = score; m_score = score;
} }
void void
Result::setFileId(unsigned int id) Result::setFileId( unsigned int id )
{ {
m_fileId = id; m_fileId = id;
} }
Tomahawk::Resolver* Tomahawk::Resolver*
Result::resolvedBy() const Result::resolvedBy() const
{ {

View File

@@ -93,6 +93,8 @@ WhatsHotWidget::WhatsHotWidget( QWidget* parent )
ui->artistsViewLeft->setHorizontalScrollBarPolicy( Qt::ScrollBarAlwaysOff ); ui->artistsViewLeft->setHorizontalScrollBarPolicy( Qt::ScrollBarAlwaysOff );
ui->artistsViewLeft->header()->setVisible( true ); ui->artistsViewLeft->header()->setVisible( true );
// ui->albumsView->setStyleSheet( QString( "QListView { background-color: black; }" ) );
m_workerThread = new QThread( this ); m_workerThread = new QThread( this );
m_workerThread->start(); m_workerThread->start();
@@ -117,7 +119,6 @@ WhatsHotWidget::WhatsHotWidget( QWidget* parent )
ui->stackLeft->setCurrentIndex( 2 ); ui->stackLeft->setCurrentIndex( 2 );
m_spinner = new AnimatedSpinner( ui->albumsView ); m_spinner = new AnimatedSpinner( ui->albumsView );
m_spinner->fadeIn(); m_spinner->fadeIn();
} }