summaryrefslogtreecommitdiff
path: root/noncore/apps/odict/dingwidget.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/odict/dingwidget.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/odict/dingwidget.cpp15
1 files changed, 4 insertions, 11 deletions
diff --git a/noncore/apps/odict/dingwidget.cpp b/noncore/apps/odict/dingwidget.cpp
index 4be6e71..5c4b13b 100644
--- a/noncore/apps/odict/dingwidget.cpp
+++ b/noncore/apps/odict/dingwidget.cpp
@@ -38,16 +38,14 @@ DingWidget::DingWidget( )
}
void DingWidget::loadDict( QString name )
{
- qDebug( "MUSS ich wirklich aufgerufen werder? schreit loadDict" );
- qDebug( "Starte mit dem loadedDict(...)" );
dictName = name;
- qDebug( "bin in loadedDict() und lade das Dict:" );
- qDebug( dictName );
QString opie_dir = getenv("OPIEDIR");
- QFile file( opie_dir+"/noncore/apps/odict/eng_ita.dic" );
- //FIXME:this should of course be not hardcoded ;)
+
+ Config cfg( "odict" );
+ cfg.setGroup( "Method_" + methodname );
+ QFile file( cfg.readEntry( "file" ) );
if( file.open( IO_ReadOnly ) )
{
QTextStream stream( &file );
@@ -56,16 +54,13 @@ void DingWidget::loadDict( QString name )
lines.append( stream.readLine() );
}
file.close();
}
- qDebug( "loadedDict(...) ist beended" );
loadValues();
}
QString DingWidget::loadedDict()
{
- qDebug( dictName );
- qDebug( "^ ^ ^ ^ ^ ^ ^ war der dictName" );
return dictName;
}
void DingWidget::setCaseSensitive( bool caseS )
@@ -98,10 +93,8 @@ void DingWidget::loadValues()
BroswerContent DingWidget::setText( QString word )
{
queryword = word;
- qDebug( queryword );
- qDebug( "^ ^ ^ ^ ^ ^ ^ war das gesuchte Word");
return parseInfo();
}