~trb143/openlp/media_timer2

« back to all changes in this revision

Viewing changes to openlp/plugins/alerts/alertsplugin.py

  • Committer: Tim Bentley
  • Date: 2016-04-06 05:08:44 UTC
  • mfrom: (2619.2.19 trunk)
  • Revision ID: tim.bentley@gmail.com-20160406050844-dt24kf7e5enu6rdr
Head

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
 
25
25
from PyQt5 import QtGui
26
26
 
27
 
 
28
27
from openlp.core.common import Settings, translate
 
28
from openlp.core.common.actions import ActionList
29
29
from openlp.core.lib import Plugin, StringContent, build_icon
30
30
from openlp.core.lib.db import Manager
 
31
from openlp.core.lib.theme import VerticalType
31
32
from openlp.core.lib.ui import create_action, UiStrings
32
 
from openlp.core.lib.theme import VerticalType
33
33
from openlp.core.ui import AlertLocation
34
 
from openlp.core.utils.actions import ActionList
 
34
from openlp.plugins.alerts.forms import AlertForm
35
35
from openlp.plugins.alerts.lib import AlertsManager, AlertsTab
36
36
from openlp.plugins.alerts.lib.db import init_schema
37
 
from openlp.plugins.alerts.forms import AlertForm
38
37
 
39
38
log = logging.getLogger(__name__)
40
39