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
Network
Konqueror
Commits
2ae71f5d
Commit
2ae71f5d
authored
Dec 08, 2021
by
Laurent Montel
Browse files
This I18N_NOOP is not necessary here
parent
22bdadba
Pipeline
#107040
passed with stage
in 3 minutes and 48 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
client/kfmclient.cpp
View file @
2ae71f5d
...
...
@@ -48,7 +48,6 @@
static
const
char
appName
[]
=
"kfmclient"
;
static
const
char
programName
[]
=
I18N_NOOP
(
"kfmclient"
);
static
const
char
description
[]
=
I18N_NOOP
(
"KDE tool for opening URLs from the command line"
);
static
const
char
version
[]
=
"2.0"
;
extern
"C"
Q_DECL_EXPORT
int
kdemain
(
int
argc
,
char
**
argv
)
...
...
@@ -56,7 +55,7 @@ extern "C" Q_DECL_EXPORT int kdemain(int argc, char **argv)
QApplication
app
(
argc
,
argv
);
KAboutData
aboutData
(
appName
,
i18n
(
programName
),
QLatin1String
(
version
));
aboutData
.
setShortDescription
(
i18n
(
description
));
aboutData
.
setShortDescription
(
i18n
(
"KDE tool for opening URLs from the command line"
));
KAboutData
::
setApplicationData
(
aboutData
);
QCommandLineParser
parser
;
...
...
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