#2162 Context manu: Remove const from RimIntersectionBox pointer

This commit is contained in:
Rebecca Cox
2017-11-29 14:20:59 +01:00
parent 58550817a0
commit c47f5e413f
6 changed files with 13 additions and 13 deletions

View File

@@ -57,7 +57,7 @@
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
RivIntersectionBoxPartMgr::RivIntersectionBoxPartMgr(const RimIntersectionBox* intersectionBox)
RivIntersectionBoxPartMgr::RivIntersectionBoxPartMgr(RimIntersectionBox* intersectionBox)
: m_rimIntersectionBox(intersectionBox),
m_defaultColor(cvf::Color3::WHITE)
{
@@ -361,6 +361,6 @@ cvf::ref<RivIntersectionHexGridInterface> RivIntersectionBoxPartMgr::createHexGr
return new RivFemIntersectionGrid(femPart);
}
return NULL;
return nullptr;
}