diff options
-rw-r--r-- | client.cxx | 4 | ||||
-rw-r--r-- | qicclient/client.hxx | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -16,8 +16,8 @@ namespace ICClient { void Client::logIn(QString const& username, QString const& password) { icclient_login(username.toLatin1().constData() - , password.toLatin1().constData(), NULL, NULL - , NULL); + , password.toLatin1().constData(), nullptr, nullptr + , nullptr); emit loggedIn(username); } diff --git a/qicclient/client.hxx b/qicclient/client.hxx index aac8fb6..14c3652 100644 --- a/qicclient/client.hxx +++ b/qicclient/client.hxx @@ -10,7 +10,7 @@ namespace ICClient { Q_OBJECT public: - Client(char const* url, char const* certificate = NULL); + Client(char const* url, char const* certificate = nullptr); ~Client(); public slots: |