diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-09-08 16:25:02 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-09-08 16:25:02 +0200 |
commit | cbf3238f0e4d761ff34c9469f1ec88bd937152a5 (patch) | |
tree | 7cd55f45a4d4ca0afebfee689a01f9120b5ba9e6 | |
parent | 499ee1e36569fca73bdb809183242b03da69f3ef (diff) | |
download | MultiMC-cbf3238f0e4d761ff34c9469f1ec88bd937152a5.tar MultiMC-cbf3238f0e4d761ff34c9469f1ec88bd937152a5.tar.gz MultiMC-cbf3238f0e4d761ff34c9469f1ec88bd937152a5.tar.lz MultiMC-cbf3238f0e4d761ff34c9469f1ec88bd937152a5.tar.xz MultiMC-cbf3238f0e4d761ff34c9469f1ec88bd937152a5.zip |
Fix build
-rw-r--r-- | logic/InstanceLauncher.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/logic/InstanceLauncher.cpp b/logic/InstanceLauncher.cpp index 312f4c69..a0557b37 100644 --- a/logic/InstanceLauncher.cpp +++ b/logic/InstanceLauncher.cpp @@ -31,7 +31,7 @@ void InstanceLauncher::onLoginComplete() //FIXME: report error return; } - console = new ConsoleWindow(); + console = new ConsoleWindow(proc); console->show(); connect ( proc, SIGNAL ( ended() ), SLOT ( onTerminated() ) ); |