From 7aeb37a1908ddd3631618bcb91540a1365448d46 Mon Sep 17 00:00:00 2001 From: Hartmnt Date: Thu, 13 Jun 2024 16:57:42 +0000 Subject: [PATCH] REFAC(client): Replace 0 with nullptr in Global.cpp --- src/mumble/Global.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/mumble/Global.cpp b/src/mumble/Global.cpp index a468bcd2c94..b52bf12b65d 100644 --- a/src/mumble/Global.cpp +++ b/src/mumble/Global.cpp @@ -92,12 +92,12 @@ void Global::migrateDataDir(const QDir &toDir) { } Global::Global(const QString &qsConfigPath) { - mw = 0; - db = 0; - pluginManager = 0; - nam = 0; - c = 0; - talkingUI = 0; + mw = nullptr; + db = nullptr; + pluginManager = nullptr; + nam = nullptr; + c = nullptr; + talkingUI = nullptr; uiSession = 0; uiDoublePush = 1000000; iPushToTalk = 0;