Merge pull request #26273 from 78andyp/blurayfixes2
[xbmc.git] / xbmc / video / jobs / VideoLibraryProgressJob.cpp
blob0aab52493d94a62e6e4ae739c21358171e033a42
1 /*
2 * Copyright (C) 2014-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 "VideoLibraryProgressJob.h"
11 CVideoLibraryProgressJob::CVideoLibraryProgressJob(CGUIDialogProgressBarHandle* progressBar)
12 : CProgressJob(progressBar)
13 { }
15 CVideoLibraryProgressJob::~CVideoLibraryProgressJob() = default;
17 bool CVideoLibraryProgressJob::DoWork()
19 bool result = CVideoLibraryJob::DoWork();
21 MarkFinished();
23 return result;