diff options
author | Stiepen22 <stiepen22@gmx.de> | 2013-09-06 22:40:50 +0200 |
---|---|---|
committer | Stiepen22 <stiepen22@gmx.de> | 2013-09-06 22:40:50 +0200 |
commit | f897a200e2607fd99116a3ab4bb9ba757a52139b (patch) | |
tree | 01e7448483a532173fffb44155909629695bb01a /gui/mainwindow.cpp | |
parent | b44e70d58dac92a21d905565370357d296942209 (diff) | |
download | MultiMC-f897a200e2607fd99116a3ab4bb9ba757a52139b.tar MultiMC-f897a200e2607fd99116a3ab4bb9ba757a52139b.tar.gz MultiMC-f897a200e2607fd99116a3ab4bb9ba757a52139b.tar.lz MultiMC-f897a200e2607fd99116a3ab4bb9ba757a52139b.tar.xz MultiMC-f897a200e2607fd99116a3ab4bb9ba757a52139b.zip |
Made instace killing actually work
Diffstat (limited to 'gui/mainwindow.cpp')
-rw-r--r-- | gui/mainwindow.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp index 4ccc12b6..75996c5d 100644 --- a/gui/mainwindow.cpp +++ b/gui/mainwindow.cpp @@ -538,7 +538,7 @@ void MainWindow::launchInstance(BaseInstance *instance, LoginResponse response) if(!proc) return; - console = new ConsoleWindow(); + console = new ConsoleWindow(proc); console->show(); connect(proc, SIGNAL(log(QString, MessageLevel::Enum)), console, SLOT(write(QString, MessageLevel::Enum))); |