@@ -85,8 +85,8 @@ <H2>A modeless dialog application using FrameWork</H2>
8585menu bar and the main event loop and event dispatching. In the
8686< CODE > __init__</ CODE > routine we first let the base class initialize
8787itself, then we create our modeless dialog and finally we jump into
88- the main loop. The main loop continues until < CODE > self</ CODE > is
89- raised, which we will do when the user selects "quit". When we create
88+ the main loop. The main loop continues until we call < CODE > self._quit </ CODE > ,
89+ which we will do when the user selects "quit". When we create
9090the instance of < CODE > MyDialog</ CODE > (which inherits
9191< CODE > DialogWindow</ CODE > , which inherits < CODE > Window</ CODE > ) we pass
9292a reference to the application object, this reference is used to tell
@@ -97,8 +97,8 @@ <H2>A modeless dialog application using FrameWork</H2>
9797The < CODE > makeusermenus()</ CODE > method (which is called sometime
9898during the Application < CODE > __init__</ CODE > routine) creates a File
9999menu with a Quit command (shortcut command-Q), which will callback to
100- our quit() method. < CODE > Quit()</ CODE > , in turn, raises 'self' which
101- causes the mainloop to terminate. < p >
100+ our quit() method. < CODE > Quit()</ CODE > , in turn, calls < CODE > _quit </ CODE > which
101+ causes the mainloop to terminate at a convenient time . < p >
102102
103103Application provides a standard about box, but we override this by
104104providing our own < CODE > do_about()</ CODE > method which shows an about
0 commit comments