From bac99313727a7be5ba57f2aebb68d2cae26855e6 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Sun, 19 Oct 2014 10:21:47 +0200 Subject: [PATCH] Create IndexStatusManager in JobStatusView. --- src/libtomahawk/jobview/JobStatusView.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/libtomahawk/jobview/JobStatusView.cpp b/src/libtomahawk/jobview/JobStatusView.cpp index ec69988f3..0797fdda9 100644 --- a/src/libtomahawk/jobview/JobStatusView.cpp +++ b/src/libtomahawk/jobview/JobStatusView.cpp @@ -1,6 +1,6 @@ /* === This file is part of Tomahawk Player - === * - * Copyright 2010-2011, Christian Muehlhaeuser + * Copyright 2010-2014, Christian Muehlhaeuser * Copyright 2011, Leo Franchi * * Tomahawk is free software: you can redistribute it and/or modify @@ -26,6 +26,7 @@ #include "JobStatusDelegate.h" #include "utils/Logger.h" #include "Source.h" +#include "IndexingJobItem.h" #include "PipelineStatusItem.h" #include "TransferStatusItem.h" #include "LatchedStatusItem.h" @@ -92,6 +93,7 @@ JobStatusView::JobStatusView( AnimatedSplitter* parent ) m_view->setAttribute( Qt::WA_MacShowFocusRect, 0 ); m_view->setUniformItemSizes( false ); + new IndexStatusManager( this ); new PipelineStatusManager( this ); new TransferStatusManager( this ); new LatchedStatusManager( this );