Misc. typo fixes

Remove double whitespaces between source comments
This commit is contained in:
luzpaz
2017-11-23 12:09:28 -05:00
committed by Yorik van Havre
parent 8e48e336e3
commit e8587cf0b4
12 changed files with 18 additions and 18 deletions

View File

@@ -33,7 +33,7 @@ class _FemMeshBoundaryLayer:
def __init__(self, obj):
self.Type = "FemMeshBoundaryLayer"
self.Object = obj # keep a ref to the DocObj for nonGui usage
obj.Proxy = self # link between App::DocumentObject to this object
obj.Proxy = self # link between App::DocumentObject to this object
obj.addProperty("App::PropertyInteger", "NumberOfLayers", "MeshBoundaryLayerProperties", "set number of inflation layers for this boundary")

View File

@@ -41,7 +41,7 @@ class _FemMeshGmsh():
def __init__(self, obj):
self.Type = "FemMeshGmsh"
self.Object = obj # keep a ref to the DocObj for nonGui usage
obj.Proxy = self # link between App::DocumentObject to this object
obj.Proxy = self # link between App::DocumentObject to this object
obj.addProperty("App::PropertyLinkList", "MeshBoundaryLayerList", "Base", "Mesh boundaries need inflation layers")
obj.MeshBoundaryLayerList = []

View File

@@ -35,7 +35,7 @@ class _FemResultMechanical():
def __init__(self, obj):
self.Type = "FemResultMechanical"
self.Object = obj # keep a ref to the DocObj for nonGui usage
obj.Proxy = self # link between App::DocumentObject to this object
obj.Proxy = self # link between App::DocumentObject to this object
obj.addProperty("App::PropertyString", "ResultType", "Base", "Type of the result", 1) # the 1 set the property to ReadOnly
obj.ResultType = str(self.Type)