This commit is contained in:
Jan Dalheimer
2014-04-16 17:54:07 +02:00
parent 3ed5b1570b
commit f67ca674c4
2 changed files with 11 additions and 16 deletions

View File

@@ -1,7 +1,4 @@
/* Copyright 2014 MultiMC Contributors
*
* Authors:
* Taeyeon Mori <orochimarufan.x3@gmail.com>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -49,7 +46,7 @@ slots:
void onTaskFailed(const QString &reason);
void onTaskSucceeded();
void onTaskStatus(const QString &status);
void onTaskProgress(qint64 value, qint64 max);
void onTaskProgress(qint64 current, qint64 total);
void on_userTextBox_textEdited(const QString &newText);
void on_passTextBox_textEdited(const QString &newText);
@@ -57,4 +54,5 @@ slots:
private:
Ui::LoginDialog *ui;
MojangAccountPtr m_account;
std::shared_ptr<Task> m_loginTask;
};