Applied project style to multiple files

This commit is contained in:
fourtf
2018-07-06 18:10:21 +02:00
parent 3993708164
commit 535c0616a3
26 changed files with 149 additions and 157 deletions
+2 -2
View File
@@ -24,9 +24,9 @@ void NetworkRequest::setRequestType(RequestType newRequestType)
this->data.requestType = newRequestType;
}
void NetworkRequest::setCaller(const QObject *_caller)
void NetworkRequest::setCaller(const QObject *caller)
{
this->data.caller = _caller;
this->data.caller = caller;
}
void NetworkRequest::setOnReplyCreated(std::function<void(QNetworkReply *)> f)