diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-07-11 10:30:16 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-07-11 10:30:16 +0800 |
commit | f8523b6e7c1a5cc7f984ddf25ff3ba7f2c39194a (patch) | |
tree | bfb8f6d304f693e1979b05b6efcb64109434a51a /client.cxx | |
parent | bd37f0cf61b9c520a7f9289919312fadff56b942 (diff) |
newaccount, login, logout moved to member namespace
Diffstat (limited to 'client.cxx')
-rw-r--r-- | client.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -54,7 +54,7 @@ namespace QICClient { QString const& password, QString const& successPage, QString const& nextPage, QString const& failPage) { - icclient_login(handler, member, username.toLatin1().constData(), + icclient_member_login(handler, member, username.toLatin1().constData(), password.toLatin1().constData(), successPage.toLatin1().constData(), nextPage.toLatin1().constData(), @@ -64,7 +64,7 @@ namespace QICClient { void Client::logOut() { - icclient_logout(); + icclient_member_logout(); emit loggedOut(); } |