diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-08-03 23:58:39 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-08-03 23:58:39 +0200 |
commit | 4f73091bb5bdbdb91329b9a4ef647fc8286d423c (patch) | |
tree | 6bc63a2d9ca2265cd7ee6dcf683219b73e25a24e /main.cpp | |
parent | 13b1b98f7cf8a3b3b2c15dd42f96537b02c00711 (diff) | |
download | MultiMC-4f73091bb5bdbdb91329b9a4ef647fc8286d423c.tar MultiMC-4f73091bb5bdbdb91329b9a4ef647fc8286d423c.tar.gz MultiMC-4f73091bb5bdbdb91329b9a4ef647fc8286d423c.tar.lz MultiMC-4f73091bb5bdbdb91329b9a4ef647fc8286d423c.tar.xz MultiMC-4f73091bb5bdbdb91329b9a4ef647fc8286d423c.zip |
Errr... I forgot.
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -28,7 +28,6 @@ #include "AppSettings.h" #include "lists/InstanceList.h" -#include "tasks/LoginResponse.h" #include "tasks/LoginTask.h" #include "MinecraftProcess.h" @@ -64,7 +63,7 @@ private slots: void onLoginComplete(QString instId, LoginResponse response) { - proc = instance->prepareForLaunch(response.username(), response.sessionID()); + proc = instance->prepareForLaunch(response.username, response.sessionID); if(!proc) { //FIXME: report error |