summaryrefslogtreecommitdiff
path: root/noncore/apps/odict/odict.cpp
Side-by-side diff
Diffstat (limited to 'noncore/apps/odict/odict.cpp') (more/less context) (show whitespace changes)
-rw-r--r--noncore/apps/odict/odict.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp
index 7de9169..2857c65 100644
--- a/noncore/apps/odict/odict.cpp
+++ b/noncore/apps/odict/odict.cpp
@@ -41,2 +41,4 @@ ODict::ODict() : QMainWindow()
{
+
+ activated_name = QString::null;
vbox = new QVBox( this );
@@ -49,2 +51,3 @@ ODict::ODict() : QMainWindow()
query_co = new QComboBox( hbox );
+ connect( query_co , SIGNAL( activated(int) ), this, SLOT( slotMethodChanged(int) ) );
ok_button = new QPushButton( tr( "&Ok" ), hbox );
@@ -94,3 +97,3 @@ void ODict::slotStartQuery()
QString querystring = query_le->text();
- DingWidget *ding = new DingWidget( vbox , querystring , browser_top, browser_bottom);
+ DingWidget *ding = new DingWidget( vbox , querystring , browser_top, browser_bottom, activated_name);
}
@@ -138,2 +141,7 @@ void ODict::slotSetParameter( int count )
+void ODict::slotMethodChanged( int methodnumber )
+{
+ activated_name = query_co->currentText();
+}
+
void ODict::setupMenus()