From 8bf76a7baa534132aa3e3ccecbdff442ccafc7e6 Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Wed, 27 Mar 2013 10:14:24 +0100 Subject: [PATCH] fixed start time form --- openlp/core/ui/starttimeform.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/openlp/core/ui/starttimeform.py b/openlp/core/ui/starttimeform.py index 7d8a42f0f..f2ac090d0 100644 --- a/openlp/core/ui/starttimeform.py +++ b/openlp/core/ui/starttimeform.py @@ -45,7 +45,9 @@ class StartTimeForm(QtGui.QDialog, Ui_StartTimeDialog): """ Constructor """ - QtGui.QDialog.__init__(self, self.main_window) + super().__init__() + # TODO: python3 - parent correct? + #QtGui.QDialog.__init__(self, self.main_window) self.setupUi(self) def exec_(self):