From: Kevin A. <ka...@us...> - 2004-05-10 00:46:05
|
Update of /cvsroot/pythoncard/PythonCard/samples/searchexplorer In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16543/samples/searchexplorer Modified Files: searchexplorer.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: searchexplorer.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/samples/searchexplorer/searchexplorer.py,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** searchexplorer.py 5 May 2004 16:53:45 -0000 1.33 --- searchexplorer.py 10 May 2004 00:45:21 -0000 1.34 *************** *** 99,103 **** if not os.path.exists(self.configPath): os.mkdir(self.configPath) ! basePath = self.stack.app.applicationDirectory self.sfFilename = os.path.join(self.configPath, FAVORITES_FILE) if not os.path.exists(self.sfFilename): --- 99,103 ---- if not os.path.exists(self.configPath): os.mkdir(self.configPath) ! basePath = self.application.applicationDirectory self.sfFilename = os.path.join(self.configPath, FAVORITES_FILE) if not os.path.exists(self.sfFilename): |