Fix mixed line endings

This commit is contained in:
Zheng, Lei
2022-04-26 21:45:10 +08:00
committed by Chris Hennes
parent 2753dd4ca7
commit 3ef438eaf0
66 changed files with 344 additions and 344 deletions

View File

@@ -308,13 +308,13 @@ void SoFCSelection::doAction(SoAction *action)
int SoFCSelection::getPriority(const SoPickedPoint* p)
{
const SoDetail* detail = p->getDetail();
if(!detail)
if(!detail)
return 0;
if(detail->isOfType(SoFaceDetail::getClassTypeId()))
if(detail->isOfType(SoFaceDetail::getClassTypeId()))
return 1;
if(detail->isOfType(SoLineDetail::getClassTypeId()))
if(detail->isOfType(SoLineDetail::getClassTypeId()))
return 2;
if(detail->isOfType(SoPointDetail::getClassTypeId()))
if(detail->isOfType(SoPointDetail::getClassTypeId()))
return 3;
return 0;
}