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
11
openlp.pyw
11
openlp.pyw
@ -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_())
|
||||||
|
Loading…
Reference in New Issue
Block a user