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
Graphics
KColorChooser
Commits
6d688861
Commit
6d688861
authored
Nov 14, 2021
by
Laurent Montel
😁
Browse files
Not neccessary to use I18N_NOOP here
parent
98b5213b
Pipeline
#97448
passed with stage
in 29 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
kcolorchooser.cpp
View file @
6d688861
...
...
@@ -38,8 +38,6 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include <iostream>
static
const
char
description
[]
=
I18N_NOOP
(
"KDE Color Chooser"
);
int
main
(
int
argc
,
char
*
argv
[])
{
QCoreApplication
::
setAttribute
(
Qt
::
AA_EnableHighDpiScaling
,
true
);
...
...
@@ -51,7 +49,7 @@ int main(int argc, char *argv[])
KAboutData
aboutData
(
QStringLiteral
(
"kcolorchooser"
),
i18n
(
"KColorChooser"
),
QStringLiteral
(
KCOLORCHOOSER_VERSION_STRING
),
i18n
(
description
),
i18n
(
"KDE Color Chooser"
),
KAboutLicense
::
BSDL
,
i18n
(
"(c) 2000, Waldo Bastian"
));
aboutData
.
addAuthor
(
i18n
(
"Waldo Bastian"
),
QString
(),
QStringLiteral
(
"bastian@kde.org"
));
...
...
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