~raoul-snyman/openlp/python3

« back to all changes in this revision

Viewing changes to openlp/core/ui/thememanager.py

  • Committer: Andreas Preikschat
  • Date: 2013-02-06 21:43:18 UTC
  • mfrom: (2169.2.10 clean-up)
  • Revision ID: googol@lavabit.com-20130206214318-m02gabgyr7p9o18u
- removed not needed imports; removed not needed script
- used += instead
- fixed short lines
- converted print statements
- reordered imports

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
from xml.etree.ElementTree import ElementTree, XML
39
39
from PyQt4 import QtCore, QtGui
40
40
 
41
 
from openlp.core.lib import OpenLPToolbar, get_text_file_string, build_icon, Receiver, SettingsManager, translate, \
42
 
    check_item_selected, check_directory_exists, create_thumb, validate_thumb, ImageSource, Settings, Registry, \
43
 
    UiStrings
 
41
from openlp.core.lib import ImageSource, OpenLPToolbar, Receiver, Registry, SettingsManager, Settings, UiStrings, \
 
42
    get_text_file_string, build_icon, translate, check_item_selected, check_directory_exists, create_thumb, \
 
43
    validate_thumb
44
44
from openlp.core.lib.theme import ThemeXML, BackgroundType, VerticalType, BackgroundGradientType
45
45
from openlp.core.lib.ui import critical_error_message_box, create_widget_action
46
46
from openlp.core.theme import Theme
859
859
            self._application = Registry().get(u'application')
860
860
        return self._application
861
861
 
862
 
    application = property(_get_application)
 
 
b'\\ No newline at end of file'
 
862
    application = property(_get_application)