Regenerated with property names with _Prop_ prepended.

This commit is contained in:
Jack Jansen 2003-04-01 22:05:14 +00:00
parent bc956056d4
commit 842273bcd7
53 changed files with 1697 additions and 2860 deletions

View file

@ -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 = {
}