Converted the main application file from wx to Qt.

bzr-revno: 41
This commit is contained in:
Raoul Snyman 2008-10-27 19:20:39 +00:00
parent c0f24e58a3
commit ff3160d5bf
1 changed files with 4 additions and 7 deletions

View File

@ -19,13 +19,10 @@ this program; if not, write to the Free Software Foundation, Inc., 59 Temple
Place, Suite 330, Boston, MA 02111-1307 USA Place, Suite 330, Boston, MA 02111-1307 USA
""" """
class OpenLP(object): class OpenLP(QtGui.QApplication):
def __init__(self): pass
pass
def run(self):
pass
if __name__ == '__main__': if __name__ == '__main__':
app = OpenLP() app = OpenLP(sys.argv)
app.run() sys.exit(app.exec_())