diff options
author | Petr Mrázek <peterix@gmail.com> | 2015-02-09 01:51:14 +0100 |
---|---|---|
committer | Petr Mrázek <peterix@gmail.com> | 2015-04-12 20:57:18 +0200 |
commit | db877ba121ff87a4e029daf8555d85dfef45993a (patch) | |
tree | 7673f83c404b3883f0a4fcf6b492f0c4125c293c /logic/auth | |
parent | 4730f54df7edf4775dfddf45f77c60edd86c32d9 (diff) | |
download | PrismLauncher-db877ba121ff87a4e029daf8555d85dfef45993a.tar.gz PrismLauncher-db877ba121ff87a4e029daf8555d85dfef45993a.tar.bz2 PrismLauncher-db877ba121ff87a4e029daf8555d85dfef45993a.zip |
NOISSUE move everything.
Diffstat (limited to 'logic/auth')
-rw-r--r-- | logic/auth/MojangAccountList.cpp | 4 | ||||
-rw-r--r-- | logic/auth/MojangAccountList.h | 2 | ||||
-rw-r--r-- | logic/auth/YggdrasilTask.cpp | 8 | ||||
-rw-r--r-- | logic/auth/YggdrasilTask.h | 4 | ||||
-rw-r--r-- | logic/auth/flows/AuthenticateTask.cpp | 4 | ||||
-rw-r--r-- | logic/auth/flows/AuthenticateTask.h | 2 | ||||
-rw-r--r-- | logic/auth/flows/RefreshTask.cpp | 4 | ||||
-rw-r--r-- | logic/auth/flows/RefreshTask.h | 2 | ||||
-rw-r--r-- | logic/auth/flows/ValidateTask.cpp | 4 | ||||
-rw-r--r-- | logic/auth/flows/ValidateTask.h | 2 |
10 files changed, 18 insertions, 18 deletions
diff --git a/logic/auth/MojangAccountList.cpp b/logic/auth/MojangAccountList.cpp index abed9b24..b69b9b81 100644 --- a/logic/auth/MojangAccountList.cpp +++ b/logic/auth/MojangAccountList.cpp @@ -13,7 +13,7 @@ * limitations under the License. */ -#include "logic/auth/MojangAccountList.h" +#include "auth/MojangAccountList.h" #include <QIODevice> #include <QFile> @@ -26,7 +26,7 @@ #include <QDebug> -#include "logic/auth/MojangAccount.h" +#include "auth/MojangAccount.h" #include <pathutils.h> #define ACCOUNT_LIST_FORMAT_VERSION 2 diff --git a/logic/auth/MojangAccountList.h b/logic/auth/MojangAccountList.h index 383d9dc4..b68343f2 100644 --- a/logic/auth/MojangAccountList.h +++ b/logic/auth/MojangAccountList.h @@ -20,7 +20,7 @@ #include <QAbstractListModel> #include <QSharedPointer> -#include "logic/auth/MojangAccount.h" +#include "auth/MojangAccount.h" /*! * \brief List of available Mojang accounts. diff --git a/logic/auth/YggdrasilTask.cpp b/logic/auth/YggdrasilTask.cpp index 4d5c2594..3b6e0cfb 100644 --- a/logic/auth/YggdrasilTask.cpp +++ b/logic/auth/YggdrasilTask.cpp @@ -13,7 +13,7 @@ * limitations under the License. */ -#include <logic/auth/YggdrasilTask.h> +#include <auth/YggdrasilTask.h> #include <QObject> #include <QString> @@ -22,9 +22,9 @@ #include <QNetworkReply> #include <QByteArray> -#include <logic/Env.h> -#include <logic/auth/MojangAccount.h> -#include <logic/net/URLConstants.h> +#include <Env.h> +#include <auth/MojangAccount.h> +#include <net/URLConstants.h> #include <QDebug> diff --git a/logic/auth/YggdrasilTask.h b/logic/auth/YggdrasilTask.h index 1677bcf5..306d7358 100644 --- a/logic/auth/YggdrasilTask.h +++ b/logic/auth/YggdrasilTask.h @@ -15,14 +15,14 @@ #pragma once -#include <logic/tasks/Task.h> +#include <tasks/Task.h> #include <QString> #include <QJsonObject> #include <QTimer> #include <qsslerror.h> -#include "logic/auth/MojangAccount.h" +#include "auth/MojangAccount.h" class QNetworkReply; diff --git a/logic/auth/flows/AuthenticateTask.cpp b/logic/auth/flows/AuthenticateTask.cpp index 4141f00d..b26769d9 100644 --- a/logic/auth/flows/AuthenticateTask.cpp +++ b/logic/auth/flows/AuthenticateTask.cpp @@ -14,9 +14,9 @@ * limitations under the License. */ -#include <logic/auth/flows/AuthenticateTask.h> +#include <auth/flows/AuthenticateTask.h> -#include <logic/auth/MojangAccount.h> +#include <auth/MojangAccount.h> #include <QJsonDocument> #include <QJsonObject> diff --git a/logic/auth/flows/AuthenticateTask.h b/logic/auth/flows/AuthenticateTask.h index 8b5f3efc..65975ae5 100644 --- a/logic/auth/flows/AuthenticateTask.h +++ b/logic/auth/flows/AuthenticateTask.h @@ -15,7 +15,7 @@ #pragma once -#include <logic/auth/YggdrasilTask.h> +#include <auth/YggdrasilTask.h> #include <QObject> #include <QString> diff --git a/logic/auth/flows/RefreshTask.cpp b/logic/auth/flows/RefreshTask.cpp index 2216c7e4..83511200 100644 --- a/logic/auth/flows/RefreshTask.cpp +++ b/logic/auth/flows/RefreshTask.cpp @@ -13,9 +13,9 @@ * limitations under the License. */ -#include <logic/auth/flows/RefreshTask.h> +#include <auth/flows/RefreshTask.h> -#include <logic/auth/MojangAccount.h> +#include <auth/MojangAccount.h> #include <QJsonDocument> #include <QJsonObject> diff --git a/logic/auth/flows/RefreshTask.h b/logic/auth/flows/RefreshTask.h index 1b556776..6894e963 100644 --- a/logic/auth/flows/RefreshTask.h +++ b/logic/auth/flows/RefreshTask.h @@ -15,7 +15,7 @@ #pragma once -#include <logic/auth/YggdrasilTask.h> +#include <auth/YggdrasilTask.h> #include <QObject> #include <QString> diff --git a/logic/auth/flows/ValidateTask.cpp b/logic/auth/flows/ValidateTask.cpp index 21afb596..9a4dcd6d 100644 --- a/logic/auth/flows/ValidateTask.cpp +++ b/logic/auth/flows/ValidateTask.cpp @@ -14,9 +14,9 @@ * limitations under the License. */ -#include <logic/auth/flows/ValidateTask.h> +#include <auth/flows/ValidateTask.h> -#include <logic/auth/MojangAccount.h> +#include <auth/MojangAccount.h> #include <QJsonDocument> #include <QJsonObject> diff --git a/logic/auth/flows/ValidateTask.h b/logic/auth/flows/ValidateTask.h index aa9da912..204596f9 100644 --- a/logic/auth/flows/ValidateTask.h +++ b/logic/auth/flows/ValidateTask.h @@ -19,7 +19,7 @@ #pragma once -#include <logic/auth/YggdrasilTask.h> +#include <auth/YggdrasilTask.h> #include <QObject> #include <QString> |