-rw-r--r-- | noncore/apps/odict/dingwidget.cpp | 4 | ||||
-rw-r--r-- | noncore/apps/odict/dingwidget.h | 13 | ||||
-rw-r--r-- | noncore/apps/odict/odict.cpp | 4 |
3 files changed, 9 insertions, 12 deletions
diff --git a/noncore/apps/odict/dingwidget.cpp b/noncore/apps/odict/dingwidget.cpp index b69a803..6154d68 100644 --- a/noncore/apps/odict/dingwidget.cpp +++ b/noncore/apps/odict/dingwidget.cpp | |||
@@ -30,7 +30,7 @@ | |||
30 | #include <qtextbrowser.h> | 30 | #include <qtextbrowser.h> |
31 | #include <stdlib.h> // for getenv | 31 | #include <stdlib.h> // for getenv |
32 | 32 | ||
33 | DingWidget::DingWidget(QWidget *parent, QString word, QTextBrowser *browser_top, QTextBrowser *browser_bottom, QString activated_name) : QWidget(parent) | 33 | DingWidget::DingWidget(QString word, QTextBrowser *browser_top, QTextBrowser *browser_bottom, QString activated_name) |
34 | { | 34 | { |
35 | methodname = activated_name; | 35 | methodname = activated_name; |
36 | queryword = word; | 36 | queryword = word; |
@@ -53,7 +53,7 @@ DingWidget::DingWidget(QWidget *parent, QString word, QTextBrowser *browser_top, | |||
53 | lines = lines.grep( queryword ); | 53 | lines = lines.grep( queryword ); |
54 | 54 | ||
55 | QString top, bottom; | 55 | QString top, bottom; |
56 | //parseInfo( lines, top , bottom ); | 56 | parseInfo( lines, top , bottom ); |
57 | browser_top->setText( top ); | 57 | browser_top->setText( top ); |
58 | browser_bottom->setText( bottom ); | 58 | browser_bottom->setText( bottom ); |
59 | } | 59 | } |
diff --git a/noncore/apps/odict/dingwidget.h b/noncore/apps/odict/dingwidget.h index 66379fe..1cedb4e 100644 --- a/noncore/apps/odict/dingwidget.h +++ b/noncore/apps/odict/dingwidget.h | |||
@@ -7,22 +7,19 @@ | |||
7 | * * | 7 | * * |
8 | **************************************************************************/ | 8 | **************************************************************************/ |
9 | 9 | ||
10 | #include <qwidget.h> | ||
11 | |||
12 | class QString; | 10 | class QString; |
13 | class QTextBrowser; | 11 | class QTextBrowser; |
14 | class QString; | ||
15 | class QStringList; | 12 | class QStringList; |
16 | 13 | ||
17 | class DingWidget : public QWidget | 14 | #include <qstring.h> |
15 | |||
16 | class DingWidget | ||
18 | { | 17 | { |
19 | Q_OBJECT | ||
20 | |||
21 | public: | 18 | public: |
22 | DingWidget(QWidget *parent = 0, QString word = 0, QTextBrowser* = 0, QTextBrowser* =0, QString activated_name=0); | 19 | DingWidget(QString word = 0, QTextBrowser* = 0, QTextBrowser* =0, QString activated_name=0); |
23 | 20 | ||
24 | private: | 21 | private: |
25 | QString search_word; | 22 | QString search_word; |
26 | void parseInfo( QStringList& , QString&, QString& ); | 23 | void parseInfo( QStringList& , QString&, QString& ); |
27 | QString queryword; | 24 | QString queryword; |
28 | void loadValues(); | 25 | void loadValues(); |
diff --git a/noncore/apps/odict/odict.cpp b/noncore/apps/odict/odict.cpp index e2d1d7b..1fbdb85 100644 --- a/noncore/apps/odict/odict.cpp +++ b/noncore/apps/odict/odict.cpp | |||
@@ -97,13 +97,13 @@ void ODict::slotStartQuery() | |||
97 | QString querystring = query_le->text(); | 97 | QString querystring = query_le->text(); |
98 | qDebug("opening dict >%s< for >%s<", activated_name.latin1(),querystring.latin1()); | 98 | qDebug("opening dict >%s< for >%s<", activated_name.latin1(),querystring.latin1()); |
99 | if (querystring.isEmpty()){ | 99 | if (querystring.isEmpty()){ |
100 | qWarning("emphty querysting"); | 100 | qWarning("empty querysting"); |
101 | return; | 101 | return; |
102 | } | 102 | } |
103 | if (!activated_name || activated_name.isEmpty()) | 103 | if (!activated_name || activated_name.isEmpty()) |
104 | QMessageBox::warning(this,tr("No Dictionary"),tr("Please choose a dictonary") ); | 104 | QMessageBox::warning(this,tr("No Dictionary"),tr("Please choose a dictonary") ); |
105 | else | 105 | else |
106 | DingWidget *ding = new DingWidget( vbox , querystring , browser_top, browser_bottom, activated_name); | 106 | DingWidget *ding = new DingWidget( querystring , browser_top, browser_bottom, activated_name ); |
107 | } | 107 | } |
108 | 108 | ||
109 | 109 | ||