updated doc

This commit is contained in:
Andreas Preikschat 2011-05-07 22:55:11 +02:00
parent cd8e96b6a3
commit 3761a056ca
2 changed files with 9 additions and 5 deletions

View File

@ -52,15 +52,19 @@ class Renderer(object):
Class to pull all Renderer interactions into one place. The plugins will
call helper methods to do the rendering but this class will provide
display defense code.
``theme_manager``
The ThemeManager instance, used to get the current theme details.
"""
log.info(u'Renderer Loaded')
def __init__(self, image_manager, theme_manager):
"""
Initialise the render manager.
``image_manager``
A ImageManager instance which takes care of e. g. caching and resizing
images.
``theme_manager``
The ThemeManager instance, used to get the current theme details.
"""
log.debug(u'Initilisation started')
self.theme_manager = theme_manager

View File

@ -37,8 +37,8 @@ from openlp.core.utils import AppLocation
class SettingsManager(object):
"""
Class to control the initial settings for the UI and provide helper
functions for the loading and saving of application settings.
Class to provide helper functions for the loading and saving of application
settings.
"""
@staticmethod