Skip to content
This repository was archived by the owner on Mar 4, 2023. It is now read-only.

Commit 18c6623

Browse files
committed
fixed build, added class includes
1 parent a3591d0 commit 18c6623

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

src/restclient/restclient.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,13 @@
88
#include <QtCore/QUuid>
99
using namespace QtRestClient;
1010

11-
1211
RestClient::RestClient(QObject *parent) :
1312
QObject(parent),
1413
d(new RestClientPrivate(this))
1514
{
1615
d->serializer->setAllowDefaultNull(true);
1716
#if QT_VERSION >= QT_VERSION_CHECK(5, 9, 0)
18-
d->nam->setRedirectPolicy(QNetworkAccessManager::NoLessSafeRedirectPolicy);
17+
d->nam->setRedirectPolicy(QNetworkRequest::NoLessSafeRedirectPolicy);
1918
#endif
2019
}
2120

sync.profile

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,16 @@
11
%modules = (
2-
"QtRestClient" => "$basedir/src/restclient",
2+
"QtRestClient" => "$basedir/src/restclient",
33
);
44

55
%classnames = (
6-
"genericrestreply.h" => "GenericRestReply",
7-
"ipaging.h" => "IPaging",
8-
"ipaging.h" => "PagingFactory",
9-
"paging.h" => "Paging",
10-
"requestbuilder.h" => "RequestBuilder",
11-
"restclass.h" => "RestClass",
12-
"restclient.h" => "RestClient",
13-
"restreply.h" => "RestReply",
14-
"simple.h" => "Simple",
6+
"genericrestreply.h" => "GenericRestReply",
7+
"metacomponent.h" => "MetaComponent",
8+
"ipaging.h" => "IPaging",
9+
"ipaging.h" => "PagingFactory",
10+
"paging.h" => "Paging",
11+
"requestbuilder.h" => "RequestBuilder",
12+
"restclass.h" => "RestClass",
13+
"restclient.h" => "RestClient",
14+
"restreply.h" => "RestReply",
15+
"simple.h" => "Simple",
1516
);

0 commit comments

Comments
 (0)