]> SALOME platform Git repositories - modules/shaper.git/blobdiff - src/Config/Config_Common.cpp
Salome HOME
Warnings correction for moc files generation
[modules/shaper.git] / src / Config / Config_Common.cpp
index cb866a7d55dbca72facd4af0cd0c8c825b8f3d0d..e6657fe4f1663822901ba26c62f7dfd521352eb3 100644 (file)
@@ -61,7 +61,7 @@ bool isAttributeNode(xmlNodePtr theNode)
     return false;
 
   //it should not be a "source" or a "validator" node
-  bool isLogical = isNode(theNode, NODE_SOURCE, NODE_VALIDATOR, NODE_SELFILTER, NULL);
+  bool isLogical = isNode(theNode, NODE_SOURCE, NODE_VALIDATOR, NULL);
   // here must be only widgets not connected to attributes
   bool isPagedContainer = isNode(theNode, WDG_TOOLBOX_BOX,
                                           WDG_GROUP,
@@ -79,7 +79,7 @@ bool isWidgetNode(xmlNodePtr theNode)
     return false;
 
   //it should not be a "source" or a "validator" node
-  return !isNode(theNode, NODE_SOURCE, NODE_VALIDATOR, NODE_SELFILTER, NULL);
+  return !isNode(theNode, NODE_SOURCE, NODE_VALIDATOR, NULL);
 }
 
 // widget api?