author | cniehaus <cniehaus> | 2003-01-04 12:57:25 (UTC) |
---|---|---|
committer | cniehaus <cniehaus> | 2003-01-04 12:57:25 (UTC) |
commit | 69f08fb67ec7e92c4b3c573d6a1ce374aaa97cee (patch) (unidiff) | |
tree | dba2a9fd1bcb38841227bda4b29fa625fc02169e | |
parent | 969924a9d896b70141758b734d898b4423dac357 (diff) | |
download | opie-69f08fb67ec7e92c4b3c573d6a1ce374aaa97cee.zip opie-69f08fb67ec7e92c4b3c573d6a1ce374aaa97cee.tar.gz opie-69f08fb67ec7e92c4b3c573d6a1ce374aaa97cee.tar.bz2 |
- qWarning("emphty querysting");
+ qWarning("empty querysting");
- DingWidget *ding = new DingWidget( vbox , querystring , browser_top, browser_bottom, activated_name);
+ DingWidget *ding = new DingWidget( querystring , browser_top, browser_bottom, activated_name );
That with some more changes even works
-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 | |||
@@ -32,3 +32,3 @@ | |||
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 | { |
@@ -55,3 +55,3 @@ DingWidget::DingWidget(QWidget *parent, QString word, QTextBrowser *browser_top, | |||
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 ); |
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 | |||
@@ -9,18 +9,15 @@ | |||
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& ); |
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 | |||
@@ -99,3 +99,3 @@ void ODict::slotStartQuery() | |||
99 | if (querystring.isEmpty()){ | 99 | if (querystring.isEmpty()){ |
100 | qWarning("emphty querysting"); | 100 | qWarning("empty querysting"); |
101 | return; | 101 | return; |
@@ -105,3 +105,3 @@ void ODict::slotStartQuery() | |||
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 | } |