Skip to content

Commit

Permalink
REFAC(client): Replace 0 with nullptr in Global.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
Hartmnt committed Jan 2, 2025
1 parent e64f334 commit 7aeb37a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/mumble/Global.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 7aeb37a

Please sign in to comment.