Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Games
Knights
Commits
61a38d9a
Commit
61a38d9a
authored
Nov 15, 2021
by
Laurent Montel
Browse files
Not neccessary to use I18N_NOOP here
parent
6db64671
Pipeline
#97944
passed with stage
in 1 minute and 4 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/main.cpp
View file @
61a38d9a
...
...
@@ -38,7 +38,6 @@
#include
<QApplication>
#include
<QCommandLineParser>
static
const
char
description
[]
=
I18N_NOOP
(
"KDE Chess Board"
);
static
QString
version
=
QStringLiteral
(
"2.6.0"
);
int
main
(
int
argc
,
char
**
argv
)
{
...
...
@@ -51,7 +50,7 @@ int main ( int argc, char **argv ) {
KAboutData
about
(
QStringLiteral
(
"knights"
),
i18n
(
"Knights"
),
QStringLiteral
(
KNIGHTS_VERSION_STRING
),
i18n
(
description
),
i18n
(
"KDE Chess Board"
),
KAboutLicense
::
GPL
,
i18n
(
"(C) 2016-2017 Alexander Semke, 2009-2011 Miha Čančula"
));
about
.
addAuthor
(
i18n
(
"Alexander Semke"
),
QString
(),
QStringLiteral
(
"alexander.semke@web.de"
));
about
.
addAuthor
(
i18n
(
"Miha Čančula"
),
QString
(),
QStringLiteral
(
"miha@noughmad.eu"
),
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment