Fix header uniformity for various workbenches/directories
Also includes some trailing whitespace fixes
This commit is contained in:
@@ -1,8 +1,5 @@
|
||||
# FreeCAD init script of the Sandbox module
|
||||
# (c) 2001 Juergen Riegel
|
||||
|
||||
#***************************************************************************
|
||||
#* (c) Juergen Riegel (juergen.riegel@web.de) 2002 *
|
||||
#* Copyright (c) 2001,2002 Juergen Riegel <juergen.riegel@web.de> *
|
||||
#* *
|
||||
#* This file is part of the FreeCAD CAx development system. *
|
||||
#* *
|
||||
@@ -22,9 +19,10 @@
|
||||
#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
|
||||
#* USA *
|
||||
#* *
|
||||
#* Juergen Riegel 2002 *
|
||||
#***************************************************************************/
|
||||
|
||||
# FreeCAD init script of the Sandbox module
|
||||
|
||||
import FreeCAD
|
||||
FreeCAD.addExportType("DRAWEXE script (*.tcl)","exportDRAWEXE")
|
||||
|
||||
|
||||
@@ -1,12 +1,5 @@
|
||||
# Sandbox gui init module
|
||||
# (c) 2003 Juergen Riegel
|
||||
#
|
||||
# Gathering all the information to start FreeCAD
|
||||
# This is the second one of three init scripts, the third one
|
||||
# runs when the gui is up
|
||||
|
||||
#***************************************************************************
|
||||
#* (c) Juergen Riegel (juergen.riegel@web.de) 2002 *
|
||||
#* Copyright (c) 2002,2003 Juergen Riegel <juergen.riegel@web.de> *
|
||||
#* *
|
||||
#* This file is part of the FreeCAD CAx development system. *
|
||||
#* *
|
||||
@@ -26,19 +19,22 @@
|
||||
#* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 *
|
||||
#* USA *
|
||||
#* *
|
||||
#* Juergen Riegel 2002 *
|
||||
#***************************************************************************/
|
||||
|
||||
|
||||
# Sandbox gui init module
|
||||
#
|
||||
# Gathering all the information to start FreeCAD
|
||||
# This is the second one of three init scripts, the third one
|
||||
# runs when the gui is up
|
||||
|
||||
class SandboxWorkbench ( Workbench ):
|
||||
"Sandbox workbench object"
|
||||
MenuText = "Sandbox"
|
||||
ToolTip = "Sandbox workbench"
|
||||
def Initialize(self):
|
||||
# load the module
|
||||
import SandboxGui
|
||||
def GetClassName(self):
|
||||
return "SandboxGui::Workbench"
|
||||
"Sandbox workbench object"
|
||||
MenuText = "Sandbox"
|
||||
ToolTip = "Sandbox workbench"
|
||||
def Initialize(self):
|
||||
# load the module
|
||||
import SandboxGui
|
||||
def GetClassName(self):
|
||||
return "SandboxGui::Workbench"
|
||||
|
||||
Gui.addWorkbench(SandboxWorkbench())
|
||||
|
||||
Reference in New Issue
Block a user