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
Graphics
KImageMap Editor
Commits
7d9684b1
Commit
7d9684b1
authored
Oct 08, 2022
by
Kai Uwe Broulik
🍇
Browse files
Remove I18N_NOOP usage
It's only really used in this one place, just use `i18n` directly.
parent
532637d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
main.cpp
View file @
7d9684b1
...
...
@@ -26,17 +26,13 @@
#include
"kimeshell.h"
#include
"kimagemapeditor_version.h"
static
const
char
*
description
=
I18N_NOOP
(
"An HTML imagemap editor"
);
int
main
(
int
argc
,
char
*
argv
[])
{
QApplication
app
(
argc
,
argv
);
KLocalizedString
::
setApplicationDomain
(
"kimagemapeditor"
);
KAboutData
aboutData
(
"kimagemapeditor"
,
i18n
(
"KImageMapEditor"
),
KIMAGEMAPEDITOR_VERSION_STRING
,
i18n
(
description
),
KAboutLicense
::
GPL
,
KIMAGEMAPEDITOR_VERSION_STRING
,
i18n
(
"An HTML imagemap editor"
),
KAboutLicense
::
GPL
,
i18n
(
"(c) 2001-2007 Jan Schaefer"
),
QString
(),
QStringLiteral
(
"https://kde.org/applications/development/org.kde.kimagemapeditor"
),
QStringLiteral
(
"janschaefer@users.sourceforge.net"
));
aboutData
.
addAuthor
(
i18n
(
"Jan Schaefer"
),
QString
(),
"janschaefer@users.sourceforge.net"
);
...
...
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