aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJędrzej Nowacki <jedrzej.nowacki@digia.com>2014-04-11 13:52:23 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-04-11 13:58:10 +0200
commitc7531f6530d36019c00b08e57e9c9181cabc6b77 (patch)
treea19f76e97e52e10cc7f6d10cbed68fa97ea15421
parentda39c3b555688fc868fc886452c1e78c8c41a430 (diff)
Mark EnginioClientConnection::serviceUrl as public
The function should be public as the Enginio allows usage of different backend urls. Change-Id: I9a665de26137f4641618f40044b182a21aaf670f Reviewed-by: Frederik Gladhorn <frederik.gladhorn@digia.com>
-rw-r--r--src/enginio_client/enginioclient.cpp17
1 files changed, 4 insertions, 13 deletions
diff --git a/src/enginio_client/enginioclient.cpp b/src/enginio_client/enginioclient.cpp
index 3fe1536..68a46fb 100644
--- a/src/enginio_client/enginioclient.cpp
+++ b/src/enginio_client/enginioclient.cpp
@@ -416,19 +416,13 @@ void EnginioClientConnection::setBackendId(const QByteArray &backendId)
/*!
\property EnginioClientConnection::serviceUrl
\brief Enginio backend URL.
- \internal
The API URL determines the server used by Enginio.
- Usually it is not needed to change the default URL.
-*/
-
-/*!
- \fn EnginioClientConnection::serviceUrlChanged(const QUrl &url)
- \internal
-*/
-/*!
- \internal
+ Usually it is not needed to change the default URL, but if it has
+ to be changed it should be done as a first operaion on this
+ EnginioClientConnection, otherwise some request may be sent accidentally
+ to the default url.
*/
QUrl EnginioClientConnection::serviceUrl() const
{
@@ -436,9 +430,6 @@ QUrl EnginioClientConnection::serviceUrl() const
return d->_serviceUrl;
}
-/*!
- \internal
-*/
void EnginioClientConnection::setServiceUrl(const QUrl &serviceUrl)
{
Q_D(EnginioClientConnection);