~tomasgroth/openlp/portable-path

« back to all changes in this revision

Viewing changes to openlp/core/widgets/edits.py

  • Committer: Tomas Groth
  • Date: 2019-04-30 19:02:42 UTC
  • mfrom: (2829.2.32 openlp)
  • Revision ID: tomasgroth@yahoo.dk-20190430190242-6zwjk8724tyux70m
trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
###############################################################################
5
5
# OpenLP - Open Source Lyrics Projection                                      #
6
6
# --------------------------------------------------------------------------- #
7
 
# Copyright (c) 2008-2018 OpenLP Developers                                   #
 
7
# Copyright (c) 2008-2019 OpenLP Developers                                   #
8
8
# --------------------------------------------------------------------------- #
9
9
# This program is free software; you can redistribute it and/or modify it     #
10
10
# under the terms of the GNU General Public License as published by the Free  #
31
31
from openlp.core.common.i18n import UiStrings, translate
32
32
from openlp.core.common.path import Path, path_to_str, str_to_path
33
33
from openlp.core.common.settings import Settings
34
 
from openlp.core.lib import FormattingTags, build_icon
35
 
from openlp.core.lib.ui import create_widget_action, create_action
 
34
from openlp.core.lib.formattingtags import FormattingTags
 
35
from openlp.core.lib.ui import create_action, create_widget_action
36
36
from openlp.core.ui.icons import UiIcons
37
37
from openlp.core.widgets.dialogs import FileDialog
38
38
from openlp.core.widgets.enums import PathEditType
39
39
 
 
40
 
40
41
try:
41
42
    import enchant
42
43
    from enchant import DictNotFoundError