diff options
author | Petr Mrázek <peterix@gmail.com> | 2013-08-09 00:26:35 +0200 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2013-08-09 00:26:35 +0200 |
commit | bf5f5091ef6daeaf7067f4fc8973eb068ddc52fc (patch) | |
tree | 647f77c1d7f8c8e0e7bdf90fb7f3b0eac9aa5f6c /gui/mainwindow.h | |
parent | c8925e0f667b0c94028345586d99008066358200 (diff) | |
download | MultiMC-bf5f5091ef6daeaf7067f4fc8973eb068ddc52fc.tar MultiMC-bf5f5091ef6daeaf7067f4fc8973eb068ddc52fc.tar.gz MultiMC-bf5f5091ef6daeaf7067f4fc8973eb068ddc52fc.tar.lz MultiMC-bf5f5091ef6daeaf7067f4fc8973eb068ddc52fc.tar.xz MultiMC-bf5f5091ef6daeaf7067f4fc8973eb068ddc52fc.zip |
Various task related improvements.
* Errors are reported back to task users via Failure signals.
* Lwjgl doesn't download on each legacy instance start anymore.
* Tasks were unified when it comes to success/failure.
* Task dialogs don't get spawned after short tasks finish anymore.
Diffstat (limited to 'gui/mainwindow.h')
-rw-r--r-- | gui/mainwindow.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gui/mainwindow.h b/gui/mainwindow.h index 6fa83973..2a490ee5 100644 --- a/gui/mainwindow.h +++ b/gui/mainwindow.h @@ -98,14 +98,14 @@ private slots: void doLogin(const QString& errorMsg = ""); - void onLoginComplete(LoginResponse response); + void onLoginComplete(); void onGameUpdateComplete(); void onGameUpdateError(QString error); - void taskStart(Task *task); - void taskEnd(Task *task); + void taskStart(); + void taskEnd(); void on_actionChangeInstLWJGLVersion_triggered(); |