Merge pull request #26373 from ksooo/app-fix-multi-resolve-playback
[xbmc.git] / xbmc / music / jobs / MusicLibraryProgressJob.cpp
blobd07e85b05354b7ea664d6ccc180fdfbf477cbb26
1 /*
2 * Copyright (C) 2017-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #include "MusicLibraryProgressJob.h"
11 CMusicLibraryProgressJob::CMusicLibraryProgressJob(CGUIDialogProgressBarHandle* progressBar)
12 : CProgressJob(progressBar)
13 { }
15 CMusicLibraryProgressJob::~CMusicLibraryProgressJob() = default;
17 bool CMusicLibraryProgressJob::DoWork()
19 bool result = CMusicLibraryJob::DoWork();
21 MarkFinished();
23 return result;