diff options
-rw-r--r-- | client.cxx | 24 | ||||
m--------- | librtclient | 0 | ||||
-rw-r--r-- | qrtclient/client.hxx | 5 |
3 files changed, 15 insertions, 14 deletions
@@ -36,24 +36,16 @@ namespace RTClient { , QString const& comments , QString const& signature , QString const& gecos - , int lang - , int timeZone + , enum rt_lang lang + , enum rt_timezone timeZone , bool disabled , bool privileged) { rtclient_user_new(name.toLatin1().constData() + , password.toLatin1().constData() , emailAddress.toLatin1().constData() , realName.toLatin1().constData() , nickName.toLatin1().constData() - , gecos.toLatin1().constData() - , static_cast<enum rt_lang>(lang) - , static_cast<enum rt_timezone>(timeZone) - , contactInfo.toLatin1().constData() - , disabled - , privileged - , password.toLatin1().constData() - , comments.toLatin1().constData() - , signature.toLatin1().constData() , organization.toLatin1().constData() , address1.toLatin1().constData() , address2.toLatin1().constData() @@ -64,7 +56,15 @@ namespace RTClient { , homePhone.toLatin1().constData() , workPhone.toLatin1().constData() , mobilePhone.toLatin1().constData() - , pagerPhone.toLatin1().constData()); + , pagerPhone.toLatin1().constData() + , contactInfo.toLatin1().constData() + , comments.toLatin1().constData() + , signature.toLatin1().constData() + , gecos.toLatin1().constData() + , lang + , timeZone + , disabled + , privileged); } void Client::search(QString const& owner) diff --git a/librtclient b/librtclient -Subproject a6be983c30fcf229c54b627e87491ea73c0c96f +Subproject 8120fabe27f9b35d4a2e84e6a3f3e0fa8270798 diff --git a/qrtclient/client.hxx b/qrtclient/client.hxx index 23c0ae9..0b96294 100644 --- a/qrtclient/client.hxx +++ b/qrtclient/client.hxx @@ -2,6 +2,7 @@ #define QRTCLIENT_HXX #include <QObject> +#include <rtclient/user.h> struct rt_user; struct rt_ticketlist; @@ -38,8 +39,8 @@ namespace RTClient { , QString const& comments = nullptr , QString const& signature = nullptr , QString const& gecos = nullptr - , int lang = 0 - , int timeZone = 0 + , enum rt_lang lang = RT_LANG_NONE + , enum rt_timezone timeZone = RT_TIMEZONE_NONE , bool disabled = false , bool privileged = false); void search(QString const& owner); |