#4285 Octave : Rename to absoluteFileName

This commit is contained in:
Magne Sjaastad
2019-04-04 21:18:20 +02:00
parent b8ff8a2de8
commit fd774bec39
8 changed files with 11 additions and 11 deletions

View File

@@ -58,7 +58,7 @@ void RicEditScriptFeature::onActionTriggered(bool isChecked)
if (!scriptEditor.isEmpty())
{
QStringList arguments;
arguments << calcScript->absolutePath;
arguments << calcScript->absoluteFileName;
QProcess* myProcess = new QProcess(this);
myProcess->start(scriptEditor, arguments);

View File

@@ -61,13 +61,13 @@ void RicExecuteScriptFeature::onActionTriggered(bool isChecked)
{
// TODO: Must rename RimCalcScript::absolutePath to absoluteFileName, as the code below is confusing
// absolutePath() is a function in QFileInfo
QFileInfo fi(calcScript->absolutePath());
QFileInfo fi(calcScript->absoluteFileName());
QString octaveFunctionSearchPath = fi.absolutePath();
QStringList arguments = app->octaveArguments();
arguments.append("--path");
arguments << octaveFunctionSearchPath;
arguments << calcScript->absolutePath();
arguments << calcScript->absoluteFileName();
RiaApplication::instance()->launchProcess(octavePath, arguments);
}

View File

@@ -63,7 +63,7 @@ void RicNewScriptFeature::onActionTriggered(bool isChecked)
if (calcScript)
{
QFileInfo existingScriptFileInfo(calcScript->absolutePath());
QFileInfo existingScriptFileInfo(calcScript->absoluteFileName());
fullPathNewScript = existingScriptFileInfo.absolutePath();
}
else if (scriptColl)