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.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
@@ -40,12 +40,10 @@ DingWidget::DingWidget( )
40void DingWidget::loadDict( QString name ) 40void DingWidget::loadDict( QString name )
41{ 41{
42 qDebug( "MUSS ich wirklich aufgerufen werder? schreit loadDict" );
43 qDebug( "Starte mit dem loadedDict(...)" );
44 dictName = name; 42 dictName = name;
45 qDebug( "bin in loadedDict() und lade das Dict:" );
46 qDebug( dictName );
47 QString opie_dir = getenv("OPIEDIR"); 43 QString opie_dir = getenv("OPIEDIR");
48 QFile file( opie_dir+"/noncore/apps/odict/eng_ita.dic" ); 44
49 //FIXME:this should of course be not hardcoded ;) 45 Config cfg( "odict" );
46 cfg.setGroup( "Method_" + methodname );
47 QFile file( cfg.readEntry( "file" ) );
50 48
51 if( file.open( IO_ReadOnly ) ) 49 if( file.open( IO_ReadOnly ) )
@@ -58,5 +56,4 @@ void DingWidget::loadDict( QString name )
58 file.close(); 56 file.close();
59 } 57 }
60 qDebug( "loadedDict(...) ist beended" );
61 loadValues(); 58 loadValues();
62} 59}
@@ -64,6 +61,4 @@ void DingWidget::loadDict( QString name )
64QString DingWidget::loadedDict() 61QString DingWidget::loadedDict()
65{ 62{
66 qDebug( dictName );
67 qDebug( "^ ^ ^ ^ ^ ^ ^ war der dictName" );
68 return dictName; 63 return dictName;
69} 64}
@@ -100,6 +95,4 @@ BroswerContent DingWidget::setText( QString word )
100{ 95{
101 queryword = word; 96 queryword = word;
102 qDebug( queryword );
103 qDebug( "^ ^ ^ ^ ^ ^ ^ war das gesuchte Word");
104 return parseInfo(); 97 return parseInfo();
105} 98}