forked from openlp/openlp
Converted the main application file from wx to Qt.
bzr-revno: 41
This commit is contained in:
parent
c0f24e58a3
commit
ff3160d5bf
@ -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):
|
||||
class OpenLP(QtGui.QApplication):
|
||||
pass
|
||||
|
||||
def run(self):
|
||||
pass
|
||||
|
||||
if __name__ == '__main__':
|
||||
app = OpenLP()
|
||||
app.run()
|
||||
app = OpenLP(sys.argv)
|
||||
sys.exit(app.exec_())
|
||||
|
Loading…
Reference in New Issue
Block a user