From: Kevin A. <ka...@us...> - 2004-05-10 00:46:04
|
Update of /cvsroot/pythoncard/PythonCard/samples/simpleIEBrowser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16543/samples/simpleIEBrowser Modified Files: simpleIEBrowser.py Log Message: removed Stack class, changed self.stack.app references to self.application changed childWindow, Background, and CustomDialog inits so stack arg isn't passed in. only did minimal testing of tools and samples Index: simpleIEBrowser.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/simpleIEBrowser/simpleIEBrowser.py,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** simpleIEBrowser.py 5 May 2004 16:53:46 -0000 1.12 --- simpleIEBrowser.py 10 May 2004 00:45:22 -0000 1.13 *************** *** 12,16 **** def on_initialize(self, event): ! filename = self.stack.app.applicationDirectory + '/index.html' self.components.htmlDisplay.text = filename --- 12,16 ---- def on_initialize(self, event): ! filename = self.application.applicationDirectory + '/index.html' self.components.htmlDisplay.text = filename |