diff options
-rw-r--r-- | client.cxx | 4 | ||||
m--------- | librtclient | 0 | ||||
-rw-r--r-- | qrtclient/client.hxx | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -5,9 +5,9 @@ namespace RTClient { - Client::Client(QString const& url) + Client::Client(char const* url, char const* certificate) { - rtclient_init(url.toLatin1().constData()); + rtclient_init(url, certificate); } void Client::logIn(QString const& name, QString const& password) diff --git a/librtclient b/librtclient -Subproject ab559a9b0a509d9bcf27b43b23f1944e7f595ab +Subproject a2667831d91ca18b9b8d41ad1d52a721103f875 diff --git a/qrtclient/client.hxx b/qrtclient/client.hxx index 628472a..13b935a 100644 --- a/qrtclient/client.hxx +++ b/qrtclient/client.hxx @@ -14,7 +14,7 @@ namespace RTClient { Q_OBJECT public: - Client(QString const& url); + Client(char const* url, char const* certificate = NULL); ~Client(); public slots: |