Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Games
KReversi
Commits
cba42992
Commit
cba42992
authored
Sep 16, 2020
by
Friedrich W. H. Kossebau
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
No more need for I18N_NOOP string juggling
GIT_SILENT
parent
ff5679aa
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
main.cpp
main.cpp
+3
-3
No files found.
main.cpp
View file @
cba42992
...
@@ -35,8 +35,6 @@
...
@@ -35,8 +35,6 @@
#include "highscores.h"
#include "highscores.h"
#include "mainwindow.h"
#include "mainwindow.h"
static
const
char
description
[]
=
I18N_NOOP
(
"KDE Reversi Board Game"
);
int
main
(
int
argc
,
char
**
argv
)
int
main
(
int
argc
,
char
**
argv
)
{
{
// Fixes blurry icons with fractional scaling
// Fixes blurry icons with fractional scaling
...
@@ -49,7 +47,9 @@ int main(int argc, char **argv)
...
@@ -49,7 +47,9 @@ int main(int argc, char **argv)
KLocalizedString
::
setApplicationDomain
(
"kreversi"
);
KLocalizedString
::
setApplicationDomain
(
"kreversi"
);
KAboutData
aboutData
(
QStringLiteral
(
"kreversi"
),
i18n
(
"KReversi"
),
KAboutData
aboutData
(
QStringLiteral
(
"kreversi"
),
i18n
(
"KReversi"
),
QStringLiteral
(
"2.1"
),
i18n
(
description
),
KAboutLicense
::
GPL
,
QStringLiteral
(
"2.1"
),
i18n
(
"KDE Reversi Board Game"
),
KAboutLicense
::
GPL
,
i18n
(
"(c) 1997-2000, Mario Weilguni
\n
(c) 2004-2006, Inge Wallin
\n
(c) 2006, Dmitry Suzdalev"
),
i18n
(
"(c) 1997-2000, Mario Weilguni
\n
(c) 2004-2006, Inge Wallin
\n
(c) 2006, Dmitry Suzdalev"
),
QString
(),
i18n
(
"https://kde.org/applications/games/org.kde.kreversi"
));
QString
(),
i18n
(
"https://kde.org/applications/games/org.kde.kreversi"
));
aboutData
.
addAuthor
(
i18n
(
"Mario Weilguni"
),
i18n
(
"Original author"
),
QStringLiteral
(
"mweilguni@sime.com"
));
aboutData
.
addAuthor
(
i18n
(
"Mario Weilguni"
),
i18n
(
"Original author"
),
QStringLiteral
(
"mweilguni@sime.com"
));
...
...
Write
Preview
Markdown
is supported
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