Updated the main file to use the forms now in openlp.core.ui

bzr-revno: 123
This commit is contained in:
Raoul Snyman 2008-11-25 21:03:09 +00:00
parent 5588ac2c1b
commit 41b10ebc46
4 changed files with 8 additions and 6 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE UserProject SYSTEM "UserProject-4.0.dtd">
<!-- eric4 user project file for project openlp.org 2.0 -->
<!-- Saved: 2008-11-25, 22:44:31 -->
<!-- Saved: 2008-11-25, 23:00:20 -->
<!-- Copyright (C) 2008 Raoul Snyman, raoulsnyman@openlp.org -->
<UserProject version="4.0">
</UserProject>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Tasks SYSTEM "Tasks-4.2.dtd">
<!-- eric4 tasks file for project openlp.org 2.0 -->
<!-- Saved: 2008-11-25, 22:44:31 -->
<!-- Saved: 2008-11-25, 23:00:20 -->
<Tasks version="4.2">
</Tasks>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE Project SYSTEM "Project-4.4.dtd">
<!-- eric4 project file for project openlp.org 2.0 -->
<!-- Saved: 2008-11-25, 22:44:31 -->
<!-- Saved: 2008-11-25, 23:00:20 -->
<!-- Copyright (C) 2008 Raoul Snyman, raoulsnyman@openlp.org -->
<Project version="4.4">
<ProgLanguage mixed="0">Python</ProgLanguage>
@ -51,7 +51,6 @@
<Source>openlp/plugins/testplugin2/__init__.py</Source>
<Source>openlp/plugins/testplugin2/testplugin2.py</Source>
<Source>openlp/plugins/test/test_plugin_manager.py</Source>
<Source>openlp/ui/forms/splashscreen.py</Source>
<Source>openlp/ui/forms/settings.py</Source>
<Source>openlp/ui/forms/alertform.py</Source>
<Source>openlp/ui/forms/editsongform.py</Source>
@ -74,6 +73,7 @@
<Source>openlp/plugins/song/songplugin.py</Source>
<Source>openlp/core/ui/__init__.py</Source>
<Source>openlp/core/ui/mainwindow.py</Source>
<Source>openlp/core/ui/splashscreen.py</Source>
</Sources>
<Forms>
<Form>openlp/resources/forms/mainwindow.ui</Form>
@ -87,8 +87,8 @@
<Form>openlp/resources/forms/opensongimportform.ui</Form>
<Form>openlp/resources/forms/opensongexportform.ui</Form>
<Form>openlp/resources/forms/splashscreen.ui</Form>
<Form>openlp/resources/forms/bibleImport.ui</Form>
<Form>openlp/resources/forms/songexport.ui</Form>
<Form>openlp/resources/forms/bibleimport.ui</Form>
</Forms>
<Translations>
</Translations>

View File

@ -1,4 +1,3 @@
#!/usr/bin/env pythonw
# -*- coding: utf-8 -*-
# vim: autoindent shiftwidth=4 expandtab textwidth=80
"""
@ -20,3 +19,6 @@ Place, Suite 330, Boston, MA 02111-1307 USA
"""
from openlp.core.ui.mainwindow import MainWindow
from openlp.core.ui.splashscreen import SplashScreen
__all__ = ['MainWindow', 'SplashScreen']