aboutsummaryrefslogtreecommitdiff
path: root/jobs
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2016-08-11 10:38:09 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2016-08-23 11:58:33 +0900
commitf233e33f212648a4c9313f5d53d9591b9318c12b (patch)
treecd29e3a1bc7cd8fd9f2611036b1ed55b25857726 /jobs
parentaf406da633d5566298ac2846d55e001749a2a146 (diff)
downloadlibquotient-f233e33f212648a4c9313f5d53d9591b9318c12b.tar.gz
libquotient-f233e33f212648a4c9313f5d53d9591b9318c12b.zip
CheckAuthMethods: fixed parseJson() to return some value
It's been a warning with GCC/Clang but an error with Visual Studio.
Diffstat (limited to 'jobs')
-rw-r--r--jobs/checkauthmethods.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/jobs/checkauthmethods.cpp b/jobs/checkauthmethods.cpp
index f471c135..c93bf802 100644
--- a/jobs/checkauthmethods.cpp
+++ b/jobs/checkauthmethods.cpp
@@ -60,4 +60,5 @@ QString CheckAuthMethods::apiPath() const
BaseJob::Status CheckAuthMethods::parseJson(const QJsonDocument& data)
{
// TODO
+ return { BaseJob::StatusCode::UserDefinedError, "Not implemented" };
}