attribute instead of method

This commit is contained in:
Andreas Preikschat 2012-05-26 19:12:01 +02:00
parent 0517f3d8d7
commit 56b02b02b1
1 changed files with 4 additions and 4 deletions

View File

@ -548,9 +548,9 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow):
plugins.
"""
QtGui.QMainWindow.__init__(self)
self.application = lambda: application
self.clipboard = self.application().clipboard()
self.arguments = self.application().args
self.application = application
self.clipboard = self.application.clipboard()
self.arguments = self.application.args
# Set up settings sections for the main application
# (not for use by plugins)
self.uiSettingsSection = u'user interface'
@ -1135,7 +1135,7 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow):
"""
# The MainApplication did not even enter the event loop (this happens
# when OpenLP is not fully loaded). Just ignore the event.
if not self.application().eventLoopIsActive:
if not self.application.eventLoopIsActive:
event.ignore()
return
# If we just did a settings import, close without saving changes.