Mercurial > lcfOS
diff python/ide.py @ 100:fe145e42259d
Fixes after movage
author | windel |
---|---|
date | Mon, 24 Dec 2012 16:35:22 +0100 |
parents | 6efbeb903777 |
children | af0d7913677a |
line wrap: on
line diff
--- a/python/ide.py Mon Dec 24 15:03:30 2012 +0100 +++ b/python/ide.py Mon Dec 24 16:35:22 2012 +0100 @@ -10,8 +10,9 @@ # Compiler imports: from project import Project -from ppci import Compiler -from widgets import CodeEdit, AstViewer +from ppci import KsCompiler +from astviewer import AstViewer +from codeeditor import CodeEdit lcfospng = base64.decodestring(b'iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A\n/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sJEhMKBk7B678AAAA/SURBVFjD\n7dbBCQAgDATBi9h/y7EFA4Kf2QLCwH1S6XQu6sqoujublc8BAAAAAAAAAAB8B+zXT6YJAAAAAKYd\nWSgFQNUyijIAAAAASUVORK5CYII=\n') @@ -116,7 +117,7 @@ def __init__(self, parent=None): super(Ide, self).__init__(parent) self.setWindowTitle('LCFOS IDE') - self.compiler = Compiler() + self.compiler = KsCompiler() icon = QPixmap() icon.loadFromData(lcfospng) self.setWindowIcon(QIcon(icon))