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
Multimedia
KMix
Commits
724f5b9a
Commit
724f5b9a
authored
Nov 16, 2021
by
Laurent Montel
😁
Browse files
not necessary to use I18N_NOOP here
parent
d4956d90
Changes
2
Hide whitespace changes
Inline
Side-by-side
apps/kmixctrl.cpp
View file @
724f5b9a
...
...
@@ -31,9 +31,6 @@
#include "settings.h"
static
const
char
description
[]
=
I18N_NOOP
(
"kmixctrl - kmix volume save/restore utility"
);
int
main
(
int
argc
,
char
*
argv
[])
{
QCoreApplication
app
(
argc
,
argv
);
...
...
@@ -41,7 +38,7 @@ int main(int argc, char *argv[])
KLocalizedString
::
setApplicationDomain
(
"kmix"
);
KAboutData
aboutData
(
"kmixctrl"
,
i18n
(
"KMixCtrl"
),
KMIX_VERSION
,
i18n
(
description
),
KMIX_VERSION
,
i18n
(
"kmixctrl - kmix volume save/restore utility"
),
KAboutLicense
::
GPL
,
i18n
(
"(c) 2000 by Stefan Schimanski"
));
...
...
apps/main.cpp
View file @
724f5b9a
...
...
@@ -29,9 +29,6 @@
#include "kmixapp.h"
#include "kmix_debug.h"
static
const
char
description
[]
=
I18N_NOOP
(
"KMix - KDE's full featured mini mixer"
);
int
main
(
int
argc
,
char
*
argv
[])
{
QCoreApplication
::
setAttribute
(
Qt
::
AA_UseHighDpiPixmaps
);
...
...
@@ -41,7 +38,7 @@ int main(int argc, char *argv[])
KLocalizedString
::
setApplicationDomain
(
"kmix"
);
KAboutData
aboutData
(
"kmix"
,
i18n
(
"KMix"
),
KMIX_VERSION
,
i18n
(
description
),
KAboutLicense
::
GPL
,
KMIX_VERSION
,
i18n
(
"KMix - KDE's full featured mini mixer"
),
KAboutLicense
::
GPL
,
i18n
(
"(c) 1996-2013 The KMix Authors"
));
// Author Policy: Long-term maintainers and backend writers/maintainers go in the Authors list.
...
...
Write
Preview
Markdown
is supported
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