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

Move assignment to constructor

This commit is contained in:
Uwe L. Korn 2014-10-27 16:43:06 +01:00
parent b358edbed2
commit faeabada6a

@ -27,8 +27,8 @@ using namespace Tomahawk::Widgets;
PlaylistWidget::PlaylistWidget( QWidget* parent )
: QListView( parent )
, m_overlay( new OverlayWidget( this ) )
{
m_overlay = new OverlayWidget( this );
new LoadingSpinner( this );
}