summaryrefslogtreecommitdiff
path: root/noncore/apps/odict/odict.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/odict/odict.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/odict/odict.cpp37
1 files changed, 6 insertions, 31 deletions
diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp
index 0745f53..c1de6ac 100644
--- a/noncore/apps/odict/odict.cpp
+++ b/noncore/apps/odict/odict.cpp
@@ -24,3 +24,2 @@
#include <qmessagebox.h>
-#include <qpe/config.h>
#include <qhbox.h>
@@ -37,3 +36,3 @@
#include <qpe/resource.h>
-
+#include <qpe/config.h>
@@ -65,3 +64,3 @@ ODict::ODict() : QMainWindow()
ding->loadValues();
-
+
loadConfig();
@@ -81,3 +80,2 @@ void ODict::loadConfig()
regexp = cfg.readEntry( "regexp" ).toInt();
- completewords = cfg.readEntry( "completewords" ).toInt();
@@ -111,2 +109,3 @@ void ODict::loadConfig()
lookupLanguageNames( lastname );
+ ding->loadDict( lastname );
@@ -131,3 +130,2 @@ void ODict::saveConfig()
cfg.writeEntry( "regexp" , regexp );
- cfg.writeEntry( "completewords" , completewords );
cfg.writeEntry( "lastdict" , query_co->currentText() );
@@ -137,4 +135,2 @@ void ODict::slotStartQuery()
{
- qDebug( "bin in slotStartQuery()" );
-
QString querystring = query_le->text();
@@ -151,3 +147,3 @@ void ODict::slotStartQuery()
tr( "&Cancel" ),
- 0, // Define a dict choosen
+ 0, // Define a dict
1 ) ) // Cancel choosen
@@ -166,11 +162,2 @@ void ODict::slotStartQuery()
ding->setCaseSensitive( casesens );
- ding->setCompleteWord( completewords );
-
- qDebug( "activated_name ist:" );
- qDebug( activated_name );
-
- ding->setDict( activated_name );
-
-//X if ( activated_name != ding->loadedDict() )
- ding->loadDict(activated_name);
@@ -178,7 +165,2 @@ void ODict::slotStartQuery()
- qDebug( querystring );
- if ( ding->isCaseSensitive )
- qDebug( "ist CS");
- else qDebug( "kein CS" );
-
browser_top->setText( test.top );
@@ -207,9 +189,2 @@ void ODict::slotSetParameter( int count )
{
- if ( completewords )
- completewords = false;
- else
- completewords = true;
- }
- if ( count == 2 )
- {
if ( regexp )
@@ -228,4 +203,5 @@ void ODict::slotMethodChanged( const QString& methodnumber )
qDebug( activated_name );
+ qDebug( ding->loadedDict() );
-//X if ( activated_name != ding->loadedDict() )
+ if ( activated_name != ding->loadedDict() )
{
@@ -252,3 +228,2 @@ void ODict::setupMenus()
parameter->insertItem( tr( "C&ase sensitive" ), 0 ,0 );
- parameter->insertItem( tr( "Only &complete Words" ), 1 , 1) ;
parameter->insertItem( tr( "Allow &reg. expressions" ), 2 );