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
Plasma
Plasma Workspace
Commits
0b438a89
Commit
0b438a89
authored
Mar 06, 2022
by
Volker Krause
Committed by
Nate Graham
Mar 08, 2022
Browse files
Port the last bits away from I18N_NOOP
parent
5290d8e6
Pipeline
#147071
passed with stage
in 13 minutes and 26 seconds
Changes
1
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
ksmserver/main.cpp
View file @
0b438a89
...
...
@@ -35,7 +35,6 @@
#include
<X11/extensions/Xrender.h>
static
const
char
version
[]
=
"0.4"
;
static
const
char
description
[]
=
I18N_NOOP
(
"The reliable Plasma session manager that talks the standard X11R6
\n
session management protocol (XSMP)."
);
Display
*
dpy
=
nullptr
;
Colormap
colormap
=
0
;
...
...
@@ -230,7 +229,7 @@ int main(int argc, char *argv[])
a
->
setQuitOnLastWindowClosed
(
false
);
// #169486
QCommandLineParser
parser
;
parser
.
setApplicationDescription
(
i18n
(
description
));
parser
.
setApplicationDescription
(
i18n
(
"The reliable Plasma session manager that talks the standard X11R6
\n
session management protocol (XSMP)."
));
parser
.
addHelpOption
();
parser
.
addVersionOption
();
...
...
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