Correcting for PR comments

This commit is contained in:
Anselm Busse
2021-03-12 16:22:16 +01:00
committed by Cameron Gutman
parent de88176995
commit 0802609fd8
6 changed files with 42 additions and 17 deletions
+2 -1
View File
@@ -17,7 +17,7 @@ class Launcher : public QObject
Q_DECLARE_PRIVATE_D(m_DPtr, Launcher)
public:
explicit Launcher(QString computer, QObject *parent = nullptr);
explicit Launcher(QString computer, bool printCSV, QObject *parent = nullptr);
~Launcher();
Q_INVOKABLE void execute(ComputerManager *manager);
@@ -35,6 +35,7 @@ private slots:
private:
QScopedPointer<LauncherPrivate> m_DPtr;
bool m_Print_CSV;
};
}