File indexing completed on 2024-04-21 04:48:58

0001 /*
0002    SPDX-FileCopyrightText: 2018 (c) Matthieu Gallien <matthieu_gallien@yahoo.fr>
0003 
0004    SPDX-License-Identifier: LGPL-3.0-or-later
0005  */
0006 
0007 #include "elisaimportapplication.h"
0008 
0009 #include <QCoreApplication>
0010 
0011 ElisaImportApplication::ElisaImportApplication(QObject *parent) : QObject(parent)
0012 {
0013 }
0014 
0015 void ElisaImportApplication::indexingChanged()
0016 {
0017     static bool firstCall = true;
0018 
0019     if (firstCall) {
0020         firstCall = false;
0021     } else {
0022         QCoreApplication::quit();
0023     }
0024 }
0025 
0026 
0027 #include "moc_elisaimportapplication.cpp"