Removed references to Spreadsheet from docstrings.

This commit is contained in:
Markus Lampert
2017-10-21 15:54:56 -07:00
parent 03ea6a1f33
commit 4826e6387e
2 changed files with 2 additions and 4 deletions

View File

@@ -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')

View File

@@ -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}'