From 2f53721d9d979d94a24d5a89e0a5f51dcd0166e0 Mon Sep 17 00:00:00 2001 From: "Zheng, Lei" Date: Mon, 16 Dec 2019 06:58:31 +0800 Subject: [PATCH 1/9] Gui: fix Std_Transform tool The problem is caused by tracking of editing object placement introduced in b25ad5e085a42800c0ebd7a507233f081fcee7ef. After this commit, any editing object can disable placement tracking by calling Gui::Document::setEditingTransform() inside either ViewProvider::startEditing() or setEditingViewProvider(). --- src/Gui/Document.cpp | 18 ++++++++++-------- src/Gui/ViewProviderDragger.cpp | 1 + src/Gui/ViewProviderLink.cpp | 1 + 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/src/Gui/Document.cpp b/src/Gui/Document.cpp index 4cc095cc4f..ebd580e1d7 100644 --- a/src/Gui/Document.cpp +++ b/src/Gui/Document.cpp @@ -404,19 +404,21 @@ bool Document::setEdit(Gui::ViewProvider* p, int ModNum, const char *subname) d->_editSubname = subname; } - d->_editMode = ModNum; - d->_editViewProvider = svp->startEditing(ModNum); - if(!d->_editViewProvider) { - d->_editViewProviderParent = 0; - FC_LOG("object '" << sobj->getFullName() << "' refuse to edit"); - return false; - } - auto sobjs = obj->getSubObjectList(subname); d->_editObjs.clear(); d->_editObjs.insert(sobjs.begin(),sobjs.end()); d->_editingObject = sobj; + d->_editMode = ModNum; + d->_editViewProvider = svp->startEditing(ModNum); + if(!d->_editViewProvider) { + d->_editViewProviderParent = 0; + d->_editObjs.clear(); + d->_editingObject = 0; + FC_LOG("object '" << sobj->getFullName() << "' refuse to edit"); + return false; + } + if(view3d) { view3d->getViewer()->setEditingViewProvider(d->_editViewProvider,ModNum); d->_editingViewer = view3d->getViewer(); diff --git a/src/Gui/ViewProviderDragger.cpp b/src/Gui/ViewProviderDragger.cpp index 179debe59c..66b27b6e54 100644 --- a/src/Gui/ViewProviderDragger.cpp +++ b/src/Gui/ViewProviderDragger.cpp @@ -214,6 +214,7 @@ void ViewProviderDragger::setEditViewer(Gui::View3DInventorViewer* viewer, int M csysDragger->setUpAutoScale(viewer->getSoRenderManager()->getCamera()); auto mat = viewer->getDocument()->getEditingTransform(); + viewer->getDocument()->setEditingTransform(mat); auto feat = dynamic_cast(getObject()); if(feat) { auto matInverse = feat->Placement.getValue().toMatrix(); diff --git a/src/Gui/ViewProviderLink.cpp b/src/Gui/ViewProviderLink.cpp index 5aa2395506..9d3d1bc24e 100644 --- a/src/Gui/ViewProviderLink.cpp +++ b/src/Gui/ViewProviderLink.cpp @@ -2408,6 +2408,7 @@ bool ViewProviderLink::initDraggingPlacement() { dragCtx.reset(new DraggerContext); dragCtx->preTransform = doc->getEditingTransform(); + doc->setEditingTransform(dragCtx->preTransform); const auto &pla = ext->getPlacementProperty()? ext->getPlacementValue():ext->getLinkPlacementValue(); From f7fb8e349da1333c46151498c40e5a0a37fd18b8 Mon Sep 17 00:00:00 2001 From: "Zheng, Lei" Date: Sat, 14 Dec 2019 21:23:11 +0800 Subject: [PATCH 2/9] Gui: fix Document::signalInEdit Make it sure it is signaled with the correct document --- src/Gui/Document.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Gui/Document.cpp b/src/Gui/Document.cpp index ebd580e1d7..d9e9ef5a9a 100644 --- a/src/Gui/Document.cpp +++ b/src/Gui/Document.cpp @@ -426,8 +426,10 @@ bool Document::setEdit(Gui::ViewProvider* p, int ModNum, const char *subname) Gui::TaskView::TaskDialog* dlg = Gui::Control().activeDialog(); if (dlg) dlg->setDocumentName(this->getDocument()->getName()); - if (d->_editViewProvider->isDerivedFrom(ViewProviderDocumentObject::getClassTypeId())) - signalInEdit(*(static_cast(d->_editViewProvider))); + if (d->_editViewProvider->isDerivedFrom(ViewProviderDocumentObject::getClassTypeId())) { + auto vpd = static_cast(d->_editViewProvider); + vpd->getDocument()->signalInEdit(*vpd); + } App::AutoTransaction::setEnable(false); return true; From 64a7e2408032f9748daad4cd09991cdfe167747e Mon Sep 17 00:00:00 2001 From: "Zheng, Lei" Date: Sat, 14 Dec 2019 21:26:41 +0800 Subject: [PATCH 3/9] Gui: fix DAG view icon sync problem --- src/Gui/DAGView/DAGModel.cpp | 23 ++++++++++------------- src/Gui/DAGView/DAGModel.h | 2 +- src/Gui/DAGView/DAGModelGraph.h | 2 ++ 3 files changed, 13 insertions(+), 14 deletions(-) diff --git a/src/Gui/DAGView/DAGModel.cpp b/src/Gui/DAGView/DAGModel.cpp index 6d56aaf83b..b292d115cf 100644 --- a/src/Gui/DAGView/DAGModel.cpp +++ b/src/Gui/DAGView/DAGModel.cpp @@ -246,26 +246,21 @@ void Model::slotNewObject(const ViewProviderDocumentObject &VPDObjectIn) auto *rectangle = (*theGraph)[virginVertex].rectangle.get(); rectangle->setEditingBrush(QBrush(Qt::yellow)); - (*theGraph)[virginVertex].icon->setPixmap(VPDObjectIn.getIcon().pixmap(iconSize, iconSize)); + auto icon = (*theGraph)[virginVertex].icon; + icon->setPixmap(VPDObjectIn.getIcon().pixmap(iconSize, iconSize)); (*theGraph)[virginVertex].stateIcon->setPixmap(passPixmap); (*theGraph)[virginVertex].text->setFont(this->font()); + (*theGraph)[virginVertex].connChangeIcon = + const_cast(VPDObjectIn).signalChangeIcon.connect( + boost::bind(&Model::slotChangeIcon, this, boost::cref(VPDObjectIn), icon)); graphDirty = true; - - //we are here before python objects are instantiated. so at this point - //the getIcon method doesn't reflect the python override. - //so we hack in a delay to get the latest icon and set it for the graphics item. - lastAddedVertex = virginVertex; - QTimer::singleShot(0, this, SLOT(iconUpdateSlot())); + lastAddedVertex = Graph::null_vertex(); } -void Model::iconUpdateSlot() +void Model::slotChangeIcon(const ViewProviderDocumentObject &VPDObjectIn, std::shared_ptr icon) { - if (lastAddedVertex == Graph::null_vertex()) - return; - const ViewProviderDocumentObject *VPDObject = findRecord(lastAddedVertex, *graphLink).VPDObject; - (*theGraph)[lastAddedVertex].icon->setPixmap(VPDObject->getIcon().pixmap(iconSize, iconSize)); - lastAddedVertex = Graph::null_vertex(); + icon->setPixmap(VPDObjectIn.getIcon().pixmap(iconSize, iconSize)); this->invalidate(); } @@ -286,6 +281,8 @@ void Model::slotDeleteObject(const ViewProviderDocumentObject &VPDObjectIn) if (vertex == lastAddedVertex) lastAddedVertex = Graph::null_vertex(); + + (*theGraph)[vertex].connChangeIcon.disconnect(); //remove the actual vertex. boost::clear_vertex(vertex, *theGraph); diff --git a/src/Gui/DAGView/DAGModel.h b/src/Gui/DAGView/DAGModel.h index e39b24dcbb..022f3c3401 100644 --- a/src/Gui/DAGView/DAGModel.h +++ b/src/Gui/DAGView/DAGModel.h @@ -81,7 +81,6 @@ namespace Gui void renameRejectedSlot(); void editingStartSlot(); void editingFinishedSlot(); - void iconUpdateSlot(); //!< needed because python objects are not ready. private: Model(){} @@ -101,6 +100,7 @@ namespace Gui void slotChangeObject(const Gui::ViewProviderDocumentObject &VPDObjectIn, const App::Property& propertyIn); void slotInEdit(const Gui::ViewProviderDocumentObject &VPDObjectIn); void slotResetEdit(const Gui::ViewProviderDocumentObject &VPDObjectIn); + void slotChangeIcon(const Gui::ViewProviderDocumentObject &VPDObjectIn, std::shared_ptr icon); std::shared_ptr graphLink; std::shared_ptr theGraph; diff --git a/src/Gui/DAGView/DAGModelGraph.h b/src/Gui/DAGView/DAGModelGraph.h index 0376cb3b63..b605872d87 100644 --- a/src/Gui/DAGView/DAGModelGraph.h +++ b/src/Gui/DAGView/DAGModelGraph.h @@ -35,6 +35,7 @@ #include #include #include +#include #include "DAGRectItem.h" @@ -79,6 +80,7 @@ namespace Gui std::shared_ptr stateIcon; //!< visible Icon std::shared_ptr icon; //!< icon std::shared_ptr text; //!< text + boost::signals2::connection connChangeIcon; int row; //!< row for this entry. ColumnMask column; //!< column number containing the point. int topoSortIndex; From 6afc4851b35bb1e29c19309745e12664e94c9701 Mon Sep 17 00:00:00 2001 From: "Zheng, Lei" Date: Sat, 14 Dec 2019 21:29:43 +0800 Subject: [PATCH 4/9] Gui: fix DAG view property link update --- src/Gui/DAGView/DAGModel.cpp | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/Gui/DAGView/DAGModel.cpp b/src/Gui/DAGView/DAGModel.cpp index b292d115cf..6bfec76745 100644 --- a/src/Gui/DAGView/DAGModel.cpp +++ b/src/Gui/DAGView/DAGModel.cpp @@ -310,18 +310,7 @@ void Model::slotChangeObject(const ViewProviderDocumentObject &VPDObjectIn, cons auto *text = (*theGraph)[record.vertex].text.get(); text->setPlainText(QString::fromUtf8(record.DObject->Label.getValue())); } - - //link changes. these require a recalculation of connectors. - const static std::unordered_set linkTypes = - { - "App::PropertyLink", - "App::PropertyLinkList", - "App::PropertyLinkSub", - "App::PropertyLinkSubList", - "App::PropertyLinkPickList" - }; - - if (linkTypes.find(propertyIn.getTypeId().getName()) != linkTypes.end()) + else if (propertyIn.isDerivedFrom(App::PropertyLinkBase::getClassTypeId())) { const GraphLinkRecord &record = findRecord(&VPDObjectIn, *graphLink); boost::clear_vertex(record.vertex, *theGraph); From 59c6e38714e78ae9b68babf3cca19b03a26bcca5 Mon Sep 17 00:00:00 2001 From: "Zheng, Lei" Date: Sat, 14 Dec 2019 21:29:54 +0800 Subject: [PATCH 5/9] Gui: change DAG view selection behavior If there is selection, then DAG view will show the owner document of the resolved selected object instead of the active document. --- src/Gui/DAGView/DAGModel.cpp | 6 ++++++ src/Gui/DAGView/DAGView.cpp | 39 ++++++++++++++++++++++-------------- 2 files changed, 30 insertions(+), 15 deletions(-) diff --git a/src/Gui/DAGView/DAGModel.cpp b/src/Gui/DAGView/DAGModel.cpp index 6bfec76745..e4bb87c1a5 100644 --- a/src/Gui/DAGView/DAGModel.cpp +++ b/src/Gui/DAGView/DAGModel.cpp @@ -150,6 +150,12 @@ Model::Model(QObject *parentIn, const Gui::Document &documentIn) : QGraphicsScen connectChgObject = documentIn.signalChangedObject.connect(boost::bind(&Model::slotChangeObject, this, _1, _2)); connectEdtObject = documentIn.signalInEdit.connect(boost::bind(&Model::slotInEdit, this, _1)); connectResObject = documentIn.signalResetEdit.connect(boost::bind(&Model::slotResetEdit, this, _1)); + + for (auto obj : documentIn.getDocument()->getObjects()) { + auto vpd = Base::freecad_dynamic_cast(documentIn.getViewProvider(obj)); + if (vpd) + slotNewObject(*vpd); + } } Model::~Model() diff --git a/src/Gui/DAGView/DAGView.cpp b/src/Gui/DAGView/DAGView.cpp index 5742f1e7ff..c4820b3560 100644 --- a/src/Gui/DAGView/DAGView.cpp +++ b/src/Gui/DAGView/DAGView.cpp @@ -69,6 +69,8 @@ View::~View() void View::slotActiveDocument(const Document &documentIn) { + if (Gui::Selection().hasSelection()) + return; ModelMap::const_iterator it = modelMap.find(&documentIn); if (it == modelMap.end()) { @@ -98,24 +100,31 @@ void View::awakeSlot() void View::onSelectionChanged(const SelectionChanges& msg) { - //dispatch to appropriate document. - ModelMap::iterator it; - for (auto it = modelMap.begin(); it != modelMap.end(); ++it) - { - if (std::string(it->first->getDocument()->getName()) == std::string(msg.pDocName)) - { - it->second->selectionChanged(msg); + switch(msg.Type) { + case SelectionChanges::AddSelection: + case SelectionChanges::RmvSelection: + case SelectionChanges::SetSelection: + if (!msg.pDocName || !msg.pDocName[0]) + return; + break; + case SelectionChanges::ClrSelection: + if (!msg.pDocName || !msg.pDocName[0]) { + for (auto &v : modelMap) { + v.second->selectionChanged(msg); + } return; } + break; + default: + return; } - - //FIXME: why am I getting a spontaneous event with an empty name? - //also getting events after the document has been removed from modelMap. - //just ignore for now. -// std::ostringstream stream; -// stream << std::endl << "couldn't find document of name: " << std::string(msg.pDocName) << std::endl << std::endl; -// Base::Console().Warning(stream.str().c_str()); -// assert(0); //no document of name. + auto doc = Gui::Application::Instance->getDocument(msg.pDocName); + if (!doc) return; + auto &model = modelMap[doc]; + if(!model) + model = std::make_shared(this, *doc); + this->setScene(model.get()); + model->selectionChanged(msg); } From d1dc813a809c34faa61db2ce56b44601284b7e10 Mon Sep 17 00:00:00 2001 From: "luz.paz" Date: Fri, 20 Dec 2019 13:07:42 -0500 Subject: [PATCH 6/9] TD: fix header uniformity This PR fixes header uniformity across all TechDraw WB. --- src/Mod/TechDraw/App/AppTechDrawPy.cpp | 6 +++--- src/Mod/TechDraw/App/DrawPage.cpp | 2 +- src/Mod/TechDraw/App/DrawPage.h | 2 +- src/Mod/TechDraw/App/DrawProjectSplit.cpp | 2 +- src/Mod/TechDraw/App/DrawProjectSplit.h | 2 +- src/Mod/TechDraw/App/DrawSVGTemplate.cpp | 2 +- src/Mod/TechDraw/App/DrawView.cpp | 2 +- src/Mod/TechDraw/App/DrawView.h | 2 +- src/Mod/TechDraw/App/DrawViewAnnotation.cpp | 2 +- src/Mod/TechDraw/App/DrawViewAnnotation.h | 2 +- src/Mod/TechDraw/App/DrawViewArch.cpp | 2 +- src/Mod/TechDraw/App/DrawViewArch.h | 2 +- src/Mod/TechDraw/App/DrawViewClip.cpp | 4 ++-- src/Mod/TechDraw/App/DrawViewClip.h | 4 ++-- src/Mod/TechDraw/App/DrawViewCollection.cpp | 2 +- src/Mod/TechDraw/App/DrawViewCollection.h | 2 +- src/Mod/TechDraw/App/DrawViewDetail.cpp | 2 +- src/Mod/TechDraw/App/DrawViewDetail.h | 3 ++- src/Mod/TechDraw/App/DrawViewDimExtentPyImp.cpp | 2 +- src/Mod/TechDraw/App/DrawViewDimensionPyImp.cpp | 2 +- src/Mod/TechDraw/App/DrawViewDraft.cpp | 2 +- src/Mod/TechDraw/App/DrawViewDraft.h | 2 +- src/Mod/TechDraw/App/DrawViewMulti.cpp | 2 +- src/Mod/TechDraw/App/DrawViewMulti.h | 6 +++--- src/Mod/TechDraw/App/DrawViewPart.cpp | 6 +++--- src/Mod/TechDraw/App/DrawViewPart.h | 6 +++--- src/Mod/TechDraw/App/DrawViewSection.cpp | 6 +++--- src/Mod/TechDraw/App/DrawViewSection.h | 6 +++--- src/Mod/TechDraw/App/DrawViewSpreadsheet.cpp | 4 ++-- src/Mod/TechDraw/App/DrawViewSymbol.cpp | 2 +- src/Mod/TechDraw/App/DrawViewSymbol.h | 2 +- src/Mod/TechDraw/App/PreCompiled.cpp | 2 +- src/Mod/TechDraw/App/PreCompiled.h | 2 +- src/Mod/TechDraw/App/PropertyCenterLineList.cpp | 2 +- src/Mod/TechDraw/App/PropertyCenterLineList.h | 2 +- src/Mod/TechDraw/App/PropertyCosmeticEdgeList.cpp | 2 +- src/Mod/TechDraw/App/PropertyCosmeticEdgeList.h | 2 +- src/Mod/TechDraw/App/PropertyCosmeticVertexList.cpp | 2 +- src/Mod/TechDraw/App/PropertyCosmeticVertexList.h | 2 +- src/Mod/TechDraw/App/PropertyGeomFormatList.cpp | 2 +- src/Mod/TechDraw/App/PropertyGeomFormatList.h | 2 +- src/Mod/TechDraw/Gui/AppTechDrawGui.cpp | 2 +- src/Mod/TechDraw/Gui/AppTechDrawGuiPy.cpp | 4 ++-- src/Mod/TechDraw/Gui/PreCompiled.cpp | 2 +- src/Mod/TechDraw/Gui/PreCompiled.h | 2 +- src/Mod/TechDraw/Gui/QGIDrawingTemplate.h | 4 ++-- src/Mod/TechDraw/Gui/TemplateTextField.cpp | 2 +- src/Mod/TechDraw/Gui/TemplateTextField.h | 2 +- src/Mod/TechDraw/InitGui.py | 2 +- 49 files changed, 67 insertions(+), 66 deletions(-) diff --git a/src/Mod/TechDraw/App/AppTechDrawPy.cpp b/src/Mod/TechDraw/App/AppTechDrawPy.cpp index c0c1a4328c..b7f3344c4b 100644 --- a/src/Mod/TechDraw/App/AppTechDrawPy.cpp +++ b/src/Mod/TechDraw/App/AppTechDrawPy.cpp @@ -1,7 +1,7 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2002 * - * Copyright (c) WandererFan (wandererfan@gmail.com) 2016 * -* * + * Copyright (c) 2002 Jürgen Riegel * + * Copyright (c) 2016 WandererFan * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/TechDraw/App/DrawPage.cpp b/src/Mod/TechDraw/App/DrawPage.cpp index 45ebfea0b4..4b9d33a15c 100644 --- a/src/Mod/TechDraw/App/DrawPage.cpp +++ b/src/Mod/TechDraw/App/DrawPage.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2002 * + * Copyright (c) 2002 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawPage.h b/src/Mod/TechDraw/App/DrawPage.h index b44d393000..8b403f2cd0 100644 --- a/src/Mod/TechDraw/App/DrawPage.h +++ b/src/Mod/TechDraw/App/DrawPage.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2007 * + * Copyright (c) 2007 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawProjectSplit.cpp b/src/Mod/TechDraw/App/DrawProjectSplit.cpp index 9626ef14ff..8626661ddc 100644 --- a/src/Mod/TechDraw/App/DrawProjectSplit.cpp +++ b/src/Mod/TechDraw/App/DrawProjectSplit.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) WandererFan (wandererfan@gmail.com) 2016 * + * Copyright (c) 2016 WandererFan * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawProjectSplit.h b/src/Mod/TechDraw/App/DrawProjectSplit.h index 7d1f5456ee..b7f4747fea 100644 --- a/src/Mod/TechDraw/App/DrawProjectSplit.h +++ b/src/Mod/TechDraw/App/DrawProjectSplit.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) WandererFan (wandererfan@gmail.com) 2016 * + * Copyright (c) 2016 WandererFan * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawSVGTemplate.cpp b/src/Mod/TechDraw/App/DrawSVGTemplate.cpp index 75360395de..bb8b0ad59f 100644 --- a/src/Mod/TechDraw/App/DrawSVGTemplate.cpp +++ b/src/Mod/TechDraw/App/DrawSVGTemplate.cpp @@ -1,6 +1,6 @@ /*************************************************************************** + * Copyright (c) 2002 Jürgen Riegel * * Copyright (c) 2014 Luke Parry * - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2002 * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawView.cpp b/src/Mod/TechDraw/App/DrawView.cpp index 1024f99da4..7fe1d61ce1 100644 --- a/src/Mod/TechDraw/App/DrawView.cpp +++ b/src/Mod/TechDraw/App/DrawView.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2002 * + * Copyright (c) 2002 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawView.h b/src/Mod/TechDraw/App/DrawView.h index 84ce5b1350..b863623b1e 100644 --- a/src/Mod/TechDraw/App/DrawView.h +++ b/src/Mod/TechDraw/App/DrawView.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2007 * + * Copyright (c) 2007 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawViewAnnotation.cpp b/src/Mod/TechDraw/App/DrawViewAnnotation.cpp index ab9a3b511a..0f58ce6987 100644 --- a/src/Mod/TechDraw/App/DrawViewAnnotation.cpp +++ b/src/Mod/TechDraw/App/DrawViewAnnotation.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Yorik van Havre (yorik@uncreated.net) 2012 * + * Copyright (c) 2012 Yorik van Havre * * Copyright (c) 2013 Luke Parry * * * * This file is part of the FreeCAD CAx development system. * diff --git a/src/Mod/TechDraw/App/DrawViewAnnotation.h b/src/Mod/TechDraw/App/DrawViewAnnotation.h index edc7780120..4e70cb386d 100644 --- a/src/Mod/TechDraw/App/DrawViewAnnotation.h +++ b/src/Mod/TechDraw/App/DrawViewAnnotation.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Yorik van Havre (yorik@uncreated.net 2012) * + * Copyright (c) 2012 Yorik van Havre * * Copyright (c) 2013 Luke Parry * * * * This file is part of the FreeCAD CAx development system. * diff --git a/src/Mod/TechDraw/App/DrawViewArch.cpp b/src/Mod/TechDraw/App/DrawViewArch.cpp index 9e3479c02d..8fd53be71a 100644 --- a/src/Mod/TechDraw/App/DrawViewArch.cpp +++ b/src/Mod/TechDraw/App/DrawViewArch.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) York van Havre 2016 yorik@uncreated.net * + * Copyright (c) 2016 York van Havre * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawViewArch.h b/src/Mod/TechDraw/App/DrawViewArch.h index cc1baf6214..de97a6bb05 100644 --- a/src/Mod/TechDraw/App/DrawViewArch.h +++ b/src/Mod/TechDraw/App/DrawViewArch.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) York van Havre 2016 yorik@uncreated.net * + * Copyright (c) 2016 York van Havre * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawViewClip.cpp b/src/Mod/TechDraw/App/DrawViewClip.cpp index 5c3154be27..a7af72171c 100644 --- a/src/Mod/TechDraw/App/DrawViewClip.cpp +++ b/src/Mod/TechDraw/App/DrawViewClip.cpp @@ -1,6 +1,6 @@ /*************************************************************************** - * Copyright (c) Yorik van Havre 2012 * - * Copyright (c) WandererFan 2015 * + * Copyright (c) 2012 Yorik van Havre * + * Copyright (c) 2015 WandererFan * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawViewClip.h b/src/Mod/TechDraw/App/DrawViewClip.h index 43a86300be..ce5c9ca138 100644 --- a/src/Mod/TechDraw/App/DrawViewClip.h +++ b/src/Mod/TechDraw/App/DrawViewClip.h @@ -1,6 +1,6 @@ /*************************************************************************** - * Copyright (c) Yorik van Havre 2012 * - * Copyright (c) WandererFan 2015 * + * Copyright (c) 2012 Yorik van Havre * + * Copyright (c) 2015 WandererFan * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawViewCollection.cpp b/src/Mod/TechDraw/App/DrawViewCollection.cpp index f23409cd48..eb10970211 100644 --- a/src/Mod/TechDraw/App/DrawViewCollection.cpp +++ b/src/Mod/TechDraw/App/DrawViewCollection.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2002 * + * Copyright (c) 2002 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawViewCollection.h b/src/Mod/TechDraw/App/DrawViewCollection.h index 6cb6cb53e7..d7936b091c 100644 --- a/src/Mod/TechDraw/App/DrawViewCollection.h +++ b/src/Mod/TechDraw/App/DrawViewCollection.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2007 * + * Copyright (c) 2007 Jürgen Riegel * * Copyright (c) 2013 Luke Parry * * * * This file is part of the FreeCAD CAx development system. * diff --git a/src/Mod/TechDraw/App/DrawViewDetail.cpp b/src/Mod/TechDraw/App/DrawViewDetail.cpp index a7a8b044a7..f6467daf57 100644 --- a/src/Mod/TechDraw/App/DrawViewDetail.cpp +++ b/src/Mod/TechDraw/App/DrawViewDetail.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) WandererFan (wandererfan@gmail.com) 2016 * + * Copyright (c) 2016 WandererFan * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawViewDetail.h b/src/Mod/TechDraw/App/DrawViewDetail.h index ae31bd0d27..1ed6577982 100644 --- a/src/Mod/TechDraw/App/DrawViewDetail.h +++ b/src/Mod/TechDraw/App/DrawViewDetail.h @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) WandererFan (wandererfan@gmail.com) 2016 * + * Copyright (c) 2016 WandererFan * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/TechDraw/App/DrawViewDimExtentPyImp.cpp b/src/Mod/TechDraw/App/DrawViewDimExtentPyImp.cpp index 8bb9b68ec6..e72589e2d4 100644 --- a/src/Mod/TechDraw/App/DrawViewDimExtentPyImp.cpp +++ b/src/Mod/TechDraw/App/DrawViewDimExtentPyImp.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) WandererFan (wandererfan@gmail.com) 2019 * + * Copyright (c) 2019 WandererFan * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawViewDimensionPyImp.cpp b/src/Mod/TechDraw/App/DrawViewDimensionPyImp.cpp index 28bf85b421..f78ab170b1 100644 --- a/src/Mod/TechDraw/App/DrawViewDimensionPyImp.cpp +++ b/src/Mod/TechDraw/App/DrawViewDimensionPyImp.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) WandererFan (wandererfan@gmail.com) 2018 * + * Copyright (c) 2018 WandererFan * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawViewDraft.cpp b/src/Mod/TechDraw/App/DrawViewDraft.cpp index 5bdd98ba2a..df94df3dfc 100644 --- a/src/Mod/TechDraw/App/DrawViewDraft.cpp +++ b/src/Mod/TechDraw/App/DrawViewDraft.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) WandererFan - 2016 (wandererfan@gmail.com) * + * Copyright (c) 2016 WandererFan * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawViewDraft.h b/src/Mod/TechDraw/App/DrawViewDraft.h index fb2967af65..957511e4fa 100644 --- a/src/Mod/TechDraw/App/DrawViewDraft.h +++ b/src/Mod/TechDraw/App/DrawViewDraft.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) WandererFan - 2016 (wandererfan@gmail.com) * + * Copyright (c) 2016 WandererFan * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawViewMulti.cpp b/src/Mod/TechDraw/App/DrawViewMulti.cpp index eba7c98f5a..2eecd5d0b1 100644 --- a/src/Mod/TechDraw/App/DrawViewMulti.cpp +++ b/src/Mod/TechDraw/App/DrawViewMulti.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) WandererFan (wandererfan@gmail.com) 2016 * + * Copyright (c) 2016 WandererFan * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawViewMulti.h b/src/Mod/TechDraw/App/DrawViewMulti.h index eeb90de984..2a6fb8d34b 100644 --- a/src/Mod/TechDraw/App/DrawViewMulti.h +++ b/src/Mod/TechDraw/App/DrawViewMulti.h @@ -1,7 +1,7 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2007 * - * Copyright (c) Luke Parry (l.parry@warwick.ac.uk) 2013 * - * Copyright (c) WandererFan (wandererfan@gmail.com) 2016 * + * Copyright (c) 2007 Jürgen Riegel * + * Copyright (c) 2013 Luke Parry * + * Copyright (c) 2016 WandererFan * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/TechDraw/App/DrawViewPart.cpp b/src/Mod/TechDraw/App/DrawViewPart.cpp index 634f2c1309..4e16733989 100644 --- a/src/Mod/TechDraw/App/DrawViewPart.cpp +++ b/src/Mod/TechDraw/App/DrawViewPart.cpp @@ -1,7 +1,7 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2002 * - * Copyright (c) Luke Parry (l.parry@warwick.ac.uk) 2013 * - * Copyright (c) WandererFan (wandererfan@gmail.com) 2016 * + * Copyright (c) 2002 Jürgen Riegel * + * Copyright (c) 2013 Luke Parry * + * Copyright (c) 2016 WandererFan * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawViewPart.h b/src/Mod/TechDraw/App/DrawViewPart.h index 05397ee818..444b9d09f1 100644 --- a/src/Mod/TechDraw/App/DrawViewPart.h +++ b/src/Mod/TechDraw/App/DrawViewPart.h @@ -1,7 +1,7 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2007 * - * Copyright (c) Luke Parry (l.parry@warwick.ac.uk) 2013 * - * Copyright (c) WandererFan (wandererfan@gmail.com) 2016 * + * Copyright (c) 2007 Jürgen Riegel * + * Copyright (c) 2013 Luke Parry * + * Copyright (c) 2016 WandererFan * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawViewSection.cpp b/src/Mod/TechDraw/App/DrawViewSection.cpp index 55fb39f072..5838475eae 100644 --- a/src/Mod/TechDraw/App/DrawViewSection.cpp +++ b/src/Mod/TechDraw/App/DrawViewSection.cpp @@ -1,7 +1,7 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2002 * - * Copyright (c) Luke Parry (l.parry@warwick.ac.uk) 2013 * - * Copyright (c) WandererFan (wandererfan@gmail.com) 2016 * + * Copyright (c) 2002 Jürgen Riegel * + * Copyright (c) 2013 Luke Parry * + * Copyright (c) 2016 WandererFan * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawViewSection.h b/src/Mod/TechDraw/App/DrawViewSection.h index ab8fe94008..4701f76f8e 100644 --- a/src/Mod/TechDraw/App/DrawViewSection.h +++ b/src/Mod/TechDraw/App/DrawViewSection.h @@ -1,7 +1,7 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2007 * - * Copyright (c) Luke Parry (l.parry@warwick.ac.uk) 2013 * - * Copyright (c) WandererFan (wandererfan@gmail.com) 2016 * + * Copyright (c) 2007 Jürgen Riegel * + * Copyright (c) 2013 Luke Parry * + * Copyright (c) 2016 WandererFan * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/TechDraw/App/DrawViewSpreadsheet.cpp b/src/Mod/TechDraw/App/DrawViewSpreadsheet.cpp index ec1003f7aa..b661f2ac0d 100644 --- a/src/Mod/TechDraw/App/DrawViewSpreadsheet.cpp +++ b/src/Mod/TechDraw/App/DrawViewSpreadsheet.cpp @@ -1,6 +1,6 @@ /*************************************************************************** - * Copyright (c) Yorik van Havre (yorik@uncreated.net) 2015 * - * Copyright (c) 2016 WandererFan (wandererfan@gmail.com) * + * Copyright (c) 2015 Yorik van Havre * + * Copyright (c) 2016 WandererFan * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawViewSymbol.cpp b/src/Mod/TechDraw/App/DrawViewSymbol.cpp index ac9e421284..26319064a5 100644 --- a/src/Mod/TechDraw/App/DrawViewSymbol.cpp +++ b/src/Mod/TechDraw/App/DrawViewSymbol.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Yorik van Havre (yorik@uncreated.net) 2013 * + * Copyright (c) 2013 Yorik van Havre * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/DrawViewSymbol.h b/src/Mod/TechDraw/App/DrawViewSymbol.h index fdfb3f71ea..027efd3fdc 100644 --- a/src/Mod/TechDraw/App/DrawViewSymbol.h +++ b/src/Mod/TechDraw/App/DrawViewSymbol.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Yorik van Havre (yorik@uncreated.net 2013) * + * Copyright (c) 2013 Yorik van Havre * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/PreCompiled.cpp b/src/Mod/TechDraw/App/PreCompiled.cpp index 3139e21f64..09241c2335 100644 --- a/src/Mod/TechDraw/App/PreCompiled.cpp +++ b/src/Mod/TechDraw/App/PreCompiled.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2007 * + * Copyright (c) 2007 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/PreCompiled.h b/src/Mod/TechDraw/App/PreCompiled.h index 9b8799a1b2..d9659fa58d 100644 --- a/src/Mod/TechDraw/App/PreCompiled.h +++ b/src/Mod/TechDraw/App/PreCompiled.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2007 * + * Copyright (c) 2007 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/PropertyCenterLineList.cpp b/src/Mod/TechDraw/App/PropertyCenterLineList.cpp index 90d225d227..fbe6f29d3b 100644 --- a/src/Mod/TechDraw/App/PropertyCenterLineList.cpp +++ b/src/Mod/TechDraw/App/PropertyCenterLineList.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2010 * + * Copyright (c) 2010 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/PropertyCenterLineList.h b/src/Mod/TechDraw/App/PropertyCenterLineList.h index bab060fccb..d42bb0bec7 100644 --- a/src/Mod/TechDraw/App/PropertyCenterLineList.h +++ b/src/Mod/TechDraw/App/PropertyCenterLineList.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2010 * + * Copyright (c) 2010 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/PropertyCosmeticEdgeList.cpp b/src/Mod/TechDraw/App/PropertyCosmeticEdgeList.cpp index 40090eb250..b1bd9d22c1 100644 --- a/src/Mod/TechDraw/App/PropertyCosmeticEdgeList.cpp +++ b/src/Mod/TechDraw/App/PropertyCosmeticEdgeList.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2010 * + * Copyright (c) 2010 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/PropertyCosmeticEdgeList.h b/src/Mod/TechDraw/App/PropertyCosmeticEdgeList.h index 1469a48e00..4b36524d3c 100644 --- a/src/Mod/TechDraw/App/PropertyCosmeticEdgeList.h +++ b/src/Mod/TechDraw/App/PropertyCosmeticEdgeList.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2010 * + * Copyright (c) 2010 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/PropertyCosmeticVertexList.cpp b/src/Mod/TechDraw/App/PropertyCosmeticVertexList.cpp index 16a2722628..bb0bf12335 100644 --- a/src/Mod/TechDraw/App/PropertyCosmeticVertexList.cpp +++ b/src/Mod/TechDraw/App/PropertyCosmeticVertexList.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2010 * + * Copyright (c) 2010 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/PropertyCosmeticVertexList.h b/src/Mod/TechDraw/App/PropertyCosmeticVertexList.h index d6b555ea15..6cb2e95922 100644 --- a/src/Mod/TechDraw/App/PropertyCosmeticVertexList.h +++ b/src/Mod/TechDraw/App/PropertyCosmeticVertexList.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2010 * + * Copyright (c) 2010 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/PropertyGeomFormatList.cpp b/src/Mod/TechDraw/App/PropertyGeomFormatList.cpp index 4e20df6e80..7ffdc01467 100644 --- a/src/Mod/TechDraw/App/PropertyGeomFormatList.cpp +++ b/src/Mod/TechDraw/App/PropertyGeomFormatList.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2010 * + * Copyright (c) 2010 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/App/PropertyGeomFormatList.h b/src/Mod/TechDraw/App/PropertyGeomFormatList.h index ae7803f73b..fcdbc75f3a 100644 --- a/src/Mod/TechDraw/App/PropertyGeomFormatList.h +++ b/src/Mod/TechDraw/App/PropertyGeomFormatList.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2010 * + * Copyright (c) 2010 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/Gui/AppTechDrawGui.cpp b/src/Mod/TechDraw/Gui/AppTechDrawGui.cpp index 10b6d3893b..15c99576dd 100644 --- a/src/Mod/TechDraw/Gui/AppTechDrawGui.cpp +++ b/src/Mod/TechDraw/Gui/AppTechDrawGui.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2007 * + * Copyright (c) 2007 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/Gui/AppTechDrawGuiPy.cpp b/src/Mod/TechDraw/Gui/AppTechDrawGuiPy.cpp index 1cb72cfa75..40762c5864 100644 --- a/src/Mod/TechDraw/Gui/AppTechDrawGuiPy.cpp +++ b/src/Mod/TechDraw/Gui/AppTechDrawGuiPy.cpp @@ -1,6 +1,6 @@ /*************************************************************************** - * Copyright (c) WandererFan (wandererfan@gmail.com) 2016 * -* * + * Copyright (c) 2016 WandererFan * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/TechDraw/Gui/PreCompiled.cpp b/src/Mod/TechDraw/Gui/PreCompiled.cpp index 90814f0b6c..959870f85b 100644 --- a/src/Mod/TechDraw/Gui/PreCompiled.cpp +++ b/src/Mod/TechDraw/Gui/PreCompiled.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2007 * + * Copyright (c) 2007 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/Gui/PreCompiled.h b/src/Mod/TechDraw/Gui/PreCompiled.h index cafd404dce..c8c9f358dc 100644 --- a/src/Mod/TechDraw/Gui/PreCompiled.h +++ b/src/Mod/TechDraw/Gui/PreCompiled.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2007 * + * Copyright (c) 2007 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/Gui/QGIDrawingTemplate.h b/src/Mod/TechDraw/Gui/QGIDrawingTemplate.h index fad851118b..65427fefe8 100644 --- a/src/Mod/TechDraw/Gui/QGIDrawingTemplate.h +++ b/src/Mod/TechDraw/Gui/QGIDrawingTemplate.h @@ -1,7 +1,7 @@ /*************************************************************************** * Copyright (c) 2012-2014 Luke Parry * * * - * This file is part of the FreeCAD CAx development system. * + * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * * modify it under the terms of the GNU Library General Public * @@ -10,7 +10,7 @@ * * * This library is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU Library General Public License for more details. * * * * You should have received a copy of the GNU Library General Public * diff --git a/src/Mod/TechDraw/Gui/TemplateTextField.cpp b/src/Mod/TechDraw/Gui/TemplateTextField.cpp index 260df0e0fc..4f0d751815 100644 --- a/src/Mod/TechDraw/Gui/TemplateTextField.cpp +++ b/src/Mod/TechDraw/Gui/TemplateTextField.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Ian Rees (ian.rees@gmail.com) 2015 * + * Copyright (c) 2015 Ian Rees * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/Gui/TemplateTextField.h b/src/Mod/TechDraw/Gui/TemplateTextField.h index f78e3c22bc..c54049f867 100644 --- a/src/Mod/TechDraw/Gui/TemplateTextField.h +++ b/src/Mod/TechDraw/Gui/TemplateTextField.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Ian Rees (ian.rees@gmail.com) 2015 * + * Copyright (c) 2015 Ian Rees * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/TechDraw/InitGui.py b/src/Mod/TechDraw/InitGui.py index e4f7a32c52..072eee4000 100644 --- a/src/Mod/TechDraw/InitGui.py +++ b/src/Mod/TechDraw/InitGui.py @@ -6,7 +6,7 @@ # runs when the gui is up #*************************************************************************** -#* (c) Juergen Riegel (juergen.riegel@web.de) 2002 +#* (c) 2002 Juergen Riegel * #* * #* This file is part of the FreeCAD CAx development system. * #* * From 9e0507c0bc403a37c806f7adaf8cc5e34f775d54 Mon Sep 17 00:00:00 2001 From: "luz.paz" Date: Fri, 20 Dec 2019 13:30:05 -0500 Subject: [PATCH 7/9] Templates: fix header uniformity This PR fixes header uniformity across all template files. --- src/Tools/_TEMPLATE_/App/App_TEMPLATE_.cpp | 2 +- src/Tools/_TEMPLATE_/App/PreCompiled.cpp | 2 +- src/Tools/_TEMPLATE_/App/PreCompiled.h | 2 +- src/Tools/_TEMPLATE_/Gui/App_TEMPLATE_Gui.cpp | 2 +- src/Tools/_TEMPLATE_/Gui/Command.cpp | 2 +- src/Tools/_TEMPLATE_/Gui/PreCompiled.cpp | 2 +- src/Tools/_TEMPLATE_/Gui/PreCompiled.h | 2 +- src/Tools/_TEMPLATE_/Gui/Workbench.cpp | 2 +- src/Tools/_TEMPLATE_/Gui/Workbench.h | 2 +- src/Tools/generateTemplates/templateCPPFile.py | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/Tools/_TEMPLATE_/App/App_TEMPLATE_.cpp b/src/Tools/_TEMPLATE_/App/App_TEMPLATE_.cpp index 7385296172..1babbf973e 100644 --- a/src/Tools/_TEMPLATE_/App/App_TEMPLATE_.cpp +++ b/src/Tools/_TEMPLATE_/App/App_TEMPLATE_.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) YEAR YOUR NAME * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Tools/_TEMPLATE_/App/PreCompiled.cpp b/src/Tools/_TEMPLATE_/App/PreCompiled.cpp index c32e030c6d..68d7ea8a80 100644 --- a/src/Tools/_TEMPLATE_/App/PreCompiled.cpp +++ b/src/Tools/_TEMPLATE_/App/PreCompiled.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) YEAR YOUR NAME * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Tools/_TEMPLATE_/App/PreCompiled.h b/src/Tools/_TEMPLATE_/App/PreCompiled.h index 1ab6433715..7556c1fd3e 100644 --- a/src/Tools/_TEMPLATE_/App/PreCompiled.h +++ b/src/Tools/_TEMPLATE_/App/PreCompiled.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) YEAR YOUR NAME * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Tools/_TEMPLATE_/Gui/App_TEMPLATE_Gui.cpp b/src/Tools/_TEMPLATE_/Gui/App_TEMPLATE_Gui.cpp index d96b311ee6..e7019bcadc 100644 --- a/src/Tools/_TEMPLATE_/Gui/App_TEMPLATE_Gui.cpp +++ b/src/Tools/_TEMPLATE_/Gui/App_TEMPLATE_Gui.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) YEAR YOUR NAME * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Tools/_TEMPLATE_/Gui/Command.cpp b/src/Tools/_TEMPLATE_/Gui/Command.cpp index 7399a8851d..2f3420ff18 100644 --- a/src/Tools/_TEMPLATE_/Gui/Command.cpp +++ b/src/Tools/_TEMPLATE_/Gui/Command.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) YEAR YOUR NAME * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Tools/_TEMPLATE_/Gui/PreCompiled.cpp b/src/Tools/_TEMPLATE_/Gui/PreCompiled.cpp index c32e030c6d..68d7ea8a80 100644 --- a/src/Tools/_TEMPLATE_/Gui/PreCompiled.cpp +++ b/src/Tools/_TEMPLATE_/Gui/PreCompiled.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) YEAR YOUR NAME * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Tools/_TEMPLATE_/Gui/PreCompiled.h b/src/Tools/_TEMPLATE_/Gui/PreCompiled.h index 25ebdd6dfd..3475d3af9b 100644 --- a/src/Tools/_TEMPLATE_/Gui/PreCompiled.h +++ b/src/Tools/_TEMPLATE_/Gui/PreCompiled.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) YEAR YOUR NAME * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Tools/_TEMPLATE_/Gui/Workbench.cpp b/src/Tools/_TEMPLATE_/Gui/Workbench.cpp index 6587391b20..fe66b3ea01 100644 --- a/src/Tools/_TEMPLATE_/Gui/Workbench.cpp +++ b/src/Tools/_TEMPLATE_/Gui/Workbench.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) YEAR YOUR NAME * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Tools/_TEMPLATE_/Gui/Workbench.h b/src/Tools/_TEMPLATE_/Gui/Workbench.h index 58676eb428..dfe9eeb56e 100644 --- a/src/Tools/_TEMPLATE_/Gui/Workbench.h +++ b/src/Tools/_TEMPLATE_/Gui/Workbench.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) YEAR YOUR NAME * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Tools/generateTemplates/templateCPPFile.py b/src/Tools/generateTemplates/templateCPPFile.py index 227618d825..9bb5414d19 100644 --- a/src/Tools/generateTemplates/templateCPPFile.py +++ b/src/Tools/generateTemplates/templateCPPFile.py @@ -13,7 +13,7 @@ class TemplateCPPFile (template.ModelTemplate): Template = """ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) YEAR YOUR NAME * * * * This file is part of the FreeCAD CAx development system. * * * From 12b944984c5d9bfa45ed37bebe0748a05aa414a1 Mon Sep 17 00:00:00 2001 From: wmayer Date: Sat, 21 Dec 2019 16:12:25 +0100 Subject: [PATCH 8/9] [skip ci] fix header uniformity Set a real email address for headers in inspection and surface module --- src/Mod/Inspection/App/PreCompiled.cpp | 2 +- src/Mod/Inspection/App/PreCompiled.h | 2 +- src/Mod/Inspection/Gui/Command.cpp | 2 +- src/Mod/Inspection/Gui/PreCompiled.cpp | 2 +- src/Mod/Inspection/Gui/PreCompiled.h | 2 +- src/Mod/Inspection/Gui/Workbench.cpp | 2 +- src/Mod/Inspection/Gui/Workbench.h | 2 +- src/Mod/Sandbox/Gui/PreCompiled.cpp | 2 +- src/Mod/Spreadsheet/App/PreCompiled.cpp | 2 +- src/Mod/Surface/App/PreCompiled.cpp | 2 +- src/Mod/Surface/App/PreCompiled.h | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/Mod/Inspection/App/PreCompiled.cpp b/src/Mod/Inspection/App/PreCompiled.cpp index c32e030c6d..c74d61cf64 100644 --- a/src/Mod/Inspection/App/PreCompiled.cpp +++ b/src/Mod/Inspection/App/PreCompiled.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) 2011 Werner Mayer * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Inspection/App/PreCompiled.h b/src/Mod/Inspection/App/PreCompiled.h index d1a1e0e316..3ced7fcd7a 100644 --- a/src/Mod/Inspection/App/PreCompiled.h +++ b/src/Mod/Inspection/App/PreCompiled.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) 2011 Werner Mayer * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Inspection/Gui/Command.cpp b/src/Mod/Inspection/Gui/Command.cpp index 217c4a9b17..b8a7807e4c 100644 --- a/src/Mod/Inspection/Gui/Command.cpp +++ b/src/Mod/Inspection/Gui/Command.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) 2011 Werner Mayer * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Inspection/Gui/PreCompiled.cpp b/src/Mod/Inspection/Gui/PreCompiled.cpp index c32e030c6d..c74d61cf64 100644 --- a/src/Mod/Inspection/Gui/PreCompiled.cpp +++ b/src/Mod/Inspection/Gui/PreCompiled.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) 2011 Werner Mayer * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Inspection/Gui/PreCompiled.h b/src/Mod/Inspection/Gui/PreCompiled.h index 9053e5c404..51a9c83eca 100644 --- a/src/Mod/Inspection/Gui/PreCompiled.h +++ b/src/Mod/Inspection/Gui/PreCompiled.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) 2011 Werner Mayer * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Inspection/Gui/Workbench.cpp b/src/Mod/Inspection/Gui/Workbench.cpp index 8f0f89b4ee..57652841ce 100644 --- a/src/Mod/Inspection/Gui/Workbench.cpp +++ b/src/Mod/Inspection/Gui/Workbench.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) 2011 Werner Mayer * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Inspection/Gui/Workbench.h b/src/Mod/Inspection/Gui/Workbench.h index ee23a34beb..e545fc2270 100644 --- a/src/Mod/Inspection/Gui/Workbench.h +++ b/src/Mod/Inspection/Gui/Workbench.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) 2011 Werner Mayer * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Sandbox/Gui/PreCompiled.cpp b/src/Mod/Sandbox/Gui/PreCompiled.cpp index c32e030c6d..e6f3cb12fc 100644 --- a/src/Mod/Sandbox/Gui/PreCompiled.cpp +++ b/src/Mod/Sandbox/Gui/PreCompiled.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) 2009 Werner Mayer * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Spreadsheet/App/PreCompiled.cpp b/src/Mod/Spreadsheet/App/PreCompiled.cpp index 93ebe29987..3e85848b9a 100644 --- a/src/Mod/Spreadsheet/App/PreCompiled.cpp +++ b/src/Mod/Spreadsheet/App/PreCompiled.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2002 * + * Copyright (c) 2002 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Surface/App/PreCompiled.cpp b/src/Mod/Surface/App/PreCompiled.cpp index c32e030c6d..864a8235a6 100644 --- a/src/Mod/Surface/App/PreCompiled.cpp +++ b/src/Mod/Surface/App/PreCompiled.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) 2014 Nathan Miller * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Surface/App/PreCompiled.h b/src/Mod/Surface/App/PreCompiled.h index e7e27dffff..f44d96f627 100644 --- a/src/Mod/Surface/App/PreCompiled.h +++ b/src/Mod/Surface/App/PreCompiled.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) YEAR YOUR NAME * + * Copyright (c) 2014 Nathan Miller * * * * This file is part of the FreeCAD CAx development system. * * * From 73b8ee91ee383c4dd0327a3d9d1e22bb1d5dfc1d Mon Sep 17 00:00:00 2001 From: "luz.paz" Date: Sat, 21 Dec 2019 12:53:31 -0500 Subject: [PATCH 9/9] FEM: [skip ci] fix header uniformity This PR fixes header uniformity across all FEM WB files --- src/Mod/Fem/App/AppFem.cpp | 2 +- src/Mod/Fem/App/AppFemPy.cpp | 2 +- src/Mod/Fem/App/FemAnalysis.cpp | 2 +- src/Mod/Fem/App/FemAnalysis.h | 2 +- src/Mod/Fem/App/FemConstraint.cpp | 3 ++- src/Mod/Fem/App/FemConstraint.h | 3 ++- src/Mod/Fem/App/FemConstraintBearing.cpp | 3 ++- src/Mod/Fem/App/FemConstraintBearing.h | 3 ++- src/Mod/Fem/App/FemConstraintContact.cpp | 3 ++- src/Mod/Fem/App/FemConstraintContact.h | 3 ++- src/Mod/Fem/App/FemConstraintFixed.cpp | 3 ++- src/Mod/Fem/App/FemConstraintFixed.h | 3 ++- src/Mod/Fem/App/FemConstraintFluidBoundary.cpp | 3 ++- src/Mod/Fem/App/FemConstraintFluidBoundary.h | 3 ++- src/Mod/Fem/App/FemConstraintForce.cpp | 3 ++- src/Mod/Fem/App/FemConstraintForce.h | 3 ++- src/Mod/Fem/App/FemConstraintGear.cpp | 3 ++- src/Mod/Fem/App/FemConstraintGear.h | 3 ++- src/Mod/Fem/App/FemConstraintPlaneRotation.cpp | 3 ++- src/Mod/Fem/App/FemConstraintPlaneRotation.h | 3 ++- src/Mod/Fem/App/FemConstraintPulley.cpp | 3 ++- src/Mod/Fem/App/FemConstraintPulley.h | 3 ++- src/Mod/Fem/App/FemConstraintTransform.cpp | 3 ++- src/Mod/Fem/App/FemConstraintTransform.h | 3 ++- src/Mod/Fem/App/FemMesh.cpp | 2 +- src/Mod/Fem/App/FemMesh.h | 2 +- src/Mod/Fem/App/FemMeshObject.cpp | 2 +- src/Mod/Fem/App/FemMeshObject.h | 2 +- src/Mod/Fem/App/FemMeshProperty.cpp | 2 +- src/Mod/Fem/App/FemMeshProperty.h | 2 +- src/Mod/Fem/App/FemMeshPyImp.cpp | 2 +- src/Mod/Fem/App/FemMeshShapeNetgenObject.cpp | 2 +- src/Mod/Fem/App/FemMeshShapeNetgenObject.h | 2 +- src/Mod/Fem/App/FemMeshShapeObject.cpp | 2 +- src/Mod/Fem/App/FemMeshShapeObject.h | 2 +- src/Mod/Fem/App/FemResultObject.cpp | 2 +- src/Mod/Fem/App/FemResultObject.h | 2 +- src/Mod/Fem/App/FemSetElementsObject.cpp | 2 +- src/Mod/Fem/App/FemSetElementsObject.h | 2 +- src/Mod/Fem/App/FemSetFacesObject.cpp | 2 +- src/Mod/Fem/App/FemSetFacesObject.h | 2 +- src/Mod/Fem/App/FemSetGeometryObject.cpp | 2 +- src/Mod/Fem/App/FemSetGeometryObject.h | 2 +- src/Mod/Fem/App/FemSetNodesObject.cpp | 2 +- src/Mod/Fem/App/FemSetNodesObject.h | 2 +- src/Mod/Fem/App/FemSetObject.cpp | 2 +- src/Mod/Fem/App/FemSetObject.h | 2 +- src/Mod/Fem/App/FemSolverObject.h | 2 +- src/Mod/Fem/App/PreCompiled.cpp | 2 +- src/Mod/Fem/App/PreCompiled.h | 2 +- src/Mod/Fem/Gui/AppFemGui.cpp | 2 +- src/Mod/Fem/Gui/Command.cpp | 2 +- src/Mod/Fem/Gui/PreCompiled.cpp | 2 +- src/Mod/Fem/Gui/PreCompiled.h | 2 +- src/Mod/Fem/Gui/TaskAnalysisInfo.cpp | 2 +- src/Mod/Fem/Gui/TaskAnalysisInfo.h | 2 +- src/Mod/Fem/Gui/TaskCreateNodeSet.cpp | 2 +- src/Mod/Fem/Gui/TaskCreateNodeSet.h | 2 +- src/Mod/Fem/Gui/TaskDlgAnalysis.cpp | 2 +- src/Mod/Fem/Gui/TaskDlgAnalysis.h | 2 +- src/Mod/Fem/Gui/TaskDlgCreateNodeSet.cpp | 2 +- src/Mod/Fem/Gui/TaskDlgCreateNodeSet.h | 2 +- src/Mod/Fem/Gui/TaskDlgMeshShapeNetgen.cpp | 2 +- src/Mod/Fem/Gui/TaskDlgMeshShapeNetgen.h | 2 +- src/Mod/Fem/Gui/TaskDriver.cpp | 2 +- src/Mod/Fem/Gui/TaskDriver.h | 2 +- src/Mod/Fem/Gui/TaskFemConstraint.cpp | 3 ++- src/Mod/Fem/Gui/TaskFemConstraint.h | 3 ++- src/Mod/Fem/Gui/TaskFemConstraintBearing.cpp | 3 ++- src/Mod/Fem/Gui/TaskFemConstraintBearing.h | 3 ++- src/Mod/Fem/Gui/TaskFemConstraintFixed.cpp | 3 ++- src/Mod/Fem/Gui/TaskFemConstraintFixed.h | 3 ++- src/Mod/Fem/Gui/TaskFemConstraintFluidBoundary.cpp | 5 +++-- src/Mod/Fem/Gui/TaskFemConstraintForce.cpp | 3 ++- src/Mod/Fem/Gui/TaskFemConstraintForce.h | 3 ++- src/Mod/Fem/Gui/TaskFemConstraintGear.cpp | 3 ++- src/Mod/Fem/Gui/TaskFemConstraintGear.h | 3 ++- src/Mod/Fem/Gui/TaskFemConstraintPulley.cpp | 3 ++- src/Mod/Fem/Gui/TaskFemConstraintPulley.h | 3 ++- src/Mod/Fem/Gui/TaskObjectName.cpp | 2 +- src/Mod/Fem/Gui/TaskObjectName.h | 2 +- src/Mod/Fem/Gui/TaskTetParameter.cpp | 2 +- src/Mod/Fem/Gui/TaskTetParameter.h | 2 +- src/Mod/Fem/Gui/ViewProviderAnalysis.cpp | 2 +- src/Mod/Fem/Gui/ViewProviderAnalysis.h | 2 +- src/Mod/Fem/Gui/ViewProviderFemConstraint.cpp | 3 ++- src/Mod/Fem/Gui/ViewProviderFemConstraint.h | 3 ++- src/Mod/Fem/Gui/ViewProviderFemConstraintBearing.cpp | 3 ++- src/Mod/Fem/Gui/ViewProviderFemConstraintBearing.h | 3 ++- src/Mod/Fem/Gui/ViewProviderFemConstraintFixed.cpp | 3 ++- src/Mod/Fem/Gui/ViewProviderFemConstraintFixed.h | 3 ++- src/Mod/Fem/Gui/ViewProviderFemConstraintFluidBoundary.cpp | 3 ++- src/Mod/Fem/Gui/ViewProviderFemConstraintFluidBoundary.h | 3 ++- src/Mod/Fem/Gui/ViewProviderFemConstraintForce.cpp | 3 ++- src/Mod/Fem/Gui/ViewProviderFemConstraintForce.h | 3 ++- src/Mod/Fem/Gui/ViewProviderFemConstraintGear.cpp | 3 ++- src/Mod/Fem/Gui/ViewProviderFemConstraintGear.h | 3 ++- src/Mod/Fem/Gui/ViewProviderFemConstraintPulley.cpp | 3 ++- src/Mod/Fem/Gui/ViewProviderFemConstraintPulley.h | 3 ++- src/Mod/Fem/Gui/ViewProviderFemMesh.cpp | 2 +- src/Mod/Fem/Gui/ViewProviderFemMesh.h | 2 +- src/Mod/Fem/Gui/ViewProviderFemMeshShape.cpp | 2 +- src/Mod/Fem/Gui/ViewProviderFemMeshShape.h | 2 +- src/Mod/Fem/Gui/ViewProviderFemMeshShapeNetgen.cpp | 2 +- src/Mod/Fem/Gui/ViewProviderFemMeshShapeNetgen.h | 2 +- src/Mod/Fem/Gui/ViewProviderResult.cpp | 2 +- src/Mod/Fem/Gui/ViewProviderResult.h | 2 +- src/Mod/Fem/Gui/ViewProviderSetElements.cpp | 2 +- src/Mod/Fem/Gui/ViewProviderSetElements.h | 2 +- src/Mod/Fem/Gui/ViewProviderSetFaces.cpp | 2 +- src/Mod/Fem/Gui/ViewProviderSetFaces.h | 2 +- src/Mod/Fem/Gui/ViewProviderSetGeometry.cpp | 2 +- src/Mod/Fem/Gui/ViewProviderSetGeometry.h | 2 +- src/Mod/Fem/Gui/ViewProviderSetNodes.cpp | 2 +- src/Mod/Fem/Gui/ViewProviderSetNodes.h | 2 +- src/Mod/Fem/Gui/ViewProviderSolver.cpp | 2 +- src/Mod/Fem/Gui/ViewProviderSolver.h | 2 +- src/Mod/Fem/Init.py | 4 ++-- src/Mod/Fem/ObjectsFem.py | 3 +-- src/Mod/Fem/femcommands/commands.py | 3 +-- src/Mod/Fem/femcommands/manager.py | 5 ++--- src/Mod/Fem/femguiobjects/_TaskPanelFemSolverControl.py | 1 - .../_ViewProviderFemConstraintBodyHeatSource.py | 1 - src/Mod/Fem/femguiobjects/_ViewProviderFemMeshGmsh.py | 1 - src/Mod/Fem/feminout/convert2TetGen.py | 4 ++-- src/Mod/Fem/feminout/importCcxDatResults.py | 2 +- src/Mod/Fem/feminout/importCcxFrdResults.py | 6 +++--- src/Mod/Fem/feminout/importFenicsMesh.py | 2 +- src/Mod/Fem/feminout/importInpMesh.py | 2 +- src/Mod/Fem/feminout/importToolsFem.py | 2 +- src/Mod/Fem/feminout/importYamlJsonMesh.py | 2 +- src/Mod/Fem/feminout/importZ88Mesh.py | 3 +-- src/Mod/Fem/feminout/importZ88O2Results.py | 2 +- src/Mod/Fem/feminout/readFenicsXDMF.py | 3 +-- src/Mod/Fem/feminout/readFenicsXML.py | 2 +- src/Mod/Fem/feminout/writeFenicsXDMF.py | 2 +- src/Mod/Fem/feminout/writeFenicsXML.py | 2 +- src/Mod/Fem/femmesh/femmesh2mesh.py | 2 +- src/Mod/Fem/femmesh/gmshtools.py | 2 +- src/Mod/Fem/femmesh/meshtools.py | 2 +- src/Mod/Fem/femobjects/FemConstraint.py | 1 - src/Mod/Fem/femobjects/_FemConstraintBodyHeatSource.py | 1 - .../Fem/femobjects/_FemConstraintElectrostaticPotential.py | 1 - src/Mod/Fem/femobjects/_FemConstraintFlowVelocity.py | 1 - src/Mod/Fem/femobjects/_FemConstraintInitialFlowVelocity.py | 1 - src/Mod/Fem/femobjects/_FemConstraintSelfWeight.py | 1 - src/Mod/Fem/femobjects/_FemElementFluid1D.py | 1 - src/Mod/Fem/femobjects/_FemElementGeometry1D.py | 1 - src/Mod/Fem/femobjects/_FemElementGeometry2D.py | 1 - src/Mod/Fem/femobjects/_FemElementRotation1D.py | 1 - src/Mod/Fem/femobjects/_FemMaterial.py | 3 +-- src/Mod/Fem/femobjects/_FemMaterialMechanicalNonlinear.py | 1 - src/Mod/Fem/femobjects/_FemMaterialReinforced.py | 1 - src/Mod/Fem/femobjects/_FemMeshBoundaryLayer.py | 1 - src/Mod/Fem/femobjects/_FemMeshGmsh.py | 1 - src/Mod/Fem/femobjects/_FemMeshGroup.py | 1 - src/Mod/Fem/femobjects/_FemMeshRegion.py | 1 - src/Mod/Fem/femobjects/_FemMeshResult.py | 1 - src/Mod/Fem/femobjects/_FemResultMechanical.py | 1 - src/Mod/Fem/femobjects/_FemSolverCalculix.py | 1 - src/Mod/Fem/femresult/resulttools.py | 3 +-- src/Mod/Fem/femtest/app/support_utils.py | 2 +- src/Mod/Fem/femtest/app/test_solverframework.py | 4 ++-- src/Mod/Fem/femtools/ccxtools.py | 4 ++-- src/Mod/Fem/femtools/femutils.py | 5 ++--- 165 files changed, 199 insertions(+), 182 deletions(-) diff --git a/src/Mod/Fem/App/AppFem.cpp b/src/Mod/Fem/App/AppFem.cpp index cd879da9b5..bcb6c4dbe8 100644 --- a/src/Mod/Fem/App/AppFem.cpp +++ b/src/Mod/Fem/App/AppFem.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2008 Jürgen Riegel (juergen.riegel@web.de) * + * Copyright (c) 2008 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/AppFemPy.cpp b/src/Mod/Fem/App/AppFemPy.cpp index 750080563b..27dcddc41e 100644 --- a/src/Mod/Fem/App/AppFemPy.cpp +++ b/src/Mod/Fem/App/AppFemPy.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2008 Jürgen Riegel (juergen.riegel@web.de) * + * Copyright (c) 2008 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemAnalysis.cpp b/src/Mod/Fem/App/FemAnalysis.cpp index 2d60e2e03d..1d686d2465 100644 --- a/src/Mod/Fem/App/FemAnalysis.cpp +++ b/src/Mod/Fem/App/FemAnalysis.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemAnalysis.h b/src/Mod/Fem/App/FemAnalysis.h index 4a4487f5f2..035c88b012 100644 --- a/src/Mod/Fem/App/FemAnalysis.h +++ b/src/Mod/Fem/App/FemAnalysis.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemConstraint.cpp b/src/Mod/Fem/App/FemConstraint.cpp index 4e51b50b14..ad9c0afdb6 100644 --- a/src/Mod/Fem/App/FemConstraint.cpp +++ b/src/Mod/Fem/App/FemConstraint.cpp @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraint.h b/src/Mod/Fem/App/FemConstraint.h index 81ea021f41..0598a1c450 100644 --- a/src/Mod/Fem/App/FemConstraint.h +++ b/src/Mod/Fem/App/FemConstraint.h @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintBearing.cpp b/src/Mod/Fem/App/FemConstraintBearing.cpp index 22e82cc127..79fb24763f 100644 --- a/src/Mod/Fem/App/FemConstraintBearing.cpp +++ b/src/Mod/Fem/App/FemConstraintBearing.cpp @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintBearing.h b/src/Mod/Fem/App/FemConstraintBearing.h index 2b58decb4e..1b0c3de820 100644 --- a/src/Mod/Fem/App/FemConstraintBearing.h +++ b/src/Mod/Fem/App/FemConstraintBearing.h @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintContact.cpp b/src/Mod/Fem/App/FemConstraintContact.cpp index 0bb09a0389..390f09efc4 100644 --- a/src/Mod/Fem/App/FemConstraintContact.cpp +++ b/src/Mod/Fem/App/FemConstraintContact.cpp @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintContact.h b/src/Mod/Fem/App/FemConstraintContact.h index 9716bc15ee..d4a61c3ed8 100644 --- a/src/Mod/Fem/App/FemConstraintContact.h +++ b/src/Mod/Fem/App/FemConstraintContact.h @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintFixed.cpp b/src/Mod/Fem/App/FemConstraintFixed.cpp index efd96196bc..4d80945490 100644 --- a/src/Mod/Fem/App/FemConstraintFixed.cpp +++ b/src/Mod/Fem/App/FemConstraintFixed.cpp @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintFixed.h b/src/Mod/Fem/App/FemConstraintFixed.h index d1662bd644..92ab188020 100644 --- a/src/Mod/Fem/App/FemConstraintFixed.h +++ b/src/Mod/Fem/App/FemConstraintFixed.h @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintFluidBoundary.cpp b/src/Mod/Fem/App/FemConstraintFluidBoundary.cpp index ccb791debb..77e321f8d2 100644 --- a/src/Mod/Fem/App/FemConstraintFluidBoundary.cpp +++ b/src/Mod/Fem/App/FemConstraintFluidBoundary.cpp @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintFluidBoundary.h b/src/Mod/Fem/App/FemConstraintFluidBoundary.h index 0016355afa..7c6cbcab52 100644 --- a/src/Mod/Fem/App/FemConstraintFluidBoundary.h +++ b/src/Mod/Fem/App/FemConstraintFluidBoundary.h @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintForce.cpp b/src/Mod/Fem/App/FemConstraintForce.cpp index 3737c492da..45397cdc6e 100644 --- a/src/Mod/Fem/App/FemConstraintForce.cpp +++ b/src/Mod/Fem/App/FemConstraintForce.cpp @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintForce.h b/src/Mod/Fem/App/FemConstraintForce.h index fbb3e7d616..293150ced4 100644 --- a/src/Mod/Fem/App/FemConstraintForce.h +++ b/src/Mod/Fem/App/FemConstraintForce.h @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintGear.cpp b/src/Mod/Fem/App/FemConstraintGear.cpp index 92de563210..39a59847c6 100644 --- a/src/Mod/Fem/App/FemConstraintGear.cpp +++ b/src/Mod/Fem/App/FemConstraintGear.cpp @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintGear.h b/src/Mod/Fem/App/FemConstraintGear.h index b4a626c02d..ba0b78aa08 100644 --- a/src/Mod/Fem/App/FemConstraintGear.h +++ b/src/Mod/Fem/App/FemConstraintGear.h @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintPlaneRotation.cpp b/src/Mod/Fem/App/FemConstraintPlaneRotation.cpp index e2822943e1..2831840141 100644 --- a/src/Mod/Fem/App/FemConstraintPlaneRotation.cpp +++ b/src/Mod/Fem/App/FemConstraintPlaneRotation.cpp @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintPlaneRotation.h b/src/Mod/Fem/App/FemConstraintPlaneRotation.h index 84b1224a8f..b41a317ec6 100644 --- a/src/Mod/Fem/App/FemConstraintPlaneRotation.h +++ b/src/Mod/Fem/App/FemConstraintPlaneRotation.h @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintPulley.cpp b/src/Mod/Fem/App/FemConstraintPulley.cpp index 7c62848416..634857523b 100644 --- a/src/Mod/Fem/App/FemConstraintPulley.cpp +++ b/src/Mod/Fem/App/FemConstraintPulley.cpp @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintPulley.h b/src/Mod/Fem/App/FemConstraintPulley.h index f788fdda90..a38fb86da2 100644 --- a/src/Mod/Fem/App/FemConstraintPulley.h +++ b/src/Mod/Fem/App/FemConstraintPulley.h @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintTransform.cpp b/src/Mod/Fem/App/FemConstraintTransform.cpp index ab7179242c..4f2e2c172c 100644 --- a/src/Mod/Fem/App/FemConstraintTransform.cpp +++ b/src/Mod/Fem/App/FemConstraintTransform.cpp @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemConstraintTransform.h b/src/Mod/Fem/App/FemConstraintTransform.h index b4ff91b76e..b846c5bd74 100644 --- a/src/Mod/Fem/App/FemConstraintTransform.h +++ b/src/Mod/Fem/App/FemConstraintTransform.h @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/App/FemMesh.cpp b/src/Mod/Fem/App/FemMesh.cpp index 11e77fbdf0..cff50ef6bf 100644 --- a/src/Mod/Fem/App/FemMesh.cpp +++ b/src/Mod/Fem/App/FemMesh.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2009 * + * Copyright (c) 2009 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemMesh.h b/src/Mod/Fem/App/FemMesh.h index e48fee2245..6e8f51fbd0 100644 --- a/src/Mod/Fem/App/FemMesh.h +++ b/src/Mod/Fem/App/FemMesh.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2009 * + * Copyright (c) 2009 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemMeshObject.cpp b/src/Mod/Fem/App/FemMeshObject.cpp index 3a6c53a3a6..df5bf828be 100644 --- a/src/Mod/Fem/App/FemMeshObject.cpp +++ b/src/Mod/Fem/App/FemMeshObject.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2008 Jürgen Riegel (juergen.riegel@web.de) * + * Copyright (c) 2008 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemMeshObject.h b/src/Mod/Fem/App/FemMeshObject.h index 161b4d2f9c..c0c0b4712d 100644 --- a/src/Mod/Fem/App/FemMeshObject.h +++ b/src/Mod/Fem/App/FemMeshObject.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2008 Jürgen Riegel (juergen.riegel@web.de) * + * Copyright (c) 2008 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemMeshProperty.cpp b/src/Mod/Fem/App/FemMeshProperty.cpp index cd59a327dc..96c28688e5 100644 --- a/src/Mod/Fem/App/FemMeshProperty.cpp +++ b/src/Mod/Fem/App/FemMeshProperty.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2002 * + * Copyright (c) 2002 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemMeshProperty.h b/src/Mod/Fem/App/FemMeshProperty.h index 7a8e0d720f..393f91b83c 100644 --- a/src/Mod/Fem/App/FemMeshProperty.h +++ b/src/Mod/Fem/App/FemMeshProperty.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2008 * + * Copyright (c) 2008 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemMeshPyImp.cpp b/src/Mod/Fem/App/FemMeshPyImp.cpp index 598e8179cd..938505ec96 100644 --- a/src/Mod/Fem/App/FemMeshPyImp.cpp +++ b/src/Mod/Fem/App/FemMeshPyImp.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) Jürgen Riegel (juergen.riegel@web.de) 2009 * + * Copyright (c) 2009 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemMeshShapeNetgenObject.cpp b/src/Mod/Fem/App/FemMeshShapeNetgenObject.cpp index ca5e706166..284cd9b552 100644 --- a/src/Mod/Fem/App/FemMeshShapeNetgenObject.cpp +++ b/src/Mod/Fem/App/FemMeshShapeNetgenObject.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemMeshShapeNetgenObject.h b/src/Mod/Fem/App/FemMeshShapeNetgenObject.h index d784b7d03b..66577f80aa 100644 --- a/src/Mod/Fem/App/FemMeshShapeNetgenObject.h +++ b/src/Mod/Fem/App/FemMeshShapeNetgenObject.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemMeshShapeObject.cpp b/src/Mod/Fem/App/FemMeshShapeObject.cpp index 7b41ceec14..9f0b43ad8d 100644 --- a/src/Mod/Fem/App/FemMeshShapeObject.cpp +++ b/src/Mod/Fem/App/FemMeshShapeObject.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemMeshShapeObject.h b/src/Mod/Fem/App/FemMeshShapeObject.h index 9ba52c7f4d..73619fee86 100644 --- a/src/Mod/Fem/App/FemMeshShapeObject.h +++ b/src/Mod/Fem/App/FemMeshShapeObject.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemResultObject.cpp b/src/Mod/Fem/App/FemResultObject.cpp index b70973f38a..5f96d237ff 100644 --- a/src/Mod/Fem/App/FemResultObject.cpp +++ b/src/Mod/Fem/App/FemResultObject.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemResultObject.h b/src/Mod/Fem/App/FemResultObject.h index 29e50f4dbe..f05e5a4fc6 100644 --- a/src/Mod/Fem/App/FemResultObject.h +++ b/src/Mod/Fem/App/FemResultObject.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemSetElementsObject.cpp b/src/Mod/Fem/App/FemSetElementsObject.cpp index 3de2c2ded9..26b53d38b8 100644 --- a/src/Mod/Fem/App/FemSetElementsObject.cpp +++ b/src/Mod/Fem/App/FemSetElementsObject.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemSetElementsObject.h b/src/Mod/Fem/App/FemSetElementsObject.h index 939fe3c862..e7f16dd167 100644 --- a/src/Mod/Fem/App/FemSetElementsObject.h +++ b/src/Mod/Fem/App/FemSetElementsObject.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemSetFacesObject.cpp b/src/Mod/Fem/App/FemSetFacesObject.cpp index de5173dd3b..49fd003a8e 100644 --- a/src/Mod/Fem/App/FemSetFacesObject.cpp +++ b/src/Mod/Fem/App/FemSetFacesObject.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemSetFacesObject.h b/src/Mod/Fem/App/FemSetFacesObject.h index 569a523e61..526ce6c4f6 100644 --- a/src/Mod/Fem/App/FemSetFacesObject.h +++ b/src/Mod/Fem/App/FemSetFacesObject.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemSetGeometryObject.cpp b/src/Mod/Fem/App/FemSetGeometryObject.cpp index 97be072866..a2601b26d8 100644 --- a/src/Mod/Fem/App/FemSetGeometryObject.cpp +++ b/src/Mod/Fem/App/FemSetGeometryObject.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemSetGeometryObject.h b/src/Mod/Fem/App/FemSetGeometryObject.h index 4ec56959c0..735003cc04 100644 --- a/src/Mod/Fem/App/FemSetGeometryObject.h +++ b/src/Mod/Fem/App/FemSetGeometryObject.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemSetNodesObject.cpp b/src/Mod/Fem/App/FemSetNodesObject.cpp index 9fca5c485f..399794463c 100644 --- a/src/Mod/Fem/App/FemSetNodesObject.cpp +++ b/src/Mod/Fem/App/FemSetNodesObject.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemSetNodesObject.h b/src/Mod/Fem/App/FemSetNodesObject.h index 98d9e443d6..100133ac41 100644 --- a/src/Mod/Fem/App/FemSetNodesObject.h +++ b/src/Mod/Fem/App/FemSetNodesObject.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemSetObject.cpp b/src/Mod/Fem/App/FemSetObject.cpp index 83b751199f..2ed41d1005 100644 --- a/src/Mod/Fem/App/FemSetObject.cpp +++ b/src/Mod/Fem/App/FemSetObject.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemSetObject.h b/src/Mod/Fem/App/FemSetObject.h index c392dbd280..064ac58857 100644 --- a/src/Mod/Fem/App/FemSetObject.h +++ b/src/Mod/Fem/App/FemSetObject.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/FemSolverObject.h b/src/Mod/Fem/App/FemSolverObject.h index 65713246c8..f9a624c3e1 100644 --- a/src/Mod/Fem/App/FemSolverObject.h +++ b/src/Mod/Fem/App/FemSolverObject.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * Copyright (c) 2015 Qingfeng Xia (FreeCAD@iesensor.com) * * * * This file is part of the FreeCAD CAx development system. * diff --git a/src/Mod/Fem/App/PreCompiled.cpp b/src/Mod/Fem/App/PreCompiled.cpp index 923612df7b..063d004cc0 100644 --- a/src/Mod/Fem/App/PreCompiled.cpp +++ b/src/Mod/Fem/App/PreCompiled.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2008 Jürgen Riegel (juergen.riegel@web.de) * + * Copyright (c) 2008 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/App/PreCompiled.h b/src/Mod/Fem/App/PreCompiled.h index 9a879c1b79..089be95ec2 100644 --- a/src/Mod/Fem/App/PreCompiled.h +++ b/src/Mod/Fem/App/PreCompiled.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2008 Jürgen Riegel (juergen.riegel@web.de) * + * Copyright (c) 2008 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/AppFemGui.cpp b/src/Mod/Fem/Gui/AppFemGui.cpp index 399d96a145..c088a067c5 100644 --- a/src/Mod/Fem/Gui/AppFemGui.cpp +++ b/src/Mod/Fem/Gui/AppFemGui.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2008 Jürgen Riegel (juergen.riegel@web.de) * + * Copyright (c) 2008 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/Command.cpp b/src/Mod/Fem/Gui/Command.cpp index aa1a801177..5143731723 100644 --- a/src/Mod/Fem/Gui/Command.cpp +++ b/src/Mod/Fem/Gui/Command.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2008 Jürgen Riegel (juergen.riegel@web.de) * + * Copyright (c) 2008 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/PreCompiled.cpp b/src/Mod/Fem/Gui/PreCompiled.cpp index 923612df7b..063d004cc0 100644 --- a/src/Mod/Fem/Gui/PreCompiled.cpp +++ b/src/Mod/Fem/Gui/PreCompiled.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2008 Jürgen Riegel (juergen.riegel@web.de) * + * Copyright (c) 2008 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/PreCompiled.h b/src/Mod/Fem/Gui/PreCompiled.h index 672b193e67..b63b766a0c 100644 --- a/src/Mod/Fem/Gui/PreCompiled.h +++ b/src/Mod/Fem/Gui/PreCompiled.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2008 Jürgen Riegel (juergen.riegel@web.de) * + * Copyright (c) 2008 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskAnalysisInfo.cpp b/src/Mod/Fem/Gui/TaskAnalysisInfo.cpp index 11edc3a4f1..e9fbcefeec 100644 --- a/src/Mod/Fem/Gui/TaskAnalysisInfo.cpp +++ b/src/Mod/Fem/Gui/TaskAnalysisInfo.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskAnalysisInfo.h b/src/Mod/Fem/Gui/TaskAnalysisInfo.h index a40d02ac3b..f216601746 100644 --- a/src/Mod/Fem/Gui/TaskAnalysisInfo.h +++ b/src/Mod/Fem/Gui/TaskAnalysisInfo.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskCreateNodeSet.cpp b/src/Mod/Fem/Gui/TaskCreateNodeSet.cpp index 231f484010..20926613fb 100644 --- a/src/Mod/Fem/Gui/TaskCreateNodeSet.cpp +++ b/src/Mod/Fem/Gui/TaskCreateNodeSet.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskCreateNodeSet.h b/src/Mod/Fem/Gui/TaskCreateNodeSet.h index 741e0935a7..ddc433e0ea 100644 --- a/src/Mod/Fem/Gui/TaskCreateNodeSet.h +++ b/src/Mod/Fem/Gui/TaskCreateNodeSet.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskDlgAnalysis.cpp b/src/Mod/Fem/Gui/TaskDlgAnalysis.cpp index 5ab44f49c1..c870773714 100644 --- a/src/Mod/Fem/Gui/TaskDlgAnalysis.cpp +++ b/src/Mod/Fem/Gui/TaskDlgAnalysis.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskDlgAnalysis.h b/src/Mod/Fem/Gui/TaskDlgAnalysis.h index 79c824e58d..b5c6434c4a 100644 --- a/src/Mod/Fem/Gui/TaskDlgAnalysis.h +++ b/src/Mod/Fem/Gui/TaskDlgAnalysis.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskDlgCreateNodeSet.cpp b/src/Mod/Fem/Gui/TaskDlgCreateNodeSet.cpp index a2e6dbf88e..0e481c315b 100644 --- a/src/Mod/Fem/Gui/TaskDlgCreateNodeSet.cpp +++ b/src/Mod/Fem/Gui/TaskDlgCreateNodeSet.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskDlgCreateNodeSet.h b/src/Mod/Fem/Gui/TaskDlgCreateNodeSet.h index 0e32b71a5f..7206e660da 100644 --- a/src/Mod/Fem/Gui/TaskDlgCreateNodeSet.h +++ b/src/Mod/Fem/Gui/TaskDlgCreateNodeSet.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskDlgMeshShapeNetgen.cpp b/src/Mod/Fem/Gui/TaskDlgMeshShapeNetgen.cpp index 8d046ca33a..e53a02af6f 100644 --- a/src/Mod/Fem/Gui/TaskDlgMeshShapeNetgen.cpp +++ b/src/Mod/Fem/Gui/TaskDlgMeshShapeNetgen.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskDlgMeshShapeNetgen.h b/src/Mod/Fem/Gui/TaskDlgMeshShapeNetgen.h index 5d2ac876c5..324e28cf88 100644 --- a/src/Mod/Fem/Gui/TaskDlgMeshShapeNetgen.h +++ b/src/Mod/Fem/Gui/TaskDlgMeshShapeNetgen.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskDriver.cpp b/src/Mod/Fem/Gui/TaskDriver.cpp index 4a59ee230f..f2c52f1e2d 100644 --- a/src/Mod/Fem/Gui/TaskDriver.cpp +++ b/src/Mod/Fem/Gui/TaskDriver.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskDriver.h b/src/Mod/Fem/Gui/TaskDriver.h index 28d3d33456..38f31cbd33 100644 --- a/src/Mod/Fem/Gui/TaskDriver.h +++ b/src/Mod/Fem/Gui/TaskDriver.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskFemConstraint.cpp b/src/Mod/Fem/Gui/TaskFemConstraint.cpp index e354cdd506..0e6136224a 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraint.cpp +++ b/src/Mod/Fem/Gui/TaskFemConstraint.cpp @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskFemConstraint.h b/src/Mod/Fem/Gui/TaskFemConstraint.h index 9c8d9f7dc3..936c397600 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraint.h +++ b/src/Mod/Fem/Gui/TaskFemConstraint.h @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskFemConstraintBearing.cpp b/src/Mod/Fem/Gui/TaskFemConstraintBearing.cpp index c50eaf6589..ca432c7d04 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraintBearing.cpp +++ b/src/Mod/Fem/Gui/TaskFemConstraintBearing.cpp @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskFemConstraintBearing.h b/src/Mod/Fem/Gui/TaskFemConstraintBearing.h index 2d159939d2..5f0b7b4f36 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraintBearing.h +++ b/src/Mod/Fem/Gui/TaskFemConstraintBearing.h @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskFemConstraintFixed.cpp b/src/Mod/Fem/Gui/TaskFemConstraintFixed.cpp index 183719432e..e18d84f6ce 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraintFixed.cpp +++ b/src/Mod/Fem/Gui/TaskFemConstraintFixed.cpp @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskFemConstraintFixed.h b/src/Mod/Fem/Gui/TaskFemConstraintFixed.h index 7dbe87f98d..5e1a696090 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraintFixed.h +++ b/src/Mod/Fem/Gui/TaskFemConstraintFixed.h @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskFemConstraintFluidBoundary.cpp b/src/Mod/Fem/Gui/TaskFemConstraintFluidBoundary.cpp index b8aa094d83..c895f05724 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraintFluidBoundary.cpp +++ b/src/Mod/Fem/Gui/TaskFemConstraintFluidBoundary.cpp @@ -1,6 +1,7 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * - * Copyright (c) 2016 Qingfeng Xia * + * Copyright (c) 2013 Jan Rheinländer * + * * + * Copyright (c) 2016 Qingfeng Xia * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskFemConstraintForce.cpp b/src/Mod/Fem/Gui/TaskFemConstraintForce.cpp index 92d9bcc116..6a640bcc78 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraintForce.cpp +++ b/src/Mod/Fem/Gui/TaskFemConstraintForce.cpp @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskFemConstraintForce.h b/src/Mod/Fem/Gui/TaskFemConstraintForce.h index 34004b6b7a..8c741b150b 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraintForce.h +++ b/src/Mod/Fem/Gui/TaskFemConstraintForce.h @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskFemConstraintGear.cpp b/src/Mod/Fem/Gui/TaskFemConstraintGear.cpp index 5ee1c4087e..cb10e1ff3b 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraintGear.cpp +++ b/src/Mod/Fem/Gui/TaskFemConstraintGear.cpp @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskFemConstraintGear.h b/src/Mod/Fem/Gui/TaskFemConstraintGear.h index e8039cb7bb..a548acc093 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraintGear.h +++ b/src/Mod/Fem/Gui/TaskFemConstraintGear.h @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskFemConstraintPulley.cpp b/src/Mod/Fem/Gui/TaskFemConstraintPulley.cpp index 564594036d..a26e7256df 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraintPulley.cpp +++ b/src/Mod/Fem/Gui/TaskFemConstraintPulley.cpp @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskFemConstraintPulley.h b/src/Mod/Fem/Gui/TaskFemConstraintPulley.h index 2160c5bed7..bbb8d97a51 100644 --- a/src/Mod/Fem/Gui/TaskFemConstraintPulley.h +++ b/src/Mod/Fem/Gui/TaskFemConstraintPulley.h @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskObjectName.cpp b/src/Mod/Fem/Gui/TaskObjectName.cpp index 813f372a46..1505a224c6 100644 --- a/src/Mod/Fem/Gui/TaskObjectName.cpp +++ b/src/Mod/Fem/Gui/TaskObjectName.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskObjectName.h b/src/Mod/Fem/Gui/TaskObjectName.h index 7ca5e70953..9b00ad79e8 100644 --- a/src/Mod/Fem/Gui/TaskObjectName.h +++ b/src/Mod/Fem/Gui/TaskObjectName.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskTetParameter.cpp b/src/Mod/Fem/Gui/TaskTetParameter.cpp index b1dc77cee6..ff3a2e5e6b 100644 --- a/src/Mod/Fem/Gui/TaskTetParameter.cpp +++ b/src/Mod/Fem/Gui/TaskTetParameter.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/TaskTetParameter.h b/src/Mod/Fem/Gui/TaskTetParameter.h index f56ea9a10d..5191e784b3 100644 --- a/src/Mod/Fem/Gui/TaskTetParameter.h +++ b/src/Mod/Fem/Gui/TaskTetParameter.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderAnalysis.cpp b/src/Mod/Fem/Gui/ViewProviderAnalysis.cpp index eb403958ce..14a51d7d6b 100644 --- a/src/Mod/Fem/Gui/ViewProviderAnalysis.cpp +++ b/src/Mod/Fem/Gui/ViewProviderAnalysis.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderAnalysis.h b/src/Mod/Fem/Gui/ViewProviderAnalysis.h index bf86f154bc..3d4c540c89 100644 --- a/src/Mod/Fem/Gui/ViewProviderAnalysis.h +++ b/src/Mod/Fem/Gui/ViewProviderAnalysis.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemConstraint.cpp b/src/Mod/Fem/Gui/ViewProviderFemConstraint.cpp index 36056d66aa..33ac5c4c9c 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemConstraint.cpp +++ b/src/Mod/Fem/Gui/ViewProviderFemConstraint.cpp @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemConstraint.h b/src/Mod/Fem/Gui/ViewProviderFemConstraint.h index 85d9bc318e..f32687b473 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemConstraint.h +++ b/src/Mod/Fem/Gui/ViewProviderFemConstraint.h @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemConstraintBearing.cpp b/src/Mod/Fem/Gui/ViewProviderFemConstraintBearing.cpp index c36ae9ae8c..6e2b6a3216 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemConstraintBearing.cpp +++ b/src/Mod/Fem/Gui/ViewProviderFemConstraintBearing.cpp @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemConstraintBearing.h b/src/Mod/Fem/Gui/ViewProviderFemConstraintBearing.h index b5f567d0e9..c958bdb2b9 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemConstraintBearing.h +++ b/src/Mod/Fem/Gui/ViewProviderFemConstraintBearing.h @@ -1,6 +1,7 @@ /*************************************************************************** * Copyright (c) 2013 Jan Rheinländer * - * * + * * + * * * This file is part of the FreeCAD CAx development system. * * * * This library is free software; you can redistribute it and/or * diff --git a/src/Mod/Fem/Gui/ViewProviderFemConstraintFixed.cpp b/src/Mod/Fem/Gui/ViewProviderFemConstraintFixed.cpp index 8f749bc4dd..32aa1b2978 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemConstraintFixed.cpp +++ b/src/Mod/Fem/Gui/ViewProviderFemConstraintFixed.cpp @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemConstraintFixed.h b/src/Mod/Fem/Gui/ViewProviderFemConstraintFixed.h index bc43553a59..5044488abf 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemConstraintFixed.h +++ b/src/Mod/Fem/Gui/ViewProviderFemConstraintFixed.h @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemConstraintFluidBoundary.cpp b/src/Mod/Fem/Gui/ViewProviderFemConstraintFluidBoundary.cpp index 4f5b5cc9d4..80adfb2c75 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemConstraintFluidBoundary.cpp +++ b/src/Mod/Fem/Gui/ViewProviderFemConstraintFluidBoundary.cpp @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemConstraintFluidBoundary.h b/src/Mod/Fem/Gui/ViewProviderFemConstraintFluidBoundary.h index fe424378c4..c36f045c8f 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemConstraintFluidBoundary.h +++ b/src/Mod/Fem/Gui/ViewProviderFemConstraintFluidBoundary.h @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemConstraintForce.cpp b/src/Mod/Fem/Gui/ViewProviderFemConstraintForce.cpp index 8b3ddc4221..76c555b394 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemConstraintForce.cpp +++ b/src/Mod/Fem/Gui/ViewProviderFemConstraintForce.cpp @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemConstraintForce.h b/src/Mod/Fem/Gui/ViewProviderFemConstraintForce.h index 55d6187a41..1eeff7d2dc 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemConstraintForce.h +++ b/src/Mod/Fem/Gui/ViewProviderFemConstraintForce.h @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemConstraintGear.cpp b/src/Mod/Fem/Gui/ViewProviderFemConstraintGear.cpp index b6da909415..febf15d5c8 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemConstraintGear.cpp +++ b/src/Mod/Fem/Gui/ViewProviderFemConstraintGear.cpp @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemConstraintGear.h b/src/Mod/Fem/Gui/ViewProviderFemConstraintGear.h index 7d115e3ae6..ce1e8d4c30 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemConstraintGear.h +++ b/src/Mod/Fem/Gui/ViewProviderFemConstraintGear.h @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemConstraintPulley.cpp b/src/Mod/Fem/Gui/ViewProviderFemConstraintPulley.cpp index d2bd82db33..8bf67afa02 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemConstraintPulley.cpp +++ b/src/Mod/Fem/Gui/ViewProviderFemConstraintPulley.cpp @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemConstraintPulley.h b/src/Mod/Fem/Gui/ViewProviderFemConstraintPulley.h index 5595aa3dd0..dd8cfbdab1 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemConstraintPulley.h +++ b/src/Mod/Fem/Gui/ViewProviderFemConstraintPulley.h @@ -1,5 +1,6 @@ /*************************************************************************** - * Copyright (c) 2013 Jan Rheinländer * + * Copyright (c) 2013 Jan Rheinländer * + * * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemMesh.cpp b/src/Mod/Fem/Gui/ViewProviderFemMesh.cpp index bd3cba1389..e828508797 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemMesh.cpp +++ b/src/Mod/Fem/Gui/ViewProviderFemMesh.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemMesh.h b/src/Mod/Fem/Gui/ViewProviderFemMesh.h index 60d1647f8e..f58516fd88 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemMesh.h +++ b/src/Mod/Fem/Gui/ViewProviderFemMesh.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemMeshShape.cpp b/src/Mod/Fem/Gui/ViewProviderFemMeshShape.cpp index 8146c624c6..4f0c9000c2 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemMeshShape.cpp +++ b/src/Mod/Fem/Gui/ViewProviderFemMeshShape.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemMeshShape.h b/src/Mod/Fem/Gui/ViewProviderFemMeshShape.h index 44219ba1ca..2e4bd68f5e 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemMeshShape.h +++ b/src/Mod/Fem/Gui/ViewProviderFemMeshShape.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemMeshShapeNetgen.cpp b/src/Mod/Fem/Gui/ViewProviderFemMeshShapeNetgen.cpp index 8015965945..ddd9c18483 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemMeshShapeNetgen.cpp +++ b/src/Mod/Fem/Gui/ViewProviderFemMeshShapeNetgen.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderFemMeshShapeNetgen.h b/src/Mod/Fem/Gui/ViewProviderFemMeshShapeNetgen.h index b866013964..e70b563812 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemMeshShapeNetgen.h +++ b/src/Mod/Fem/Gui/ViewProviderFemMeshShapeNetgen.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderResult.cpp b/src/Mod/Fem/Gui/ViewProviderResult.cpp index d0159eac93..0dbc728aa1 100644 --- a/src/Mod/Fem/Gui/ViewProviderResult.cpp +++ b/src/Mod/Fem/Gui/ViewProviderResult.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderResult.h b/src/Mod/Fem/Gui/ViewProviderResult.h index 9b43c57acc..594ef91dbe 100644 --- a/src/Mod/Fem/Gui/ViewProviderResult.h +++ b/src/Mod/Fem/Gui/ViewProviderResult.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderSetElements.cpp b/src/Mod/Fem/Gui/ViewProviderSetElements.cpp index a100fd79ca..0fd120d8ae 100644 --- a/src/Mod/Fem/Gui/ViewProviderSetElements.cpp +++ b/src/Mod/Fem/Gui/ViewProviderSetElements.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderSetElements.h b/src/Mod/Fem/Gui/ViewProviderSetElements.h index 4a97de8e8f..5b6bc89566 100644 --- a/src/Mod/Fem/Gui/ViewProviderSetElements.h +++ b/src/Mod/Fem/Gui/ViewProviderSetElements.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderSetFaces.cpp b/src/Mod/Fem/Gui/ViewProviderSetFaces.cpp index f209a684d0..18d0dd3c4f 100644 --- a/src/Mod/Fem/Gui/ViewProviderSetFaces.cpp +++ b/src/Mod/Fem/Gui/ViewProviderSetFaces.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderSetFaces.h b/src/Mod/Fem/Gui/ViewProviderSetFaces.h index 26938c79d9..7d31b8490a 100644 --- a/src/Mod/Fem/Gui/ViewProviderSetFaces.h +++ b/src/Mod/Fem/Gui/ViewProviderSetFaces.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderSetGeometry.cpp b/src/Mod/Fem/Gui/ViewProviderSetGeometry.cpp index b0b81d4891..3a98972a2f 100644 --- a/src/Mod/Fem/Gui/ViewProviderSetGeometry.cpp +++ b/src/Mod/Fem/Gui/ViewProviderSetGeometry.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderSetGeometry.h b/src/Mod/Fem/Gui/ViewProviderSetGeometry.h index c28e11b48c..d046d0dd33 100644 --- a/src/Mod/Fem/Gui/ViewProviderSetGeometry.h +++ b/src/Mod/Fem/Gui/ViewProviderSetGeometry.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderSetNodes.cpp b/src/Mod/Fem/Gui/ViewProviderSetNodes.cpp index 15760aacfe..b4e47ddc78 100644 --- a/src/Mod/Fem/Gui/ViewProviderSetNodes.cpp +++ b/src/Mod/Fem/Gui/ViewProviderSetNodes.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderSetNodes.h b/src/Mod/Fem/Gui/ViewProviderSetNodes.h index 27758f60eb..14567b92fe 100644 --- a/src/Mod/Fem/Gui/ViewProviderSetNodes.h +++ b/src/Mod/Fem/Gui/ViewProviderSetNodes.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderSolver.cpp b/src/Mod/Fem/Gui/ViewProviderSolver.cpp index c7ed942472..99cca1a435 100644 --- a/src/Mod/Fem/Gui/ViewProviderSolver.cpp +++ b/src/Mod/Fem/Gui/ViewProviderSolver.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Gui/ViewProviderSolver.h b/src/Mod/Fem/Gui/ViewProviderSolver.h index 69118929a2..063789c2e6 100644 --- a/src/Mod/Fem/Gui/ViewProviderSolver.h +++ b/src/Mod/Fem/Gui/ViewProviderSolver.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (c) 2013 Jürgen Riegel (FreeCAD@juergen-riegel.net) * + * Copyright (c) 2013 Jürgen Riegel * * * * This file is part of the FreeCAD CAx development system. * * * diff --git a/src/Mod/Fem/Init.py b/src/Mod/Fem/Init.py index 684a432a11..d62aa82264 100644 --- a/src/Mod/Fem/Init.py +++ b/src/Mod/Fem/Init.py @@ -1,6 +1,6 @@ # *************************************************************************** -# * Copyright (c) 2001 - Juergen Riegel * -# * Copyright (c) 2016 - Bernd Hahnebach * +# * Copyright (c) 2001 Juergen Riegel * +# * Copyright (c) 2016 Bernd Hahnebach * # * * # * This file is part of the FreeCAD CAx development system. * # * * diff --git a/src/Mod/Fem/ObjectsFem.py b/src/Mod/Fem/ObjectsFem.py index 820c971a90..c630e5fd51 100644 --- a/src/Mod/Fem/ObjectsFem.py +++ b/src/Mod/Fem/ObjectsFem.py @@ -1,6 +1,5 @@ # *************************************************************************** -# * * -# * Copyright (c) 2016 - Bernd Hahnebach * +# * Copyright (c) 2016 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/femcommands/commands.py b/src/Mod/Fem/femcommands/commands.py index ccf374fa14..417eaee5a4 100644 --- a/src/Mod/Fem/femcommands/commands.py +++ b/src/Mod/Fem/femcommands/commands.py @@ -1,6 +1,5 @@ # *************************************************************************** -# * * -# * Copyright (c) 2016 - Bernd Hahnebach * +# * Copyright (c) 2016 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/femcommands/manager.py b/src/Mod/Fem/femcommands/manager.py index eb2f7ddaa7..4dffc3aa8e 100644 --- a/src/Mod/Fem/femcommands/manager.py +++ b/src/Mod/Fem/femcommands/manager.py @@ -1,7 +1,6 @@ # *************************************************************************** -# * * -# * Copyright (c) 2015 - FreeCAD Developers * -# * Author (c) 2015 - Przemo Fiszt < przemo@firszt.eu> * +# * Copyright (c) 2015 FreeCAD Developers * +# * Copyright (c) 2015 Przemo Fiszt * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/femguiobjects/_TaskPanelFemSolverControl.py b/src/Mod/Fem/femguiobjects/_TaskPanelFemSolverControl.py index 126382cac5..080c0ece23 100644 --- a/src/Mod/Fem/femguiobjects/_TaskPanelFemSolverControl.py +++ b/src/Mod/Fem/femguiobjects/_TaskPanelFemSolverControl.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2017 Markus Hovorka * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femguiobjects/_ViewProviderFemConstraintBodyHeatSource.py b/src/Mod/Fem/femguiobjects/_ViewProviderFemConstraintBodyHeatSource.py index 81d520888a..d9ac02b572 100644 --- a/src/Mod/Fem/femguiobjects/_ViewProviderFemConstraintBodyHeatSource.py +++ b/src/Mod/Fem/femguiobjects/_ViewProviderFemConstraintBodyHeatSource.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2017 Markus Hovorka * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femguiobjects/_ViewProviderFemMeshGmsh.py b/src/Mod/Fem/femguiobjects/_ViewProviderFemMeshGmsh.py index bf46633b46..0ca14f9784 100644 --- a/src/Mod/Fem/femguiobjects/_ViewProviderFemMeshGmsh.py +++ b/src/Mod/Fem/femguiobjects/_ViewProviderFemMeshGmsh.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2016 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/feminout/convert2TetGen.py b/src/Mod/Fem/feminout/convert2TetGen.py index c380f993af..88dc2c4494 100644 --- a/src/Mod/Fem/feminout/convert2TetGen.py +++ b/src/Mod/Fem/feminout/convert2TetGen.py @@ -1,7 +1,7 @@ # *************************************************************************** # * * -# * Copyright (c) 2010 - Juergen Riegel * -# * Copyright (c) 2018 - Bernd Hahnebach * +# * Copyright (c) 2010 Juergen Riegel * +# * Copyright (c) 2018 Bernd Hahnebach * # * * # * This file is part of the FreeCAD CAx development system. * # * * diff --git a/src/Mod/Fem/feminout/importCcxDatResults.py b/src/Mod/Fem/feminout/importCcxDatResults.py index 7c57fc5a41..7645df2ec8 100644 --- a/src/Mod/Fem/feminout/importCcxDatResults.py +++ b/src/Mod/Fem/feminout/importCcxDatResults.py @@ -1,5 +1,5 @@ # *************************************************************************** -# * Copyright (c) 2015 - FreeCAD Developers * +# * Copyright (c) 2015 FreeCAD Developers * # * Author: Przemo Firszt * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/feminout/importCcxFrdResults.py b/src/Mod/Fem/feminout/importCcxFrdResults.py index 99893e5208..0a4bb2b4b8 100644 --- a/src/Mod/Fem/feminout/importCcxFrdResults.py +++ b/src/Mod/Fem/feminout/importCcxFrdResults.py @@ -1,8 +1,8 @@ # *************************************************************************** # * * -# * Copyright (c) 2013 - Joachim Zettler * -# * Copyright (c) 2013 - Juergen Riegel * -# * Copyright (c) 2016 - Bernd Hahnebach * +# * Copyright (c) 2013 Joachim Zettler * +# * Copyright (c) 2013 Juergen Riegel * +# * Copyright (c) 2016 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/feminout/importFenicsMesh.py b/src/Mod/Fem/feminout/importFenicsMesh.py index 5f5a19b136..2a0c4a5642 100644 --- a/src/Mod/Fem/feminout/importFenicsMesh.py +++ b/src/Mod/Fem/feminout/importFenicsMesh.py @@ -1,6 +1,6 @@ # *************************************************************************** # * * -# * Copyright (c) 2017 - Johannes Hartung * +# * Copyright (c) 2017 Johannes Hartung * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/feminout/importInpMesh.py b/src/Mod/Fem/feminout/importInpMesh.py index a0792a518c..d1552b266b 100644 --- a/src/Mod/Fem/feminout/importInpMesh.py +++ b/src/Mod/Fem/feminout/importInpMesh.py @@ -1,6 +1,6 @@ # *************************************************************************** # * * -# * Copyright (c) 2016 - Frantisek Loeffelmann * +# * Copyright (c) 2016 Frantisek Loeffelmann * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/feminout/importToolsFem.py b/src/Mod/Fem/feminout/importToolsFem.py index d5e8558707..d37dc51191 100644 --- a/src/Mod/Fem/feminout/importToolsFem.py +++ b/src/Mod/Fem/feminout/importToolsFem.py @@ -1,6 +1,6 @@ # *************************************************************************** # * * -# * Copyright (c) 2017 - Bernd Hahnebach * +# * Copyright (c) 2017 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/feminout/importYamlJsonMesh.py b/src/Mod/Fem/feminout/importYamlJsonMesh.py index 41252a0c58..fa58d11a9b 100644 --- a/src/Mod/Fem/feminout/importYamlJsonMesh.py +++ b/src/Mod/Fem/feminout/importYamlJsonMesh.py @@ -1,6 +1,6 @@ # *************************************************************************** # * * -# * Copyright (c) 2019 - Johannes Hartung * +# * Copyright (c) 2019 Johannes Hartung * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/feminout/importZ88Mesh.py b/src/Mod/Fem/feminout/importZ88Mesh.py index 8f2803dd5a..ac2c0aa13b 100644 --- a/src/Mod/Fem/feminout/importZ88Mesh.py +++ b/src/Mod/Fem/feminout/importZ88Mesh.py @@ -1,7 +1,6 @@ # *************************************************************************** # * * -# * Copyright (c) 2016 - Bernd Hahnebach * - +# * Copyright (c) 2016 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/feminout/importZ88O2Results.py b/src/Mod/Fem/feminout/importZ88O2Results.py index 8b597dc153..a412a7a315 100644 --- a/src/Mod/Fem/feminout/importZ88O2Results.py +++ b/src/Mod/Fem/feminout/importZ88O2Results.py @@ -1,6 +1,6 @@ # *************************************************************************** # * * -# * Copyright (c) 2016 - Bernd Hahnebach * +# * Copyright (c) 2016 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/feminout/readFenicsXDMF.py b/src/Mod/Fem/feminout/readFenicsXDMF.py index 4a6ed32517..bec928bfb5 100644 --- a/src/Mod/Fem/feminout/readFenicsXDMF.py +++ b/src/Mod/Fem/feminout/readFenicsXDMF.py @@ -1,6 +1,5 @@ # *************************************************************************** -# * * -# * Copyright (c) 2017 - Johannes Hartung * +# * Copyright (c) 2017 Johannes Hartung * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/feminout/readFenicsXML.py b/src/Mod/Fem/feminout/readFenicsXML.py index 3db4ed21c2..1118b79f7f 100644 --- a/src/Mod/Fem/feminout/readFenicsXML.py +++ b/src/Mod/Fem/feminout/readFenicsXML.py @@ -1,6 +1,6 @@ # *************************************************************************** # * * -# * Copyright (c) 2017 - Johannes Hartung * +# * Copyright (c) 2017 Johannes Hartung * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/feminout/writeFenicsXDMF.py b/src/Mod/Fem/feminout/writeFenicsXDMF.py index db8099eb0b..900661bc8f 100644 --- a/src/Mod/Fem/feminout/writeFenicsXDMF.py +++ b/src/Mod/Fem/feminout/writeFenicsXDMF.py @@ -1,6 +1,6 @@ # *************************************************************************** # * * -# * Copyright (c) 2017 - Johannes Hartung * +# * Copyright (c) 2017 Johannes Hartung * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/feminout/writeFenicsXML.py b/src/Mod/Fem/feminout/writeFenicsXML.py index 920d45aa0f..e2dece5128 100644 --- a/src/Mod/Fem/feminout/writeFenicsXML.py +++ b/src/Mod/Fem/feminout/writeFenicsXML.py @@ -1,6 +1,6 @@ # *************************************************************************** # * * -# * Copyright (c) 2017 - Johannes Hartung * +# * Copyright (c) 2017 Johannes Hartung * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/femmesh/femmesh2mesh.py b/src/Mod/Fem/femmesh/femmesh2mesh.py index 31235c7389..52303f4f5d 100644 --- a/src/Mod/Fem/femmesh/femmesh2mesh.py +++ b/src/Mod/Fem/femmesh/femmesh2mesh.py @@ -1,6 +1,6 @@ # *************************************************************************** # * * -# * Copyright (c) 2016 - Frantisek Loeffelmann * +# * Copyright (c) 2016 Frantisek Loeffelmann * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/femmesh/gmshtools.py b/src/Mod/Fem/femmesh/gmshtools.py index 88712b1c7b..c56717b8d9 100644 --- a/src/Mod/Fem/femmesh/gmshtools.py +++ b/src/Mod/Fem/femmesh/gmshtools.py @@ -1,6 +1,6 @@ # *************************************************************************** # * * -# * Copyright (c) 2016 - Bernd Hahnebach * +# * Copyright (c) 2016 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/femmesh/meshtools.py b/src/Mod/Fem/femmesh/meshtools.py index e1bc9e85d1..ee1813d066 100644 --- a/src/Mod/Fem/femmesh/meshtools.py +++ b/src/Mod/Fem/femmesh/meshtools.py @@ -1,6 +1,6 @@ # *************************************************************************** # * * -# * Copyright (c) 2016 - Bernd Hahnebach * +# * Copyright (c) 2016 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/femobjects/FemConstraint.py b/src/Mod/Fem/femobjects/FemConstraint.py index 1fd4cdcf70..70e98fc907 100644 --- a/src/Mod/Fem/femobjects/FemConstraint.py +++ b/src/Mod/Fem/femobjects/FemConstraint.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2017 Markus Hovorka * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femobjects/_FemConstraintBodyHeatSource.py b/src/Mod/Fem/femobjects/_FemConstraintBodyHeatSource.py index e27820e196..f8295e07a0 100644 --- a/src/Mod/Fem/femobjects/_FemConstraintBodyHeatSource.py +++ b/src/Mod/Fem/femobjects/_FemConstraintBodyHeatSource.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2017 Markus Hovorka * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femobjects/_FemConstraintElectrostaticPotential.py b/src/Mod/Fem/femobjects/_FemConstraintElectrostaticPotential.py index 1c246d9af9..71a69009b7 100644 --- a/src/Mod/Fem/femobjects/_FemConstraintElectrostaticPotential.py +++ b/src/Mod/Fem/femobjects/_FemConstraintElectrostaticPotential.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2017 Markus Hovorka * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femobjects/_FemConstraintFlowVelocity.py b/src/Mod/Fem/femobjects/_FemConstraintFlowVelocity.py index 3bd36edec7..b21f0d291e 100644 --- a/src/Mod/Fem/femobjects/_FemConstraintFlowVelocity.py +++ b/src/Mod/Fem/femobjects/_FemConstraintFlowVelocity.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2017 Markus Hovorka * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femobjects/_FemConstraintInitialFlowVelocity.py b/src/Mod/Fem/femobjects/_FemConstraintInitialFlowVelocity.py index e19cc21f7b..9a2874f725 100644 --- a/src/Mod/Fem/femobjects/_FemConstraintInitialFlowVelocity.py +++ b/src/Mod/Fem/femobjects/_FemConstraintInitialFlowVelocity.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2017 Markus Hovorka * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femobjects/_FemConstraintSelfWeight.py b/src/Mod/Fem/femobjects/_FemConstraintSelfWeight.py index c20e0a91d6..3d01f871b4 100644 --- a/src/Mod/Fem/femobjects/_FemConstraintSelfWeight.py +++ b/src/Mod/Fem/femobjects/_FemConstraintSelfWeight.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2015 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femobjects/_FemElementFluid1D.py b/src/Mod/Fem/femobjects/_FemElementFluid1D.py index 7b51c571bb..4061c40178 100644 --- a/src/Mod/Fem/femobjects/_FemElementFluid1D.py +++ b/src/Mod/Fem/femobjects/_FemElementFluid1D.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2016 Ofentse Kgoa * # * Based on the FemElementGeometry1D by Bernd Hahnebach * # * * diff --git a/src/Mod/Fem/femobjects/_FemElementGeometry1D.py b/src/Mod/Fem/femobjects/_FemElementGeometry1D.py index 5f224cfe6c..2e881efba6 100644 --- a/src/Mod/Fem/femobjects/_FemElementGeometry1D.py +++ b/src/Mod/Fem/femobjects/_FemElementGeometry1D.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2015 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femobjects/_FemElementGeometry2D.py b/src/Mod/Fem/femobjects/_FemElementGeometry2D.py index 287ad0bc7f..9dfc11e63a 100644 --- a/src/Mod/Fem/femobjects/_FemElementGeometry2D.py +++ b/src/Mod/Fem/femobjects/_FemElementGeometry2D.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2015 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femobjects/_FemElementRotation1D.py b/src/Mod/Fem/femobjects/_FemElementRotation1D.py index 73019b0b7b..b187eb8b86 100644 --- a/src/Mod/Fem/femobjects/_FemElementRotation1D.py +++ b/src/Mod/Fem/femobjects/_FemElementRotation1D.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2017 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femobjects/_FemMaterial.py b/src/Mod/Fem/femobjects/_FemMaterial.py index 03513338ef..eb661163f0 100644 --- a/src/Mod/Fem/femobjects/_FemMaterial.py +++ b/src/Mod/Fem/femobjects/_FemMaterial.py @@ -1,6 +1,5 @@ # *************************************************************************** -# * * -# * Copyright (c) 2013 Juergen Riegel * +# * Copyright (c) 2013 Juergen Riegel * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/femobjects/_FemMaterialMechanicalNonlinear.py b/src/Mod/Fem/femobjects/_FemMaterialMechanicalNonlinear.py index 827fc4441a..7e29c18702 100644 --- a/src/Mod/Fem/femobjects/_FemMaterialMechanicalNonlinear.py +++ b/src/Mod/Fem/femobjects/_FemMaterialMechanicalNonlinear.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2016 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femobjects/_FemMaterialReinforced.py b/src/Mod/Fem/femobjects/_FemMaterialReinforced.py index d888cf17d5..aa8d56cad8 100644 --- a/src/Mod/Fem/femobjects/_FemMaterialReinforced.py +++ b/src/Mod/Fem/femobjects/_FemMaterialReinforced.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2019 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femobjects/_FemMeshBoundaryLayer.py b/src/Mod/Fem/femobjects/_FemMeshBoundaryLayer.py index 63f3ba15d5..55e4bdcce1 100644 --- a/src/Mod/Fem/femobjects/_FemMeshBoundaryLayer.py +++ b/src/Mod/Fem/femobjects/_FemMeshBoundaryLayer.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2016 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femobjects/_FemMeshGmsh.py b/src/Mod/Fem/femobjects/_FemMeshGmsh.py index f9d082d4ae..3be2ca0577 100644 --- a/src/Mod/Fem/femobjects/_FemMeshGmsh.py +++ b/src/Mod/Fem/femobjects/_FemMeshGmsh.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2016 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femobjects/_FemMeshGroup.py b/src/Mod/Fem/femobjects/_FemMeshGroup.py index 8de8a04d91..7e3fe3012c 100644 --- a/src/Mod/Fem/femobjects/_FemMeshGroup.py +++ b/src/Mod/Fem/femobjects/_FemMeshGroup.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2016 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femobjects/_FemMeshRegion.py b/src/Mod/Fem/femobjects/_FemMeshRegion.py index a2eee420e5..639cefe874 100644 --- a/src/Mod/Fem/femobjects/_FemMeshRegion.py +++ b/src/Mod/Fem/femobjects/_FemMeshRegion.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2016 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femobjects/_FemMeshResult.py b/src/Mod/Fem/femobjects/_FemMeshResult.py index 51301077d2..192da0d98d 100644 --- a/src/Mod/Fem/femobjects/_FemMeshResult.py +++ b/src/Mod/Fem/femobjects/_FemMeshResult.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2017 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femobjects/_FemResultMechanical.py b/src/Mod/Fem/femobjects/_FemResultMechanical.py index 81da7d554b..bbc30b612d 100644 --- a/src/Mod/Fem/femobjects/_FemResultMechanical.py +++ b/src/Mod/Fem/femobjects/_FemResultMechanical.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2016 Qingfeng Xia * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femobjects/_FemSolverCalculix.py b/src/Mod/Fem/femobjects/_FemSolverCalculix.py index 53ed3a5ebd..3aa6715144 100644 --- a/src/Mod/Fem/femobjects/_FemSolverCalculix.py +++ b/src/Mod/Fem/femobjects/_FemSolverCalculix.py @@ -1,5 +1,4 @@ # *************************************************************************** -# * * # * Copyright (c) 2015 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * diff --git a/src/Mod/Fem/femresult/resulttools.py b/src/Mod/Fem/femresult/resulttools.py index 89e5677ea1..98f21421b3 100644 --- a/src/Mod/Fem/femresult/resulttools.py +++ b/src/Mod/Fem/femresult/resulttools.py @@ -1,6 +1,5 @@ # *************************************************************************** -# * * -# * Copyright (c) 2017 - Bernd Hahnebach * +# * Copyright (c) 2017 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/femtest/app/support_utils.py b/src/Mod/Fem/femtest/app/support_utils.py index ecb6f740ca..79760df09c 100644 --- a/src/Mod/Fem/femtest/app/support_utils.py +++ b/src/Mod/Fem/femtest/app/support_utils.py @@ -1,5 +1,5 @@ # *************************************************************************** -# * Copyright (c) 2018 - FreeCAD Developers * +# * Copyright (c) 2018 FreeCAD Developers * # * Author: Bernd Hahnebach * # * * # * This file is part of the FreeCAD CAx development system. * diff --git a/src/Mod/Fem/femtest/app/test_solverframework.py b/src/Mod/Fem/femtest/app/test_solverframework.py index 607f5115d0..12bb6975b5 100644 --- a/src/Mod/Fem/femtest/app/test_solverframework.py +++ b/src/Mod/Fem/femtest/app/test_solverframework.py @@ -1,6 +1,6 @@ # *************************************************************************** -# * Copyright (c) 2015 - FreeCAD Developers * -# * Copyright (c) 2018 - Bernd Hahnebach * +# * Copyright (c) 2015 FreeCAD Developers * +# * Copyright (c) 2018 Bernd Hahnebach * # * * # * This file is part of the FreeCAD CAx development system. * # * * diff --git a/src/Mod/Fem/femtools/ccxtools.py b/src/Mod/Fem/femtools/ccxtools.py index 6976701e52..570ca84846 100644 --- a/src/Mod/Fem/femtools/ccxtools.py +++ b/src/Mod/Fem/femtools/ccxtools.py @@ -1,7 +1,7 @@ # *************************************************************************** # * * -# * Copyright (c) 2015 - Przemo Firszt * -# * Copyright (c) 2016 - Bernd Hahnebach * +# * Copyright (c) 2015 Przemo Firszt * +# * Copyright (c) 2016 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) * diff --git a/src/Mod/Fem/femtools/femutils.py b/src/Mod/Fem/femtools/femutils.py index 2a7a55c37f..3b53a7a9ba 100644 --- a/src/Mod/Fem/femtools/femutils.py +++ b/src/Mod/Fem/femtools/femutils.py @@ -1,7 +1,6 @@ # *************************************************************************** -# * * -# * Copyright (c) 2017 - Markus Hovorka * -# * Copyright (c) 2018 - Bernd Hahnebach * +# * Copyright (c) 2017 Markus Hovorka * +# * Copyright (c) 2018 Bernd Hahnebach * # * * # * This program is free software; you can redistribute it and/or modify * # * it under the terms of the GNU Lesser General Public License (LGPL) *