remove unused argument

This commit is contained in:
Axel Kohlmeyer
2024-08-20 23:55:35 -04:00
parent b65c92e2bb
commit 2746ec609f
3 changed files with 3 additions and 5 deletions

View File

@ -823,8 +823,7 @@ void LammpsGui::inspect_file(const QString &fileName)
dataviewer->show();
ilist->data = dataviewer;
QFile(infodata).remove();
auto *inspect_image = new ImageViewer(
fileName, &lammps, QString("LAMMPS-GUI: Image for %1").arg(shortName));
auto *inspect_image = new ImageViewer(fileName, &lammps);
inspect_image->setFont(font());
inspect_image->show();
ilist->image = inspect_image;