From 9cdec0e3d31a0e2c8e5aba79adc75e2143aa9599 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Sat, 17 Mar 2012 10:46:08 +0000 Subject: [PATCH] Minor fixes --- openlp/core/lib/eventreceiver.py | 6 ++++-- openlp/core/lib/plugin.py | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) 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 """