diff --git a/words/app/main.cpp b/words/app/main.cpp index f4208a1633b..b49c1b0d168 100644 --- a/words/app/main.cpp +++ b/words/app/main.cpp @@ -1,52 +1,59 @@ /* This file is part of the KDE project Copyright (C) 1998, 1999 Reginald Stadlbauer 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 #include #include +#include #include extern "C" WORDS_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" calligrawords * * See: http://doc.qt.io/qt-5/qloggingcategory.html */ QLoggingCategory::setFilterRules("calligra.*.debug=false\n" "calligra.*.warning=true"); KAboutData* aboutData = newWordsAboutData(); KoApplication app(WORDS_MIME_TYPE, QStringLiteral("calligrawords"), *aboutData, argc, argv); delete aboutData; + // Migrate data from kde4 to kf5 locations + Calligra2Migration m("calligrawords", "words"); + m.setConfigFiles(QStringList() << QStringLiteral("wordsrc")); + m.setUiFiles(QStringList() << QStringLiteral("words.rc") << QStringLiteral("words_readonly.rc")); + m.migrate(); + if (!app.start()) { return 1; } return app.exec(); }