Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
KReversi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
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 @@
#include "highscores.h"
#include "mainwindow.h"
static
const
char
description
[]
=
I18N_NOOP
(
"KDE Reversi Board Game"
);
int
main
(
int
argc
,
char
**
argv
)
{
// Fixes blurry icons with fractional scaling
...
...
@@ -49,7 +47,9 @@ int main(int argc, char **argv)
KLocalizedString
::
setApplicationDomain
(
"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"
),
QString
(),
i18n
(
"https://kde.org/applications/games/org.kde.kreversi"
));
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