The big NULL replacement party part 5.

Right. ' = NULL' would get a lot of these.
This commit is contained in:
Jason Felds
2013-05-03 23:39:52 -04:00
parent 328c41eec0
commit 28e5148dec
233 changed files with 7448 additions and 7447 deletions
+3 -3
View File
@@ -23,7 +23,7 @@ DialogDriver *MakeDialogDriver()
ASSERT( asDriversToTry.size() != 0 );
RString sDriver;
DialogDriver *pRet = NULL;
DialogDriver *pRet = nullptr;
for( unsigned i = 0; pRet == nullptr && i < asDriversToTry.size(); ++i )
{
@@ -56,7 +56,7 @@ DialogDriver *MakeDialogDriver()
return pRet;
}
static DialogDriver *g_pImpl = NULL;
static DialogDriver *g_pImpl = nullptr;
static DialogDriver_Null g_NullDriver;
static bool g_bWindowed = true; // Start out true so that we'll show errors before DISPLAY is init'd.
@@ -79,7 +79,7 @@ void Dialog::Init()
void Dialog::Shutdown()
{
delete g_pImpl;
g_pImpl = NULL;
g_pImpl = nullptr;
}
static bool MessageIsIgnored( RString sID )