File indexing completed on 2024-05-19 04:48:09

0001 #include "moduleinfo.h"
0002 #include "../texteditor_version.h"
0003 #include <KI18n/KLocalizedString>
0004 
0005 QString MauiKitTextEditor::versionString()
0006 {
0007     return QStringLiteral(TextEditor_VERSION_STRING);
0008 }
0009 
0010 QString MauiKitTextEditor::buildVersion()
0011 {
0012     return GIT_BRANCH+QStringLiteral("/")+GIT_COMMIT_HASH;
0013 }
0014 
0015 KAboutComponent MauiKitTextEditor::aboutData()
0016 {
0017     return KAboutComponent(QStringLiteral("MauiKit TextEditor"),
0018                          i18n("Text editor controls."),
0019                          QStringLiteral(TextEditor_VERSION_STRING),
0020                          QStringLiteral("http://mauikit.org"),
0021                          KAboutLicense::LicenseKey::LGPL_V3);
0022 }
0023