Replace zeroes and nulls by nullptrs

This commit is contained in:
Andrei Kortunov 2020-11-13 11:39:47 +04:00
parent 86fad60c7d
commit 8084a336b5
183 changed files with 483 additions and 483 deletions

View file

@ -12,7 +12,7 @@
#include "shortcutsetting.hpp"
#include "modifiersetting.hpp"
CSMPrefs::State *CSMPrefs::State::sThis = 0;
CSMPrefs::State *CSMPrefs::State::sThis = nullptr;
void CSMPrefs::State::load()
{
@ -599,7 +599,7 @@ CSMPrefs::State::State (const Files::ConfigurationManager& configurationManager)
CSMPrefs::State::~State()
{
sThis = 0;
sThis = nullptr;
}
void CSMPrefs::State::save()