diff --git a/src/Mod/Path/PathScripts/PathJob.py b/src/Mod/Path/PathScripts/PathJob.py index 9f322fb3dc..a10e1de4b5 100644 --- a/src/Mod/Path/PathScripts/PathJob.py +++ b/src/Mod/Path/PathScripts/PathJob.py @@ -138,7 +138,7 @@ class ObjectJob: def setupSetupSheet(self, obj): if not hasattr(obj, 'SetupSheet'): - obj.addProperty('App::PropertyLink', 'SetupSheet', 'Base', QtCore.QT_TRANSLATE_NOOP('PathJob', 'Spreadsheet holding the settings for this job')) + obj.addProperty('App::PropertyLink', 'SetupSheet', 'Base', QtCore.QT_TRANSLATE_NOOP('PathJob', 'SetupSheet holding the settings for this job')) obj.SetupSheet = PathSetupSheet.Create() if obj.SetupSheet.ViewObject: PathIconViewProvider.ViewProvider(obj.SetupSheet.ViewObject, 'SetupSheet') diff --git a/src/Mod/Path/PathScripts/PathSetupSheet.py b/src/Mod/Path/PathScripts/PathSetupSheet.py index b4951ec866..a71ba2d439 100644 --- a/src/Mod/Path/PathScripts/PathSetupSheet.py +++ b/src/Mod/Path/PathScripts/PathSetupSheet.py @@ -76,9 +76,7 @@ def _traverseTemplateAttributes(attrs, codec): return coded class SetupSheet: - '''Spreadsheet used by a Job to hold global reference values. -It's mostly a convencience wrapper around Spreadsheet. - ''' + '''Property container object used by a Job to hold global reference values. ''' TemplateReference = '${SetupSheet}'