Fix trailing newlines

This commit is contained in:
luzpaz
2023-02-08 02:28:07 +00:00
committed by Uwe
parent 7f7fb62239
commit a40a5dcad2
4 changed files with 10 additions and 10 deletions

View File

@@ -1,12 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
<GenerateModel xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="generateMetaModel_Module.xsd">
<PythonExport
Father="ViewProviderPy"
Name="ViewProviderDocumentObjectPy"
Twin="ViewProviderDocumentObject"
TwinPointer="ViewProviderDocumentObject"
Include="Gui/ViewProviderDocumentObject.h"
Namespace="Gui"
<PythonExport
Father="ViewProviderPy"
Name="ViewProviderDocumentObjectPy"
Twin="ViewProviderDocumentObject"
TwinPointer="ViewProviderDocumentObject"
Include="Gui/ViewProviderDocumentObject.h"
Namespace="Gui"
FatherInclude="Gui/ViewProviderPy.h"
FatherNamespace="Gui">
<Documentation>

View File

@@ -178,7 +178,7 @@ using namespace Gui;
* One of the key concepts of the workbench framework is to load a module at runtime when the user needs some function that it
* provides. So, if the user doesn't need a module it never gets loaded into RAM. This speeds up the startup procedure of
* FreeCAD and saves memory.
*
*
* At startup FreeCAD scans all module directories and invokes InitGui.py. So an item for a workbench gets created. If the user
* clicks on such an item the matching module gets loaded, the C++ workbench gets registered and activated.
*

View File

@@ -133,7 +133,7 @@ class Proxy(nonlinear.Proxy, equationbase.Magnetodynamic2DProxy):
obj.CalculateNodalFields = True
obj.CalculateNodalForces = False
obj.CalculateNodalHeating = False
class ViewProxy(nonlinear.ViewProxy, equationbase.Magnetodynamic2DViewProxy):
pass

View File

@@ -554,7 +554,7 @@ class Writer(object):
"The possible settings are:\n'Cartesian 2D',\n"
"'Cartesian 3D',\nor 'Axi Symmetric'".format(self.solver.CoordinateSystem)
)
solverSection = MgDyn2D.getMagnetodynamic2DSolver(equation)
solverPostSection = MgDyn2D.getMagnetodynamic2DSolverPost(equation)
for body in activeIn: