Commit b85ca3bd authored by Don Gagne's avatar Don Gagne

Fix compile errors

parent 12980b18
......@@ -412,7 +412,7 @@ void MissionController::saveMissionToFile(void)
if (filename.isEmpty()) {
return;
}
saveMissionToFile(filename);
_saveMissionToFile(filename);
#endif
}
......@@ -424,7 +424,7 @@ void MissionController::saveMobileMissionToFile(const QString& filename)
return;
}
_saveMissionToFile(docDirs.at(0) + QDir::separator() + missionFilename);
_saveMissionToFile(docDirs.at(0) + QDir::separator() + filename);
}
void MissionController::loadMobileMissionFromFile(const QString& filename)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment