Commit 4592bab6 authored by murata's avatar murata

AirspaceManagement: Change NULL or 0 to nullptr

parent 3405d7de
......@@ -41,7 +41,7 @@ AirspaceFlightInfo*
AirspaceFlightModel::get(int index)
{
if (index < 0 || index >= _flightEntries.count()) {
return NULL;
return nullptr;
}
return _flightEntries[index];
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment