MCPcopy Create free account
hub / github.com/KDE/kdevelop / arguments

Method arguments

plugins/execute/executeplugin.cpp:51–63  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

49}
50
51QStringList ExecutePlugin::arguments(ILaunchConfiguration* cfg, QString& err) const
52{
53
54 if( !cfg )
55 {
56 return QStringList();
57 }
58 const auto arguments = cfg->config().readEntry(ExecutePlugin::argumentsEntry, QString{});
59
60 return splitLaunchConfigurationEntry(
61 *cfg, arguments,
62 LaunchConfigurationEntryName{"arguments", i18nc("command line arguments to an executable", "arguments")}, err);
63}
64
65
66KJob* ExecutePlugin::dependencyJob( KDevelop::ILaunchConfiguration* cfg ) const

Callers 10

NativeAppJobMethod · 0.45
startProcessMethod · 0.45
startDebuggingMethod · 0.45
initializeStartupInfoMethod · 0.45
getFileNamesMethod · 0.45
startProcessMethod · 0.45
JobMethod · 0.45
startProcessMethod · 0.45

Calls 4

QStringListClass · 0.85
readEntryMethod · 0.80
configMethod · 0.45

Tested by

no test coverage detected