From: Kevin A. <ka...@us...> - 2004-09-04 22:47:33
|
Update of /cvsroot/pythoncard/PythonCard/tools/codeEditor In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6858/tools/codeEditor Modified Files: codeEditorR.py Log Message: converted import * Index: codeEditorR.py =================================================================== RCS file: /cvsroot/pythoncard/PythonCard/tools/codeEditor/codeEditorR.py,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** codeEditorR.py 10 May 2004 05:02:48 -0000 1.11 --- codeEditorR.py 4 Sep 2004 22:47:23 -0000 1.12 *************** *** 13,21 **** """ ! from codeEditor import * - # KEA 2003-01-06 - # resource file support - from PythonCard import registry def getResourceFilename(path): --- 13,21 ---- """ ! import os ! import wx ! from PythonCard import model, registry, resource ! import codeEditor def getResourceFilename(path): *************** *** 38,42 **** ! class CodeEditorR(CodeEditor): def initSizers(self): --- 38,42 ---- ! class CodeEditorR(codeEditor.CodeEditor): def initSizers(self): |