MauiKit TextEditor

moduleinfo.cpp
1#include "moduleinfo.h"
2#include "../texteditor_version.h"
3#include <KLocalizedString>
4
5QString MauiKitTextEditor::versionString()
6{
7 return QStringLiteral(TextEditor_VERSION_STRING);
8}
9
10QString MauiKitTextEditor::buildVersion()
11{
12 return GIT_BRANCH+QStringLiteral("/")+GIT_COMMIT_HASH;
13}
14
15KAboutComponent MauiKitTextEditor::aboutData()
16{
17 return KAboutComponent(QStringLiteral("MauiKit TextEditor"),
18 i18n("Text editor controls."),
19 QStringLiteral(TextEditor_VERSION_STRING),
20 QStringLiteral("http://mauikit.org"),
21 KAboutLicense::LicenseKey::LGPL_V3);
22}
23
QString i18n(const char *text, const TYPE &arg...)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Fri Aug 30 2024 11:55:01 by doxygen 1.12.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.