zwischenstand

This commit is contained in:
Tristan Krause 2019-05-15 16:35:47 +02:00
parent c200f5da63
commit 7a1efabe49
5 changed files with 50 additions and 170 deletions

View file

@ -192,7 +192,7 @@ void PlottyFile::writeToFile(std::string filename)
void PlottyFile::startPlotty(std::string filename)
{
int code = system(("./plotty --in " + filename).c_str());
int code = system(("plotty --in " + filename).c_str());
if(code)
throw std::runtime_error("Fehler beim Aufruf von plotty");
}