diff --git a/.eric4project/openlp.org 2.0.e4q b/.eric4project/openlp.org 2.0.e4q index 3ff792c8e..34f467bbc 100644 --- a/.eric4project/openlp.org 2.0.e4q +++ b/.eric4project/openlp.org 2.0.e4q @@ -1,7 +1,7 @@ - + \ No newline at end of file diff --git a/.eric4project/openlp.org 2.0.e4t b/.eric4project/openlp.org 2.0.e4t index e6098707c..53cbe1277 100644 --- a/.eric4project/openlp.org 2.0.e4t +++ b/.eric4project/openlp.org 2.0.e4t @@ -1,6 +1,6 @@ - + \ No newline at end of file diff --git a/openlp.org 2.0.e4p b/openlp.org 2.0.e4p index 0878858e8..37f0d2641 100644 --- a/openlp.org 2.0.e4p +++ b/openlp.org 2.0.e4p @@ -1,7 +1,7 @@ - + Python @@ -51,7 +51,6 @@ openlp/plugins/testplugin2/__init__.py openlp/plugins/testplugin2/testplugin2.py openlp/plugins/test/test_plugin_manager.py - openlp/ui/forms/splashscreen.py openlp/ui/forms/settings.py openlp/ui/forms/alertform.py openlp/ui/forms/editsongform.py @@ -74,6 +73,7 @@ openlp/plugins/song/songplugin.py openlp/core/ui/__init__.py openlp/core/ui/mainwindow.py + openlp/core/ui/splashscreen.py
openlp/resources/forms/mainwindow.ui
@@ -87,8 +87,8 @@
openlp/resources/forms/opensongimportform.ui
openlp/resources/forms/opensongexportform.ui
openlp/resources/forms/splashscreen.ui
-
openlp/resources/forms/bibleImport.ui
openlp/resources/forms/songexport.ui
+
openlp/resources/forms/bibleimport.ui
diff --git a/openlp/core/ui/__init__.py b/openlp/core/ui/__init__.py index 6c430b3df..c1e16b985 100644 --- a/openlp/core/ui/__init__.py +++ b/openlp/core/ui/__init__.py @@ -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']