diff options
Diffstat (limited to 'Lib/plat-mac/lib-scriptpackages/StdSuites/Table_Suite.py')
-rw-r--r-- | Lib/plat-mac/lib-scriptpackages/StdSuites/Table_Suite.py | 25 |
1 files changed, 6 insertions, 19 deletions
diff --git a/Lib/plat-mac/lib-scriptpackages/StdSuites/Table_Suite.py b/Lib/plat-mac/lib-scriptpackages/StdSuites/Table_Suite.py index 390edd6..09e326c 100644 --- a/Lib/plat-mac/lib-scriptpackages/StdSuites/Table_Suite.py +++ b/Lib/plat-mac/lib-scriptpackages/StdSuites/Table_Suite.py @@ -18,11 +18,11 @@ class Table_Suite_Events: class cell(aetools.ComponentItem): """cell - A cell """ want = 'ccel' -class formula(aetools.NProperty): +class _Prop_formula(aetools.NProperty): """formula - the formula of the cell """ which = 'pfor' want = 'ctxt' -class protection(aetools.NProperty): +class _Prop_protection(aetools.NProperty): """protection - Indicates whether value or formula in the cell can be changed """ which = 'ppro' want = 'prtn' @@ -32,7 +32,7 @@ cells = cell class column(aetools.ComponentItem): """column - A column """ want = 'ccol' -class name(aetools.NProperty): +class _Prop_name(aetools.NProperty): """name - the name of the column """ which = 'pnam' want = 'itxt' @@ -52,14 +52,14 @@ class tables(aetools.ComponentItem): table = tables cell._superclassnames = [] cell._privpropdict = { - 'formula' : formula, - 'protection' : protection, + 'formula' : _Prop_formula, + 'protection' : _Prop_protection, } cell._privelemdict = { } column._superclassnames = [] column._privpropdict = { - 'name' : name, + 'name' : _Prop_name, } column._privelemdict = { } @@ -89,16 +89,3 @@ _classdeclarations = { 'crow' : rows, 'ctbl' : tables, } - -_propdeclarations = { - 'pfor' : formula, - 'pnam' : name, - 'ppro' : protection, -} - -_compdeclarations = { -} - -_enumdeclarations = { - 'prtn' : _Enum_prtn, -} |