[skip CI] [FEM] some style changes by MSVC

- to avoid annoying unnecessary diffs while working on the FEM module
This commit is contained in:
Uwe
2022-03-25 18:55:33 +01:00
parent f88c95d743
commit b186269f54
18 changed files with 363 additions and 380 deletions

View File

@@ -35,17 +35,17 @@ bool FemSelectionGate::allow(App::Document* /*pDoc*/, App::DocumentObject* /*pOb
if (!sSubName || sSubName[0] == '\0')
return false;
if( sSubName[0] == 'E' &&
if (sSubName[0] == 'E' &&
sSubName[1] == 'l' &&
sSubName[2] == 'e' &&
sSubName[3] == 'm' &&
(Type == Element || Type == NodeElement) )
(Type == Element || Type == NodeElement))
return true;
if( sSubName[0] == 'N' &&
if (sSubName[0] == 'N' &&
sSubName[1] == 'o' &&
sSubName[2] == 'd' &&
sSubName[3] == 'e' &&
(Type == Node || Type == NodeElement) )
(Type == Node || Type == NodeElement))
return true;
return false;