File indexing completed on 2024-05-12 05:25:24

0001 /*
0002    SPDX-FileCopyrightText: 2015-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "importexportprogressindicatorconsole.h"
0008 #include <QDebug>
0009 
0010 ImportExportProgressIndicatorConsole::ImportExportProgressIndicatorConsole(QObject *parent)
0011     : ImportExportProgressIndicatorBase(parent)
0012 {
0013 }
0014 
0015 ImportExportProgressIndicatorConsole::~ImportExportProgressIndicatorConsole() = default;
0016 
0017 void ImportExportProgressIndicatorConsole::setProgressDialogLabel(const QString &text)
0018 {
0019     Q_EMIT info(text);
0020 }
0021 
0022 void ImportExportProgressIndicatorConsole::showErrorMessage(const QString &message, const QString &title)
0023 {
0024     qDebug() << " message " << message << " title " << title;
0025 }
0026 
0027 #include "moc_importexportprogressindicatorconsole.cpp"