modernize: Use nullptr
[quassel.git] / src / core / coreircuser.cpp
index 4dd946e..b9dd830 100644 (file)
@@ -24,7 +24,7 @@
 CoreIrcUser::CoreIrcUser(const QString &hostmask, Network *network) : IrcUser(hostmask, network)
 {
 #ifdef HAVE_QCA2
-    _cipher = 0;
+    _cipher = nullptr;
 
     // Get the cipher key from CoreNetwork if present
     CoreNetwork *coreNetwork = qobject_cast<CoreNetwork *>(network);