diff --git a/src/Mod/Cloud/App/AppCloud.cpp b/src/Mod/Cloud/App/AppCloud.cpp
index 6297be283a..9ecbaf2759 100644
--- a/src/Mod/Cloud/App/AppCloud.cpp
+++ b/src/Mod/Cloud/App/AppCloud.cpp
@@ -45,9 +45,6 @@ using namespace App;
/* Python entry */
PyMOD_INIT_FUNC(Cloud)
{
- // ADD YOUR CODE HERE
- //
- //
PyObject* mod = Cloud::initModule();
Base::Console().Log("Loading Cloud module... done\n");
PyMOD_Return(mod);
diff --git a/src/Mod/Cloud/App/AppCloud.h b/src/Mod/Cloud/App/AppCloud.h
index 840d846d06..5901f0a2a4 100644
--- a/src/Mod/Cloud/App/AppCloud.h
+++ b/src/Mod/Cloud/App/AppCloud.h
@@ -1,3 +1,25 @@
+/***************************************************************************
+ * Copyright (c) 2019 Jean-Marie Verdun jmverdun3@gmail.com *
+ * *
+ * 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 *
+ * License as published by the Free Software Foundation; either *
+ * version 2 of the License, or (at your option) any later version. *
+ * *
+ * 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 *
+ * GNU Library General Public License for more details. *
+ * *
+ * You should have received a copy of the GNU Library General Public *
+ * License along with this library; see the file COPYING.LIB. If not, *
+ * write to the Free Software Foundation, Inc., 59 Temple Place, *
+ * Suite 330, Boston, MA 02111-1307, USA *
+ * *
+ ***************************************************************************/
+
#include
#include
#include
diff --git a/src/Mod/Cloud/App/PreCompiled.cpp b/src/Mod/Cloud/App/PreCompiled.cpp
index c32e030c6d..c7feec6468 100644
--- a/src/Mod/Cloud/App/PreCompiled.cpp
+++ b/src/Mod/Cloud/App/PreCompiled.cpp
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (c) YEAR YOUR NAME *
+ * Copyright (c) 2019 Jean-Marie Verdun jmverdun3@gmail.com *
* *
* This file is part of the FreeCAD CAx development system. *
* *
diff --git a/src/Mod/Cloud/App/PreCompiled.h b/src/Mod/Cloud/App/PreCompiled.h
index e03c28e313..7c2ef41351 100644
--- a/src/Mod/Cloud/App/PreCompiled.h
+++ b/src/Mod/Cloud/App/PreCompiled.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (c) YEAR YOUR NAME *
+ * Copyright (c) 2019 Jean-Marie Verdun jmverdun3@gmail.com *
* *
* This file is part of the FreeCAD CAx development system. *
* *
diff --git a/src/Mod/Cloud/Init.py b/src/Mod/Cloud/Init.py
index f1b52c7ae9..ccfc9a0da4 100644
--- a/src/Mod/Cloud/Init.py
+++ b/src/Mod/Cloud/Init.py
@@ -1,2 +1,3 @@
# FreeCAD init script of the Cloud module
# (c) 2001 Juergen Riegel LGPL
+# (c) 2019 Jean-Marie Verdun LGPL
diff --git a/src/Mod/Cloud/InitGui.py b/src/Mod/Cloud/InitGui.py
index 4a76ee66f4..e843904e40 100644
--- a/src/Mod/Cloud/InitGui.py
+++ b/src/Mod/Cloud/InitGui.py
@@ -1,5 +1,6 @@
# Cloud gui init module
# (c) 2001 Juergen Riegel LGPL
+# (c) 2019 Jean-Marie Verdun LGPL
class CloudWorkbench ( Workbench ):
"Cloud workbench object"