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
Bovo
Commits
f86aa73c
Commit
f86aa73c
authored
Nov 18, 2021
by
Laurent Montel
😁
Browse files
Not necessary to use I18N_NOOP
parent
f3410422
Pipeline
#98701
passed with stage
in 36 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
gui/main.cc
View file @
f86aa73c
...
...
@@ -30,9 +30,6 @@
#include
"mainwindow.h"
#include
"bovo_version.h"
static
const
char
description
[]
=
I18N_NOOP
(
"KDE Five in a Row Board Game"
);
static
const
char
copyleft
[]
=
I18N_NOOP
(
"(c) 2002-2007, Aron Boström"
);
using
namespace
gui
;
int
main
(
int
argc
,
char
**
argv
)
{
...
...
@@ -48,8 +45,8 @@ int main(int argc, char **argv) {
KLocalizedString
::
setApplicationDomain
(
"bovo"
);
KAboutData
aboutData
(
QStringLiteral
(
"bovo"
),
i18n
(
"Bovo"
),
QStringLiteral
(
BOVO_VERSION_STRING
),
i18n
(
description
),
KAboutLicense
::
GPL
,
i18n
(
copyleft
),
QString
(),
QStringLiteral
(
"https://kde.org/applications/games/org.kde.bovo"
));
QStringLiteral
(
BOVO_VERSION_STRING
),
i18n
(
"KDE Five in a Row Board Game"
),
KAboutLicense
::
GPL
,
i18n
(
"(c) 2002-2007, Aron Boström"
),
QString
(),
QStringLiteral
(
"https://kde.org/applications/games/org.kde.bovo"
));
aboutData
.
addAuthor
(
i18n
(
"Aron Boström"
),
i18n
(
"Author"
),
QStringLiteral
(
"aron.bostrom@gmail.com"
));
...
...
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