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
"""
class OpenLP(object):
def __init__(self):
pass
class OpenLP(QtGui.QApplication):
pass
def run(self):
pass
if __name__ == '__main__':
app = OpenLP()
app.run()
app = OpenLP(sys.argv)
sys.exit(app.exec_())