author | mouse <mouse> | 2004-03-31 13:33:34 (UTC) |
---|---|---|
committer | mouse <mouse> | 2004-03-31 13:33:34 (UTC) |
commit | 38e313e5b9d2339580614264a428a84f70f4f4c0 (patch) (unidiff) | |
tree | 36db27452496be76a6cc54d50d203f8721b1bbb7 | |
parent | 2a9adba9bf421aa8bddecfe3f1c1b8a7f8343c4f (diff) | |
download | opie-38e313e5b9d2339580614264a428a84f70f4f4c0.zip opie-38e313e5b9d2339580614264a428a84f70f4f4c0.tar.gz opie-38e313e5b9d2339580614264a428a84f70f4f4c0.tar.bz2 |
added missed include file for QFileDialog
-rw-r--r-- | noncore/todayplugins/stockticker/stockticker/helpwindow.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/noncore/todayplugins/stockticker/stockticker/helpwindow.cpp b/noncore/todayplugins/stockticker/stockticker/helpwindow.cpp index db662e8..410d642 100644 --- a/noncore/todayplugins/stockticker/stockticker/helpwindow.cpp +++ b/noncore/todayplugins/stockticker/stockticker/helpwindow.cpp | |||
@@ -6,24 +6,28 @@ | |||
6 | ** program may be used, distributed and modified without limitation. | 6 | ** program may be used, distributed and modified without limitation. |
7 | ** | 7 | ** |
8 | *****************************************************************************/ | 8 | *****************************************************************************/ |
9 | 9 | ||
10 | #include "helpwindow.h" | 10 | #include "helpwindow.h" |
11 | #include <qstatusbar.h> | 11 | #include <qstatusbar.h> |
12 | 12 | ||
13 | #include <qmenubar.h> | 13 | #include <qmenubar.h> |
14 | #include <qtoolbar.h> | 14 | #include <qtoolbar.h> |
15 | #include <qtoolbutton.h> | 15 | #include <qtoolbutton.h> |
16 | #include <qcombobox.h> | 16 | #include <qcombobox.h> |
17 | 17 | ||
18 | #ifndef QT_NO_FILEDIALOG | ||
19 | #include <qfiledialog.h> | ||
20 | #endif | ||
21 | |||
18 | #include <ctype.h> | 22 | #include <ctype.h> |
19 | 23 | ||
20 | HelpWindow::HelpWindow( const QString& home_, const QString& _path, QWidget* parent, const char *name ) | 24 | HelpWindow::HelpWindow( const QString& home_, const QString& _path, QWidget* parent, const char *name ) |
21 | : QMainWindow( parent, name, WDestructiveClose ), pathCombo( 0 ), selectedURL() | 25 | : QMainWindow( parent, name, WDestructiveClose ), pathCombo( 0 ), selectedURL() |
22 | { | 26 | { |
23 | readHistory(); | 27 | readHistory(); |
24 | readBookmarks(); | 28 | readBookmarks(); |
25 | 29 | ||
26 | browser = new QTextBrowser( this ); | 30 | browser = new QTextBrowser( this ); |
27 | QStringList Strlist; | 31 | QStringList Strlist; |
28 | Strlist.append( home_); | 32 | Strlist.append( home_); |
29 | 33 | ||