summaryrefslogtreecommitdiff
path: root/src/spawn.h
diff options
context:
space:
mode:
authorisanae <14251494+isanae@users.noreply.github.com>2019-09-11 23:36:13 -0400
committerisanae <14251494+isanae@users.noreply.github.com>2019-09-11 23:36:13 -0400
commit0015a12cf8916d8000c6d14356b4c17c62f4a588 (patch)
tree75d998b60a1e98ce9cd36f18d9fc340e53afdccc /src/spawn.h
parent06218502ed5379555eda1504e6b05f2ef6dfb292 (diff)
rewritten spawn() to use std::wstring instead of manual buffers
error dialogs now use TaskDialog with more user-friendly text
Diffstat (limited to 'src/spawn.h')
-rw-r--r--src/spawn.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/spawn.h b/src/spawn.h
index c2d99bdb..9a2dbfbd 100644
--- a/src/spawn.h
+++ b/src/spawn.h
@@ -26,25 +26,6 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include <QFileInfo>
#include <QDir>
-
-/**
- * @brief a dirty little trick so we can issue a clean restart from startBinary
- * @note unused
- */
-/*class ExitProxy : public QObject {
- Q_OBJECT
-public:
- static ExitProxy *instance();
- void emitExit();
-signals:
- void exit();
-private:
- ExitProxy() {}
-private:
- static ExitProxy *s_Instance;
-};*/
-
-
/**
* @brief spawn a binary with Mod Organizer injected
*