summaryrefslogtreecommitdiff
path: root/noncore/apps/odict/dingwidget.cpp
Unidiff
Diffstat (limited to 'noncore/apps/odict/dingwidget.cpp') (more/less context) (ignore 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
@@ -54,20 +54,20 @@ DingWidget::DingWidget(QWidget *parent, QString word, QTextBrowser *browser_top,
54 browser_top->setText( top ); 54 browser_top->setText( top );
55 browser_bottom->setText( bottom ); 55 browser_bottom->setText( bottom );
56} 56}
57 57
58void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom ) 58void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom )
59{ 59{
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" );
73} 73}