openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #02359
[Merge] lp:~meths/openlp/trivialfixes into lp:openlp
Jon Tibble has proposed merging lp:~meths/openlp/trivialfixes into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
Tweaks and cleanups
--
https://code.launchpad.net/~meths/openlp/trivialfixes/+merge/29346
Your team OpenLP Core is requested to review the proposed merge of lp:~meths/openlp/trivialfixes into lp:openlp.
=== modified file 'openlp/core/lib/toolbar.py'
--- openlp/core/lib/toolbar.py 2010-06-19 17:31:42 +0000
+++ openlp/core/lib/toolbar.py 2010-07-07 00:14:41 +0000
@@ -42,7 +42,7 @@
"""
Initialise the toolbar.
"""
- QtGui.QToolBar.__init__(self, None)
+ QtGui.QToolBar.__init__(self, parent)
# useful to be able to reuse button icons...
self.icons = {}
self.setIconSize(QtCore.QSize(20, 20))
=== modified file 'openlp/core/ui/amendthemedialog.py'
--- openlp/core/ui/amendthemedialog.py 2010-07-01 15:46:51 +0000
+++ openlp/core/ui/amendthemedialog.py 2010-07-07 00:14:41 +0000
@@ -596,15 +596,15 @@
self.TransitionGroupBox.setObjectName(u'TransitionGroupBox')
self.gridLayout_5 = QtGui.QGridLayout(self.TransitionGroupBox)
self.gridLayout_5.setObjectName(u'gridLayout_5')
- self.SlideTransitionCheckedBoxLabel = QtGui.QLabel(
+ self.SlideTransitionCheckBoxLabel = QtGui.QLabel(
self.TransitionGroupBox)
- self.SlideTransitionCheckedBoxLabel.setObjectName(
- u'SlideTransitionCheckedBoxLabel')
+ self.SlideTransitionCheckBoxLabel.setObjectName(
+ u'SlideTransitionCheckBoxLabel')
self.gridLayout_5.addWidget(
- self.SlideTransitionCheckedBoxLabel, 0, 0, 1, 1)
- self.SlideTransitionCheckedBox = QtGui.QCheckBox(self.AlignmentGroupBox)
- self.SlideTransitionCheckedBox.setTristate(False)
- self.gridLayout_5.addWidget(self.SlideTransitionCheckedBox, 0, 1, 1, 1)
+ self.SlideTransitionCheckBoxLabel, 0, 0, 1, 1)
+ self.SlideTransitionCheckBox = QtGui.QCheckBox(self.AlignmentGroupBox)
+ self.SlideTransitionCheckBox.setTristate(False)
+ self.gridLayout_5.addWidget(self.SlideTransitionCheckBox, 0, 1, 1, 1)
self.OptionsRightLayout.addWidget(self.TransitionGroupBox)
spacerItem6 = QtGui.QSpacerItem(20, 40, QtGui.QSizePolicy.Minimum,
QtGui.QSizePolicy.Expanding)
@@ -864,7 +864,7 @@
translate('AmendThemeForm', 'Bottom'))
self.TransitionGroupBox.setTitle(
translate('AmendThemeForm', 'Slide Transition'))
- self.SlideTransitionCheckedBoxLabel.setText(
+ self.SlideTransitionCheckBoxLabel.setText(
translate('AmendThemeForm', 'Transition active:'))
self.ThemeTabWidget.setTabText(
self.ThemeTabWidget.indexOf(self.OtherOptionsTab),
=== modified file 'openlp/core/ui/amendthemeform.py'
--- openlp/core/ui/amendthemeform.py 2010-07-01 19:34:48 +0000
+++ openlp/core/ui/amendthemeform.py 2010-07-07 00:14:41 +0000
@@ -133,9 +133,9 @@
QtCore.QObject.connect(self.OutlineSpinBox,
QtCore.SIGNAL(u'editingFinished()'),
self.onOutlineSpinBoxChanged)
- QtCore.QObject.connect(self.SlideTransitionCheckedBox,
+ QtCore.QObject.connect(self.SlideTransitionCheckBox,
QtCore.SIGNAL(u'stateChanged(int)'),
- self.onSlideTransitionCheckedBoxChanged)
+ self.onSlideTransitionCheckBoxChanged)
def accept(self):
new_theme = ThemeXML()
@@ -500,7 +500,7 @@
self.stateChanging(self.theme)
self.previewTheme()
- def onSlideTransitionCheckedBoxChanged(self, value):
+ def onSlideTransitionCheckBoxChanged(self, value):
if value == 2: # checked
self.theme.display_slideTransition = True
else:
@@ -624,9 +624,9 @@
self.ShadowColorPushButton.setEnabled(False)
self.ShadowSpinBox.setValue(int(self.theme.display_shadow_size))
if self.theme.display_slideTransition:
- self.SlideTransitionCheckedBox.setCheckState(QtCore.Qt.Checked)
+ self.SlideTransitionCheckBox.setCheckState(QtCore.Qt.Checked)
else:
- self.SlideTransitionCheckedBox.setCheckState(QtCore.Qt.Unchecked)
+ self.SlideTransitionCheckBox.setCheckState(QtCore.Qt.Unchecked)
self.HorizontalComboBox.setCurrentIndex(
self.theme.display_horizontalAlign)
self.VerticalComboBox.setCurrentIndex(self.theme.display_verticalAlign)
=== modified file 'openlp/core/ui/maindisplay.py'
--- openlp/core/ui/maindisplay.py 2010-07-03 19:45:14 +0000
+++ openlp/core/ui/maindisplay.py 2010-07-07 00:14:41 +0000
@@ -210,7 +210,6 @@
self.setWindowFlags(QtCore.Qt.Window | QtCore.Qt.FramelessWindowHint)
self.setHorizontalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff)
self.setVerticalScrollBarPolicy(QtCore.Qt.ScrollBarAlwaysOff)
- self.parent = parent
# WA_TranslucentBackground is not available in QT4.4
try:
self.setAttribute(QtCore.Qt.WA_TranslucentBackground)
@@ -616,7 +615,7 @@
def mediaShow(self, message=''):
"""
- Show the video disaply if it was already hidden
+ Show the video display if it was already hidden
"""
if self.hidden:
self.hidden = False
@@ -625,7 +624,7 @@
class AudioPlayer(QtCore.QObject):
"""
- This Class will play audio only allowing components to work witn a
+ This Class will play audio only allowing components to work with a
soundtrack which does not take over the user interface.
"""
log.info(u'AudioPlayer Loaded')
@@ -641,8 +640,7 @@
The list of screens.
"""
log.debug(u'AudioPlayer Initialisation started')
- QtCore.QObject.__init__(self)
- self.parent = parent
+ QtCore.QObject.__init__(self, parent)
self.message = None
self.mediaObject = Phonon.MediaObject()
self.audioObject = Phonon.AudioOutput(Phonon.VideoCategory)
Follow ups