diff options
author | Ken Moore <ken@ixsystems.com> | 2018-08-16 08:16:54 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2018-08-16 08:19:13 -0400 |
commit | aaa7241a3fc617d97663f87bc155d65fcb864ae6 (patch) | |
tree | e602701c61b0cf1f83e33a994db65ba481df0dee /src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp | |
parent | Chase even more port flavor changes in FreeBSD.... (diff) | |
download | lumina-aaa7241a3fc617d97663f87bc155d65fcb864ae6.tar.gz lumina-aaa7241a3fc617d97663f87bc155d65fcb864ae6.tar.bz2 lumina-aaa7241a3fc617d97663f87bc155d65fcb864ae6.zip |
De-activate all the hunspell integrations in lumina-text-editor.
They do not work (crash as soon as calling the hunspell library).
The hunspell functions are just commented out at the moment so that the library is not needed for the build until such time as the hunspell integration works.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp')
-rw-r--r-- | src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp b/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp index d1f29974..07b99f27 100644 --- a/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp +++ b/src-qt5/desktop-utils/lumina-textedit/PlainTextEditor.cpp @@ -291,7 +291,6 @@ void PlainTextEditor::LNW_updateWidth(){ void PlainTextEditor::LNW_highlightLine(){ QList<QTextEdit::ExtraSelection> sels; - foreach(Word *word, wordList) { sels.append(word->sel); }; if(this->isReadOnly()){ return; } QColor highC = QColor(0,0,0,50); //just darken the line a bit |