openlp-core team mailing list archive
-
openlp-core team
-
Mailing list archive
-
Message #01316
[Merge] lp:~raoul-snyman/openlp/biblefixes into lp:openlp
Raoul Snyman has proposed merging lp:~raoul-snyman/openlp/biblefixes into lp:openlp.
Requested reviews:
OpenLP Core (openlp-core)
Fixed the "Bible" item in the "Import" menu.
--
https://code.launchpad.net/~raoul-snyman/openlp/biblefixes/+merge/22294
Your team OpenLP Core is subscribed to branch lp:openlp.
=== modified file 'openlp/plugins/bibles/bibleplugin.py'
--- openlp/plugins/bibles/bibleplugin.py 2010-03-21 23:58:01 +0000
+++ openlp/plugins/bibles/bibleplugin.py 2010-03-27 15:01:23 +0000
@@ -73,7 +73,7 @@
self.ImportBibleItem.setText(import_menu.trUtf8('&Bible'))
# Signals and slots
QtCore.QObject.connect(self.ImportBibleItem,
- QtCore.SIGNAL(u'triggered()'), self.onBibleNewClick)
+ QtCore.SIGNAL(u'triggered()'), self.onBibleImportClick)
self.ImportBibleItem.setVisible(False)
def add_export_menu_item(self, export_menu):
@@ -83,9 +83,9 @@
self.ExportBibleItem.setText(export_menu.trUtf8('&Bible'))
self.ExportBibleItem.setVisible(False)
- def onBibleNewClick(self):
+ def onBibleImportClick(self):
if self.media_item:
- self.media_item.onNewClick()
+ self.media_item.onImportClick()
def about(self):
about_text = self.trUtf8('<strong>Bible Plugin</strong><br />This '
Follow ups