PD: PR6497 move return statement to new line

This commit is contained in:
Chris Hennes
2022-03-29 12:37:21 -05:00
parent 2ecc125497
commit 65aa374083
9 changed files with 64 additions and 31 deletions

View File

@@ -274,7 +274,8 @@ bool ViewProviderDatum::doubleClicked(void)
if(!activeDoc)
activeDoc = getDocument();
auto activeView = activeDoc->getActiveView();
if(!activeView) return false;
if(!activeView)
return false;
std::string Msg("Edit ");
Msg += this->pcObject->Label.getValue();