Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Games
KSudoku
Commits
a488b7dd
Commit
a488b7dd
authored
Nov 14, 2021
by
Laurent Montel
😁
Browse files
not necessary to use I18N_NOOP here
parent
220cd869
Pipeline
#97434
passed with stage
in 43 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/main.cpp
View file @
a488b7dd
...
...
@@ -37,9 +37,6 @@
#include <ctime>
static
const
char
description
[]
=
I18N_NOOP
(
"KSudoku - Sudokus and more"
);
int
main
(
int
argc
,
char
**
argv
)
{
qsrand
(
std
::
time
(
nullptr
));
...
...
@@ -51,7 +48,7 @@ int main(int argc, char **argv)
KAboutData
about
(
QStringLiteral
(
"ksudoku"
),
i18n
(
"KSudoku"
),
QLatin1String
(
KSUDOKU_VERSION_STRING
),
i18n
(
description
),
i18n
(
"KSudoku - Sudokus and more"
),
KAboutLicense
::
GPL_V2
,
i18n
(
"(c) 2005-2007 The KSudoku Authors"
),
QString
(),
QStringLiteral
(
"https://games.kde.org/games/ksudoku"
));
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a 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