File indexing completed on 2024-12-22 04:52:48

0001 /*
0002    SPDX-FileCopyrightText: 2017-2024 Laurent Montel <montel@kde.org>
0003 
0004    SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 
0007 #include "abstractdisplayinfo.h"
0008 
0009 using namespace LibImportWizard;
0010 
0011 AbstractDisplayInfo::AbstractDisplayInfo() = default;
0012 
0013 void AbstractDisplayInfo::calendarImportError(const QString &log)
0014 {
0015     Q_UNUSED(log)
0016 }
0017 
0018 void AbstractDisplayInfo::settingsImportError(const QString &log)
0019 {
0020     Q_UNUSED(log)
0021 }
0022 
0023 void AbstractDisplayInfo::addressbookImportError(const QString &log)
0024 {
0025     Q_UNUSED(log)
0026 }
0027 
0028 void AbstractDisplayInfo::filterImportError(const QString &log)
0029 {
0030     Q_UNUSED(log)
0031 }
0032 
0033 void AbstractDisplayInfo::calendarImportInfo(const QString &log)
0034 {
0035     Q_UNUSED(log)
0036 }
0037 
0038 void AbstractDisplayInfo::settingsImportInfo(const QString &log)
0039 {
0040     Q_UNUSED(log)
0041 }
0042 
0043 void AbstractDisplayInfo::addressbookImportInfo(const QString &log)
0044 {
0045     Q_UNUSED(log)
0046 }
0047 
0048 void AbstractDisplayInfo::filterImportInfo(const QString &log)
0049 {
0050     Q_UNUSED(log)
0051 }
0052 
0053 QWidget *AbstractDisplayInfo::parentWidget() const
0054 {
0055     return nullptr;
0056 }
0057 
0058 void AbstractDisplayInfo::initializeFilter(MailImporter::Filter &filter)
0059 {
0060     Q_UNUSED(filter)
0061 }