openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #01296
[Merge] lp:~trb143/openlp/bugs into lp:openlp
Tim Bentley has proposed merging lp:~trb143/openlp/bugs into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
Fix PYQT4.4 issue
--
https://code.launchpad.net/~trb143/openlp/bugs/+merge/22169
Your team OpenLP Core is subscribed to branch lp:openlp.
=== modified file 'openlp/core/ui/servicemanager.py'
--- openlp/core/ui/servicemanager.py 2010-03-23 19:04:15 +0000
+++ openlp/core/ui/servicemanager.py 2010-03-25 19:30:32 +0000
@@ -148,7 +148,8 @@
self.ServiceManagerList.setHeaderHidden(True)
self.ServiceManagerList.setExpandsOnDoubleClick(False)
self.ServiceManagerList.setContextMenuPolicy(QtCore.Qt.CustomContextMenu)
- self.ServiceManagerList.customContextMenuRequested.connect(self.contextMenu)
+ QtCore.QObject.connect(self.ServiceManagerList,
+ QtCore.SIGNAL('customContextMenuRequested(QPoint)'), self.contextMenu)
self.ServiceManagerList.setObjectName(u'ServiceManagerList')
# enable drop
self.ServiceManagerList.__class__.dragEnterEvent = self.dragEnterEvent
Follow ups