diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-30 11:03:22 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-30 11:03:22 +0800 |
commit | 5811ed952f1d4e0887c619d6fafeadd11a11821f (patch) | |
tree | 91c834a09256dee68c267c6960f72e2d2945cedf /qrtclient | |
parent | 9fc5d176c20d28cda8debaa0bd6c043432a2b1ea (diff) |
ticketlist is renamed to ticket_list
Diffstat (limited to 'qrtclient')
-rw-r--r-- | qrtclient/client.hxx | 7 | ||||
-rw-r--r-- | qrtclient/ticket.hxx | 4 |
2 files changed, 6 insertions, 5 deletions
diff --git a/qrtclient/client.hxx b/qrtclient/client.hxx index cf7cba9..8876f4c 100644 --- a/qrtclient/client.hxx +++ b/qrtclient/client.hxx @@ -5,7 +5,7 @@ #include <rtclient/user.h> struct rtclient_user; -struct rtclient_ticketlist; +struct rtclient_ticket_list; namespace RTClient { @@ -40,7 +40,8 @@ namespace RTClient { , QString const& signature = nullptr , QString const& gecos = nullptr , rtclient_lang lang = RTCLIENT_LANG_NONE - , rtclient_timezone timeZone = RTCLIENT_TIMEZONE_NONE + , rtclient_timezone timeZone + = RTCLIENT_TIMEZONE_NONE , bool disabled = false , bool privileged = false); void userShow(unsigned int id); @@ -65,7 +66,7 @@ namespace RTClient { signals: void loggedIn(QString const& name); void userShown(rtclient_user* user); - void ticketSearched(rtclient_ticketlist* list); + void ticketSearched(rtclient_ticket_list* list); }; } diff --git a/qrtclient/ticket.hxx b/qrtclient/ticket.hxx index 25c067f..5af995a 100644 --- a/qrtclient/ticket.hxx +++ b/qrtclient/ticket.hxx @@ -4,7 +4,7 @@ #include <QAbstractListModel> #include <rtclient/ticket.h> -struct rtclient_ticketlist; +struct rtclient_ticket_list; namespace RTClient { @@ -44,7 +44,7 @@ namespace RTClient { ) const Q_DECL_OVERRIDE; public slots: - void update(rtclient_ticketlist* ticketList); + void update(rtclient_ticket_list* ticketList); protected: QHash<int, QByteArray> roleNames() const Q_DECL_OVERRIDE; |