Preferences/ConfigurationPages/WebBrowserSpellCheckingPage.py

changeset 5558
858abfcbaf28
parent 5532
3a7c5deab9b7
child 5650
4c52f07c186e
diff -r 66d7cb3873c1 -r 858abfcbaf28 Preferences/ConfigurationPages/WebBrowserSpellCheckingPage.py
--- a/Preferences/ConfigurationPages/WebBrowserSpellCheckingPage.py	Sat Feb 25 19:36:06 2017 +0100
+++ b/Preferences/ConfigurationPages/WebBrowserSpellCheckingPage.py	Sat Feb 25 19:41:10 2017 +0100
@@ -7,6 +7,8 @@
 Module implementing the Web Browser Spell Checking configuration page.
 """
 
+from __future__ import unicode_literals
+
 from PyQt5.QtCore import pyqtSlot, Qt, QCoreApplication, QDir, QLibraryInfo, \
     QLocale
 from PyQt5.QtWidgets import QListWidgetItem
@@ -113,9 +115,6 @@
     def on_spellCheckEnabledCheckBox_clicked(self):
         """
         Private slot handling a change of the spell checking enabled state.
-        
-        @param checked state of the check box
-        @type bool
         """
         enable = self.spellCheckEnabledCheckBox.isChecked()
         self.noLanguagesLabel.setEnabled(enable)

eric ide

mercurial