forked from openlp/openlp
Revert some changes - functional Ok. Interfaces mess
This commit is contained in:
parent
5c0fa26289
commit
219fec12d2
@ -7,3 +7,7 @@ sip.setapi(u'QTime', 2)
|
||||
sip.setapi(u'QUrl', 2)
|
||||
sip.setapi(u'QVariant', 2)
|
||||
|
||||
from PyQt4 import QtGui
|
||||
|
||||
# Only one QApplication can be created. Use QtGui.QApplication.instance() when you need to "create" a QApplication.
|
||||
application = QtGui.QApplication([])
|
@ -20,7 +20,7 @@ class TestImageManager(TestCase):
|
||||
Create the UI
|
||||
"""
|
||||
Registry.create()
|
||||
self.app = QtGui.QApplication([])
|
||||
self.app = QtGui.QApplication.instance()
|
||||
ScreenList.create(self.app.desktop())
|
||||
self.image_manager = ImageManager()
|
||||
|
||||
|
@ -23,8 +23,8 @@ class TestScreenList(TestCase):
|
||||
"""
|
||||
Set up the components need for all tests.
|
||||
"""
|
||||
self.application = QtGui.QApplication.instance()
|
||||
Registry.create()
|
||||
self.application = QtGui.QApplication([])
|
||||
self.application.setOrganizationName(u'OpenLP-tests')
|
||||
self.application.setOrganizationDomain(u'openlp.org')
|
||||
self.screens = ScreenList.create(self.application.desktop())
|
||||
|
Loading…
Reference in New Issue
Block a user