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
Education
KHangMan
Commits
d93791d9
Commit
d93791d9
authored
Nov 15, 2021
by
Laurent Montel
Browse files
Not neccessary to use I18N_NOOP here
parent
7b418163
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main.cpp
View file @
d93791d9
...
...
@@ -34,9 +34,6 @@
#include
<QQmlEngine>
#include
<QCommandLineParser>
static
const
char
description
[]
=
I18N_NOOP
(
"Classical hangman game by KDE"
);
int
main
(
int
argc
,
char
**
argv
)
{
QApplication
app
(
argc
,
argv
);
...
...
@@ -56,10 +53,10 @@ int main(int argc, char **argv)
app
.
connect
(
&
app
,
&
QGuiApplication
::
lastWindowClosed
,
&
app
,
&
QCoreApplication
::
quit
);
KAboutData
aboutData
(
I18N_NOOP
(
"khangman"
),
KAboutData
aboutData
(
QStringLiteral
(
"khangman"
),
i18n
(
"KHangMan"
),
QStringLiteral
(
KHANGMAN_VERSION_STRING
),
i18n
(
description
),
i18n
(
"Classical hangman game by KDE"
),
KAboutLicense
::
GPL
,
i18n
(
"(c) 2001-2011, Anne-Marie Mahfouf"
));
aboutData
.
addAuthor
(
i18n
(
"Primoz Anzur"
),
i18n
(
"Previous maintainer"
),
...
...
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