--- a/src/eric7/Project/SpellingPropertiesDialog.py Tue Oct 18 16:05:20 2022 +0200 +++ b/src/eric7/Project/SpellingPropertiesDialog.py Tue Oct 18 16:06:21 2022 +0200 @@ -9,11 +9,11 @@ from PyQt6.QtWidgets import QDialog -from EricWidgets.EricPathPicker import EricPathPickerModes +from eric7.EricWidgets.EricPathPicker import EricPathPickerModes from .Ui_SpellingPropertiesDialog import Ui_SpellingPropertiesDialog -import Preferences +from eric7 import Preferences class SpellingPropertiesDialog(QDialog, Ui_SpellingPropertiesDialog): @@ -43,7 +43,7 @@ self.project = project self.parent = parent - from QScintilla.SpellChecker import SpellChecker + from eric7.QScintilla.SpellChecker import SpellChecker self.spellingComboBox.addItem(self.tr("<default>")) self.spellingComboBox.addItems(sorted(SpellChecker.getAvailableLanguages()))