Gui: PR6497 move return statement to new line

This commit is contained in:
Chris Hennes
2022-03-29 12:33:50 -05:00
parent 132a1d7e55
commit bedf920702
57 changed files with 352 additions and 169 deletions

View File

@@ -584,7 +584,8 @@ bool View3DInventor::onMsg(const char* pMsg, const char** ppReturn)
}
else if(strcmp("GetCamera",pMsg) == 0 ) {
SoCamera * Cam = _viewer->getSoRenderManager()->getCamera();
if (!Cam) return false;
if (!Cam)
return false;
*ppReturn = SoFCDB::writeNodesToString(Cam).c_str();
return true;
}