// Copyright (C) 2016 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include "progressmanager_p.h" void Core::Internal::ProgressManagerPrivate::initInternal() { } void Core::Internal::ProgressManagerPrivate::cleanup() { } void Core::Internal::ProgressManagerPrivate::doSetApplicationLabel(const QString &text) { Q_UNUSED(text) } void Core::Internal::ProgressManagerPrivate::setApplicationProgressRange(int min, int max) { Q_UNUSED(min) Q_UNUSED(max) } void Core::Internal::ProgressManagerPrivate::setApplicationProgressValue(int value) { Q_UNUSED(value) } void Core::Internal::ProgressManagerPrivate::setApplicationProgressVisible(bool visible) { Q_UNUSED(visible) }