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
Utilities
KTimer
Commits
eae28836
Commit
eae28836
authored
Nov 14, 2021
by
Laurent Montel
Browse files
Not neccessary to use I18N_NOOP here
parent
51760ca4
Pipeline
#97440
passed with stage
in 24 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
main.cpp
View file @
eae28836
...
...
@@ -27,9 +27,6 @@
#include
"ktimer.h"
#include
<config-ktimer.h>
static
const
char
description
[]
=
I18N_NOOP
(
"KDE Timer"
);
int
main
(
int
argc
,
char
**
argv
)
{
QApplication
app
(
argc
,
argv
);
...
...
@@ -45,7 +42,7 @@ int main( int argc, char **argv )
KLocalizedString
::
setApplicationDomain
(
"ktimer"
);
KAboutData
aboutData
(
QStringLiteral
(
"ktimer"
),
i18n
(
"KTimer"
),
QStringLiteral
(
KTIMER_VERSION
),
i18n
(
description
),
KAboutLicense
::
GPL
,
QStringLiteral
(
KTIMER_VERSION
),
i18n
(
"KDE Timer"
),
KAboutLicense
::
GPL
,
i18n
(
"(c) 2001, Stefan Schimanski"
),
QStringLiteral
(
"https://utils.kde.org/projects/ktimer/"
));
aboutData
.
addAuthor
(
i18n
(
"Stefan Schimanski"
),
QString
(),
QStringLiteral
(
"schimmi@kde.org"
));
...
...
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