From cd5ea84b4061c1d3b8401252fd2c36efade02c95 Mon Sep 17 00:00:00 2001 From: cniehaus Date: Sat, 10 May 2003 20:58:31 +0000 Subject: fix a stupid bug --- (limited to 'noncore/apps/odict/dingwidget.cpp') diff --git a/noncore/apps/odict/dingwidget.cpp b/noncore/apps/odict/dingwidget.cpp index 55a716d..c804385 100644 --- a/noncore/apps/odict/dingwidget.cpp +++ b/noncore/apps/odict/dingwidget.cpp @@ -34,7 +34,6 @@ void DingWidget::loadDict( QString name ) { lines.clear(); //as we will load a new list we have to //remove the old one - qDebug( "DingWidget::loadDict( ... )" ); Config cfg( "odict" ); cfg.setGroup( "Method_" + name ); @@ -49,6 +48,9 @@ void DingWidget::loadDict( QString name ) } file.close(); } + + setDict( name ); + loadValues(); } @@ -79,6 +81,7 @@ void DingWidget::loadValues() Config cfg( "odict" ); cfg.setGroup( "Method_" + methodname ); trenner = cfg.readEntry( "Seperator" ); + lang1_name = cfg.readEntry( "Lang1" ); lang2_name = cfg.readEntry( "Lang2" ); } @@ -107,7 +110,7 @@ BroswerContent DingWidget::parseInfo() { current = *it; left = current.left( current.find( trenner ) ); - + right = current.right( current.length() - current.find(trenner) - trenner.length() ); if ( left.contains( queryword , isCaseSensitive ) ) @@ -116,7 +119,7 @@ BroswerContent DingWidget::parseInfo() left = left + " --> " + right; toplist.append( left ); } - else + else if( right.contains( queryword , isCaseSensitive ) ) { right.replace( queryword, substitute ); right = right + " --> " + left; -- cgit v0.9.0.2