author | cniehaus <cniehaus> | 2003-04-30 20:42:51 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2003-04-30 20:42:51 (UTC) |
commit | 30c685f9da06d19c993e9bdb74f349dabbde063e (patch) (side-by-side diff) | |
tree | a6b0a6e220a6d523dd57b45feb755ce64bd84a8e | |
parent | 5aa8548fd812e4a9b942d6c858c68840fe58f871 (diff) | |
download | opie-30c685f9da06d19c993e9bdb74f349dabbde063e.zip opie-30c685f9da06d19c993e9bdb74f349dabbde063e.tar.gz opie-30c685f9da06d19c993e9bdb74f349dabbde063e.tar.bz2 |
juhu, it is working again
-rw-r--r-- | noncore/apps/odict/dingwidget.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/noncore/apps/odict/dingwidget.cpp b/noncore/apps/odict/dingwidget.cpp index 16164ed..f012333 100644 --- a/noncore/apps/odict/dingwidget.cpp +++ b/noncore/apps/odict/dingwidget.cpp @@ -109,40 +109,41 @@ BroswerContent DingWidget::parseInfo() { if ( isCompleteWord ) queryword = " " + queryword + " "; QStringList search = lines.grep( queryword , isCaseSensitive ); QString current; QString left; QString right; QRegExp reg_div( trenner ); QRegExp reg_word( queryword ); reg_word.setCaseSensitive( isCaseSensitive ); QStringList toplist, bottomlist; - QString substitute = "<strong>"+queryword+"</strong>"; + //QString substitute = "<strong>"+queryword+"</strong>"; + QString substitute = queryword; for( QStringList::Iterator it = search.begin() ; it != search.end() ; ++it ) { current = *it; left = current.left( current.find( trenner ) ); right = current.right( current.length() - current.find(trenner) - trenner.length() ); if ( left.contains( queryword , isCaseSensitive ) ) { left.replace( queryword, substitute ); - left = left + " -- " + right; + left = left + " --> " + right; toplist.append( left ); } else { right.replace( queryword, substitute ); - left = right + " -- " + left; + right = right + " --> " + left; bottomlist.append( right ); } } s_strings.top = toplist.join( "\n" ); s_strings.bottom = bottomlist.join( "\n" ); return s_strings; } |