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
SDK
KDE Development Scripts
Commits
8c1e6838
Commit
8c1e6838
authored
Jul 27, 2014
by
David Faure
Browse files
KAboutData::setApplicationData takes care of doing all this already
CCMAIL: montel@kde.org
parent
d55a4358
Changes
1
Hide whitespace changes
Inline
Side-by-side
kf5/convert-kcmdlineargs.pl
View file @
8c1e6838
...
...
@@ -58,25 +58,21 @@ foreach my $file (@ARGV) {
}
if
(
/KCmdLineOptions (\w*)/
)
{
$opt
=
$
1
;
s/KCmdLineOptions /QCommandLineParser /
;
s/$opt/parser/
;
if
(
defined
$QCommandLineParserAdded
)
{
$_
=
"";
}
else
{
if
(
defined
$port_kapplicationAndK4AboutData
)
{
$_
.=
"
QApplication app(argc, argv);
\n
";
$_
.=
"
QApplication app(argc, argv);
\n
";
$_
.=
"
KAboutData::setApplicationData(aboutData);
\n
";
$_
.=
"
app.setApplicationName(aboutData.componentName());
\n
";
$_
.=
"
app.setApplicationDisplayName(aboutData.displayName());
\n
";
$_
.=
"
app.setOrganizationDomain(aboutData.organizationDomain());
\n
";
$_
.=
"
app.setApplicationVersion(aboutData.version());
\n
";
}
$_
.=
"
parser.addVersionOption();
\n
";
$_
.=
"
parser.addHelpOption();
\n
";
if
(
defined
$use_aboutdata
)
{
$_
.=
"
//PORTING SCRIPT: adapt aboutdata variable if necessary
\n
";
$_
.=
"
aboutData.setupCommandLine(&parser);
\n
";
$_
.=
"
aboutData.setupCommandLine(&parser);
\n
";
}
$_
.=
"
parser.process(app);
\n
";
if
(
defined
$use_aboutdata
)
{
...
...
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