summaryrefslogtreecommitdiff
path: root/noncore/apps
authorcniehaus <cniehaus>2003-01-03 20:27:56 (UTC)
committer cniehaus <cniehaus>2003-01-03 20:27:56 (UTC)
commit20ff8ec36b1f997d93fecbc01a9ce7b6aeced26d (patch) (unidiff)
tree9df094bea7a7d96b3382decc211d4ddb2aea37ad /noncore/apps
parentb261b5539e99e32b0f3e8b03c3ccba22c3b765e3 (diff)
downloadopie-20ff8ec36b1f997d93fecbc01a9ce7b6aeced26d.zip
opie-20ff8ec36b1f997d93fecbc01a9ce7b6aeced26d.tar.gz
opie-20ff8ec36b1f997d93fecbc01a9ce7b6aeced26d.tar.bz2
impress tille
Diffstat (limited to 'noncore/apps') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/odict/dingwidget.cpp19
1 files changed, 13 insertions, 6 deletions
diff --git a/noncore/apps/odict/dingwidget.cpp b/noncore/apps/odict/dingwidget.cpp
index 5939000..d5c2d65 100644
--- a/noncore/apps/odict/dingwidget.cpp
+++ b/noncore/apps/odict/dingwidget.cpp
@@ -48,10 +48,6 @@ DingWidget::DingWidget(QWidget *parent, QString word, QTextBrowser *browser_top,
48 48
49 lines = lines.grep( word ); 49 lines = lines.grep( word );
50 50
51 //X for( QStringList::Iterator it = lines.begin() ; it != lines.end() ; ++it )
52 //X {
53 //X qDebug( *it );
54 //X }
55 QString top, bottom; 51 QString top, bottom;
56 52
57 parseInfo( lines, top , bottom ); 53 parseInfo( lines, top , bottom );
@@ -61,6 +57,17 @@ DingWidget::DingWidget(QWidget *parent, QString word, QTextBrowser *browser_top,
61 57
62void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom ) 58void DingWidget::parseInfo( QStringList &lines, QString &top, QString &bottom )
63{ 59{
64 top = "blah"; 60 QRegExp reg( "\\" );
65 bottom = lines.join( "\n" ); 61 QStringList toplist, bottomlist;
62 for( QStringList::Iterator it = lines.begin() ; it != lines.end() ; ++it )
63 {
64 QString current = *it;
65 toplist.append( current.left( current.find(reg) ) );
66 bottomlist.append( current.right( current.find(reg) ) );
67 }
68
69
70 //thats it, the lists are rendered. Lets put them in one string
71 bottom = bottomlist.join( "\n" );
72 top = toplist.join( "\n" );
66} 73}