Example #1
0
void ProjectNode::showCmdLineDialog()
{
    CmdLineEditDialog dlg;
    dlg.setCurrentCmdLine(getCommandLine());

    if( dlg.exec() == QDialog::Accepted)
    {
        setCommandLine(dlg.getResult());
    }
}
/*! \param vLine command line */
kScriptCommandObject::kScriptCommandObject(string vLine)
{
	setCommandLine(vLine);
	//parseStr(vLine);
}
Example #3
0
CasmTask2::CasmTask2(const string &s, const string &setupFilePath)
	: m_setupFile(setupFilePath)
{
	setCommandLine(s);
}