aboutsummaryrefslogtreecommitdiff
path: root/events
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2016-05-27 16:51:13 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2016-05-27 16:51:13 +0900
commit5e6a0b961d1fc2162c5a7498f10bbd1a477f1ece (patch)
tree77117f83c060008caf9605f4582e34d796ad0e6c /events
parenta2c08f646bf2d6fe0ce385940b5c1bb7b430d5fb (diff)
downloadlibquotient-5e6a0b961d1fc2162c5a7498f10bbd1a477f1ece.tar.gz
libquotient-5e6a0b961d1fc2162c5a7498f10bbd1a477f1ece.zip
Use nullptr
Diffstat (limited to 'events')
-rw-r--r--events/roommessageevent.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/events/roommessageevent.cpp b/events/roommessageevent.cpp
index 99d17e5c..b7459054 100644
--- a/events/roommessageevent.cpp
+++ b/events/roommessageevent.cpp
@@ -39,7 +39,7 @@ RoomMessageEvent::RoomMessageEvent()
: Event(EventType::RoomMessage)
, d(new Private)
{
- d->content = 0;
+ d->content = nullptr;
}
RoomMessageEvent::~RoomMessageEvent()