1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-21 01:24:21 +00:00

More 'nullptr' updates and minor clean-ups.

This commit is contained in:
Julian Storer 2011-04-07 22:20:25 +01:00
parent 46c3a6bbe5
commit b047d9be53
113 changed files with 560 additions and 663 deletions

View file

@ -565,7 +565,7 @@ void* Component::getWindowHandle() const
if (peer != nullptr)
return peer->getNativeHandle();
return 0;
return nullptr;
}
//==============================================================================
@ -1309,7 +1309,7 @@ Component* Component::getComponentAt (const Point<int>& position)
return this;
}
return 0;
return nullptr;
}
Component* Component::getComponentAt (const int x, const int y)
@ -2087,7 +2087,7 @@ void Component::colourChanged()
//==============================================================================
MarkerList* Component::getMarkers (bool /*xAxis*/)
{
return 0;
return nullptr;
}
//==============================================================================
@ -3020,7 +3020,7 @@ ComponentPeer* Component::getPeer() const
if (flags.hasHeavyweightPeerFlag)
return ComponentPeer::getPeerFor (this);
else if (parentComponent == nullptr)
return 0;
return nullptr;
return parentComponent->getPeer();
}