| 783 | |
| 784 | |
| 785 | void NoteFormatter::setHighlightText(QString text) { |
| 786 | QLOG_TRACE_IN(); |
| 787 | QStringList temp = text.split(" "); |
| 788 | for (int i=0; i<temp.size(); i++) { |
| 789 | if (temp[i].trimmed() != "") |
| 790 | highlightWords.append(temp[i]); |
| 791 | } |
| 792 | QLOG_TRACE_OUT(); |
| 793 | } |