diff --git a/core/notes/importnotesjobinterface.h b/core/notes/importnotesjobinterface.h index a267af3..7a87a77 100644 --- a/core/notes/importnotesjobinterface.h +++ b/core/notes/importnotesjobinterface.h @@ -1,47 +1,47 @@ /* Copyright (C) 2013-2020 Laurent Montel This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #ifndef IMPORTNOTESJOB_H #define IMPORTNOTESJOB_H #include "abstractimportexportjob.h" #include "pimdataexportercore_private_export.h" class ArchiveStorage; class PIMDATAEXPORTER_TESTS_EXPORT ImportNotesJobInterface : public AbstractImportExportJob { Q_OBJECT public: explicit ImportNotesJobInterface(QObject *parent, Utils::StoredTypes typeSelected, ArchiveStorage *archiveStorage, int numberOfStep); ~ImportNotesJobInterface() override; void start() override; protected: virtual void synchronizeResource(const QStringList &lst) = 0; virtual Q_REQUIRED_RESULT QString adaptResourcePath(const KSharedConfigPtr &resourceConfig, const QString &storedData) = 0; void slotNextStep() override; private: Q_REQUIRED_RESULT bool isAConfigFile(const QString &name) const override; - void importKNoteGlobalSettings(const KArchiveFile *kmailsnippet, const QString &kmail2rc, const QString &filename, const QString &prefix); + void importKNoteGlobalSettings(const KArchiveFile *kmailsnippet, const QString &configrc, const QString &filename, const QString &prefix); void restoreConfig(); void restoreData(); void restoreResources(); }; #endif // IMPORTNOTESJOB_H