diff --git a/openlp/core/lib/eventreceiver.py b/openlp/core/lib/eventreceiver.py index 0b6451ea2..4252d5adf 100644 --- a/openlp/core/lib/eventreceiver.py +++ b/openlp/core/lib/eventreceiver.py @@ -213,10 +213,12 @@ class EventReceiver(QtCore.QObject): ``{plugin}_add_service_item`` Ask the plugin to push the selected items to the service item. + ``{plugin}_service_load`` + Ask the plugin to process an individual service item after it has been + loaded. ``{plugin}_config_updated`` - The Plugn's config has changed so lets do some processing. - + The config has changed so tell the plugin about it. ``alerts_text`` Displays an alert message. diff --git a/openlp/core/lib/plugin.py b/openlp/core/lib/plugin.py index b56cf0328..f704bd9cd 100644 --- a/openlp/core/lib/plugin.py +++ b/openlp/core/lib/plugin.py @@ -399,7 +399,7 @@ class Plugin(QtCore.QObject): """ return u'' - def configUpdatedl(self): + def configUpdated(self): """ The plugin's config has changed """