diff --git a/sheets/part/Main.cpp b/sheets/part/Main.cpp index 461f48eb996..ef5d345bd11 100644 --- a/sheets/part/Main.cpp +++ b/sheets/part/Main.cpp @@ -1,59 +1,66 @@ /* This file is part of the KDE project Copyright (C) 1998, 1999 Torben Weis This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "AboutData.h" #include "DocBase.h" #include "sheets_common_export.h" #include +#include #include using namespace Calligra::Sheets; extern "C" CALLIGRA_SHEETS_COMMON_EXPORT int kdemain(int argc, char **argv) { /** * Disable debug output by default, only log warnings. * Debug logs can be controlled by the environment variable QT_LOGGING_RULES. * * For example, to get full debug output, run the following: * QT_LOGGING_RULES="calligra.*=true" calligrasheets * * See: http://doc.qt.io/qt-5/qloggingcategory.html */ QLoggingCategory::setFilterRules("calligra.*.debug=false\n" "calligra.*.warning=true"); KAboutData* aboutData = newAboutData(); // QT5TODO: support custom options // options.add("scriptfile ", ki18n("Execute the scriptfile after startup.")); KoApplication app(SHEETS_MIME_TYPE, QStringLiteral("calligrasheets"), *aboutData, argc, argv); delete aboutData; + // Migrate data from kde4 to kf5 locations + Calligra2Migration m("calligrasheets", "sheets"); + m.setConfigFiles(QStringList() << QStringLiteral("sheetsrc")); + m.setUiFiles(QStringList() << QStringLiteral("sheets.rc") << QStringLiteral("sheets_readonly.rc")); + m.migrate(); + if (!app.start()) { return 1; } return app.exec(); }