diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-04-01 22:05:14 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-04-01 22:05:14 (GMT) |
commit | 842273bcd7ad6814a0ce7c1b097cea98615900c4 (patch) | |
tree | e9a3f679dbc382d2fe0bf8cd2b3d5a1929dda961 /Lib/plat-mac/lib-scriptpackages/Explorer/Standard_Suite.py | |
parent | bc956056d401f0137e687f878a487fa2a16199df (diff) | |
download | cpython-842273bcd7ad6814a0ce7c1b097cea98615900c4.zip cpython-842273bcd7ad6814a0ce7c1b097cea98615900c4.tar.gz cpython-842273bcd7ad6814a0ce7c1b097cea98615900c4.tar.bz2 |
Regenerated with property names with _Prop_ prepended.
Diffstat (limited to 'Lib/plat-mac/lib-scriptpackages/Explorer/Standard_Suite.py')
-rw-r--r-- | Lib/plat-mac/lib-scriptpackages/Explorer/Standard_Suite.py | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/Lib/plat-mac/lib-scriptpackages/Explorer/Standard_Suite.py b/Lib/plat-mac/lib-scriptpackages/Explorer/Standard_Suite.py index 9dee0e9..b7aff28 100644 --- a/Lib/plat-mac/lib-scriptpackages/Explorer/Standard_Suite.py +++ b/Lib/plat-mac/lib-scriptpackages/Explorer/Standard_Suite.py @@ -42,13 +42,13 @@ class Standard_Suite_Events: class application(aetools.ComponentItem): """application - An application program """ want = 'capp' -class selected_text(aetools.NProperty): +class _Prop_selected_text(aetools.NProperty): """selected text - the selected text """ which = 'stxt' want = 'TEXT' application._superclassnames = [] application._privpropdict = { - 'selected_text' : selected_text, + 'selected_text' : _Prop_selected_text, } application._privelemdict = { } @@ -59,13 +59,3 @@ application._privelemdict = { _classdeclarations = { 'capp' : application, } - -_propdeclarations = { - 'stxt' : selected_text, -} - -_compdeclarations = { -} - -_enumdeclarations = { -} |