src/eric7/Project/SpellingPropertiesDialog.py

branch
eric7
changeset 9413
80c06d472826
parent 9221
bf71ee032bb4
child 9473
3f23dbf37dbe
diff -r 45e7bb09c120 -r 80c06d472826 src/eric7/Project/SpellingPropertiesDialog.py
--- 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()))

eric ide

mercurial