Bug 784739 - Switch from NULL to nullptr in dom/plugins/ipc/; r=ehsan

This commit is contained in:
Birunthan Mohanathas
2013-10-23 16:34:46 -04:00
parent 1e93f27a06
commit 08cf444a2b
26 changed files with 196 additions and 194 deletions

View File

@@ -13,7 +13,7 @@ namespace mozilla {
namespace plugins {
NestedLoopTimer::NestedLoopTimer(PluginModuleChild *pmc):
QObject(), mModule(pmc), mQTimer(NULL)
QObject(), mModule(pmc), mQTimer(nullptr)
{
}
@@ -22,7 +22,7 @@ NestedLoopTimer::~NestedLoopTimer()
if (mQTimer) {
mQTimer->stop();
delete mQTimer;
mQTimer = NULL;
mQTimer = nullptr;
}
}