diff options
author | Petr Mrázek <peterix@gmail.com> | 2016-11-04 00:19:32 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2016-11-04 00:19:32 +0100 |
commit | 3780a25d27ae5c803ce9ed075928fff365104987 (patch) | |
tree | f59f3c2bbb77b7a1bdfecb408bafa2f793030673 /application/LaunchController.h | |
parent | 6ebf6e7785da79f7f3eb28176951d0e9d22a20e8 (diff) | |
download | PrismLauncher-3780a25d27ae5c803ce9ed075928fff365104987.tar.gz PrismLauncher-3780a25d27ae5c803ce9ed075928fff365104987.tar.bz2 PrismLauncher-3780a25d27ae5c803ce9ed075928fff365104987.zip |
NOISSUE add an option to show console on error and default other options to false
Diffstat (limited to 'application/LaunchController.h')
-rw-r--r-- | application/LaunchController.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/application/LaunchController.h b/application/LaunchController.h index 4cc240e8..81f3a0ab 100644 --- a/application/LaunchController.h +++ b/application/LaunchController.h @@ -33,10 +33,6 @@ public: { m_parentWidget = widget; } - void setShowConsole(bool showConsole) - { - m_showConsole = showConsole; - } QString id() { return m_instance->id(); @@ -56,7 +52,6 @@ private slots: private: BaseProfilerFactory *m_profiler = nullptr; bool m_online = true; - bool m_showConsole = false; InstancePtr m_instance; QWidget * m_parentWidget = nullptr; InstanceWindow *m_console = nullptr; |