mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-05-09 12:07:51 +03:00
Replace zeroes and nulls by nullptrs
This commit is contained in:
parent
86fad60c7d
commit
8084a336b5
183 changed files with 483 additions and 483 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue