openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #00293
[Merge] lp:~meths/openlp/trivialfixes into lp:openlp
Jon Tibble has proposed merging lp:~meths/openlp/trivialfixes into lp:openlp.
Requested reviews:
openlp.org Core (openlp-core)
The song list reloading bug turned up similar errors. Fix them all.
--
https://code.launchpad.net/~meths/openlp/trivialfixes/+merge/11632
Your team openlp.org Core is subscribed to branch lp:openlp.
=== modified file 'openlp/core/ui/generaltab.py'
--- openlp/core/ui/generaltab.py 2009-06-17 05:11:16 +0000
+++ openlp/core/ui/generaltab.py 2009-09-11 21:50:23 +0000
@@ -120,11 +120,11 @@
QtCore.QObject.connect(self.AutoOpenCheckBox,
QtCore.SIGNAL(u'stateChanged(int)'), self.onAutoOpenCheckBoxChanged)
QtCore.QObject.connect(self.NumberEdit,
- QtCore.SIGNAL(u'lostFocus()'), self.onNumberEditLostFocus)
+ QtCore.SIGNAL(u'editingFinished()'), self.onNumberEditLostFocus)
QtCore.QObject.connect(self.UsernameEdit,
- QtCore.SIGNAL(u'lostFocus()'), self.onUsernameEditLostFocus)
+ QtCore.SIGNAL(u'editingFinished()'), self.onUsernameEditLostFocus)
QtCore.QObject.connect(self.PasswordEdit,
- QtCore.SIGNAL(u'lostFocus()'), self.onPasswordEditLostFocus)
+ QtCore.SIGNAL(u'editingFinished()'), self.onPasswordEditLostFocus)
def retranslateUi(self):
self.MonitorGroupBox.setTitle(translate(u'GeneralTab', u'Monitors'))
=== modified file 'openlp/plugins/songs/forms/editsongform.py'
--- openlp/plugins/songs/forms/editsongform.py 2009-09-10 18:15:40 +0000
+++ openlp/plugins/songs/forms/editsongform.py 2009-09-11 21:34:05 +0000
@@ -74,7 +74,7 @@
QtCore.QObject.connect(self.MaintenanceButton,
QtCore.SIGNAL(u'clicked()'), self.onMaintenanceButtonClicked)
QtCore.QObject.connect(self.TitleEditItem,
- QtCore.SIGNAL(u'lostFocus()'), self.onTitleEditItemLostFocus)
+ QtCore.SIGNAL(u'editingFinished()'), self.onTitleEditItemLostFocus)
QtCore.QObject.connect(self.CCLNumberEdit,
QtCore.SIGNAL(u'lostFocus()'), self.onCCLNumberEditLostFocus)
QtCore.QObject.connect(Receiver.get_receiver(),
Follow ups