summaryrefslogtreecommitdiff
path: root/noncore/apps/odict/dingwidget.cpp
Unidiff
Diffstat (limited to 'noncore/apps/odict/dingwidget.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/odict/dingwidget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/apps/odict/dingwidget.cpp b/noncore/apps/odict/dingwidget.cpp
index d5c2d65..d923b80 100644
--- a/noncore/apps/odict/dingwidget.cpp
+++ b/noncore/apps/odict/dingwidget.cpp
@@ -60,13 +60,13 @@ void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom )
60 QRegExp reg( "\\" ); 60 QRegExp reg( "\\" );
61 QStringList toplist, bottomlist; 61 QStringList toplist, bottomlist;
62 for( QStringList::Iterator it = lines.begin() ; it != lines.end() ; ++it ) 62 for( QStringList::Iterator it = lines.begin() ; it != lines.end() ; ++it )
63 { 63 {
64 QString current = *it; 64 QString current = *it;
65 toplist.append( current.left( current.find(reg) ) ); 65 toplist.append( current.left( current.find(reg) ) );
66 bottomlist.append( current.right( current.find(reg) ) ); 66 bottomlist.append( current.right( current.length() - current.find(reg) - 1 ) );
67 } 67 }
68 68
69 69
70 //thats it, the lists are rendered. Lets put them in one string 70 //thats it, the lists are rendered. Lets put them in one string
71 bottom = bottomlist.join( "\n" ); 71 bottom = bottomlist.join( "\n" );
72 top = toplist.join( "\n" ); 72 top = toplist.join( "\n" );