Fixed debug statements in spell checker

This commit is contained in:
Jordan Sherer 2019-09-25 20:28:00 -04:00
parent 8d4db7d376
commit 9055d50e76

View File

@ -80,7 +80,7 @@ void JSCChecker::checkRange(QTextEdit* edit, int start, int end)
// stop contentsChange signals from being emitted due to changed charFormats // stop contentsChange signals from being emitted due to changed charFormats
edit->document()->blockSignals(true); edit->document()->blockSignals(true);
qDebug() << "checking range " << start << " - " << end; //qDebug() << "checking range " << start << " - " << end;
QTextCharFormat errorFmt; QTextCharFormat errorFmt;
errorFmt.setFontUnderline(true); errorFmt.setFontUnderline(true);
@ -122,7 +122,7 @@ void JSCChecker::checkRange(QTextEdit* edit, int start, int end)
} }
} }
qDebug() << "word" << word << "correct" << correct; //qDebug() << "word" << word << "correct" << correct;
} }
if(correct){ if(correct){
@ -205,7 +205,7 @@ QMap<quint32, QString> candidates(QString word, bool includeTwoEdits){
QStringList JSCChecker::suggestions(QString word, int n, bool *pFound){ QStringList JSCChecker::suggestions(QString word, int n, bool *pFound){
QStringList s; QStringList s;
qDebug() << "computing suggestions for word" << word; // qDebug() << "computing suggestions for word" << word;
QMap<quint32, QString> m; QMap<quint32, QString> m;
@ -229,7 +229,7 @@ QStringList JSCChecker::suggestions(QString word, int n, bool *pFound){
if(i >= n){ if(i >= n){
break; break;
} }
qDebug() << "suggest" << m[key] << key; //qDebug() << "suggest" << m[key] << key;
s.append(m[key]); s.append(m[key]);
i++; i++;
} }