summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--client.cxx6
-rw-r--r--qrtclient/client.hxx2
2 files changed, 4 insertions, 4 deletions
diff --git a/client.cxx b/client.cxx
index 38501e5..1e34666 100644
--- a/client.cxx
+++ b/client.cxx
@@ -69,14 +69,14 @@ namespace RTClient {
void Client::userShow(unsigned int id)
{
- rtclient_user* user = NULL;
+ rtclient_user* user = nullptr;
rtclient_user_showid(&user, id);
emit userShown(user);
}
void Client::userShow(QString const& name)
{
- rtclient_user* user = NULL;
+ rtclient_user* user = nullptr;
rtclient_user_showname(&user, name.toLatin1().constData());
emit userShown(user);
}
@@ -115,7 +115,7 @@ namespace RTClient {
void Client::ticketSearch(QString const& owner)
{
QString query{"Owner='" % owner % "'"};
- rtclient_ticketlist* ticketList = NULL;
+ rtclient_ticketlist* ticketList = nullptr;
rtclient_ticket_search(&ticketList, query.toLatin1().constData());
emit ticketSearched(ticketList);
}
diff --git a/qrtclient/client.hxx b/qrtclient/client.hxx
index 13b935a..75477d7 100644
--- a/qrtclient/client.hxx
+++ b/qrtclient/client.hxx
@@ -14,7 +14,7 @@ namespace RTClient {
Q_OBJECT
public:
- Client(char const* url, char const* certificate = NULL);
+ Client(char const* url, char const* certificate = nullptr);
~Client();
public slots: