author | zecke <zecke> | 2005-02-19 17:24:39 (UTC) |
---|---|---|
committer | zecke <zecke> | 2005-02-19 17:24:39 (UTC) |
commit | b02c537198dad1e53f8c4004a4c08578e431b411 (patch) (unidiff) | |
tree | e68be3ed8bb7d27c1716e7df22dc2ba0f5f3091c | |
parent | be32e0c045814142954ac37c89715313633d6aa2 (diff) | |
download | opie-b02c537198dad1e53f8c4004a4c08578e431b411.zip opie-b02c537198dad1e53f8c4004a4c08578e431b411.tar.gz opie-b02c537198dad1e53f8c4004a4c08578e431b411.tar.bz2 |
-QFileDialog is not used in opentext.cpp so remove it from its header file
-Help Window eventually uses QFileDialog, better include it then as well...
-rw-r--r-- | noncore/apps/opie-gutenbrowser/helpwindow.cpp | 4 | ||||
-rw-r--r-- | noncore/apps/opie-gutenbrowser/openetext.h | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/noncore/apps/opie-gutenbrowser/helpwindow.cpp b/noncore/apps/opie-gutenbrowser/helpwindow.cpp index ffdc9f0..57b1e74 100644 --- a/noncore/apps/opie-gutenbrowser/helpwindow.cpp +++ b/noncore/apps/opie-gutenbrowser/helpwindow.cpp | |||
@@ -13,16 +13,20 @@ | |||
13 | #include "helpwindow.h" | 13 | #include "helpwindow.h" |
14 | #include <qstatusbar.h> | 14 | #include <qstatusbar.h> |
15 | 15 | ||
16 | #include <qmenubar.h> | 16 | #include <qmenubar.h> |
17 | #include <qtoolbar.h> | 17 | #include <qtoolbar.h> |
18 | #include <qtoolbutton.h> | 18 | #include <qtoolbutton.h> |
19 | #include <qcombobox.h> | 19 | #include <qcombobox.h> |
20 | 20 | ||
21 | #ifndef QT_NO_FILEDIALOG | ||
22 | #include <qfiledialog.h> | ||
23 | #endif | ||
24 | |||
21 | #include <ctype.h> | 25 | #include <ctype.h> |
22 | 26 | ||
23 | HelpWindow::HelpWindow( const QString& home_, const QString&, QWidget* parent, const char *name ) | 27 | HelpWindow::HelpWindow( const QString& home_, const QString&, QWidget* parent, const char *name ) |
24 | : QMainWindow( parent, name, WDestructiveClose ), pathCombo( 0 ), selectedURL() | 28 | : QMainWindow( parent, name, WDestructiveClose ), pathCombo( 0 ), selectedURL() |
25 | { | 29 | { |
26 | QString local_library = (QDir::homeDirPath ()) +"/Applications/gutenbrowser/"; | 30 | QString local_library = (QDir::homeDirPath ()) +"/Applications/gutenbrowser/"; |
27 | // readHistory(); | 31 | // readHistory(); |
28 | // readBookmarks(); | 32 | // readBookmarks(); |
diff --git a/noncore/apps/opie-gutenbrowser/openetext.h b/noncore/apps/opie-gutenbrowser/openetext.h index 6db71c4..ecc0bbd 100644 --- a/noncore/apps/opie-gutenbrowser/openetext.h +++ b/noncore/apps/opie-gutenbrowser/openetext.h | |||
@@ -14,19 +14,16 @@ | |||
14 | * * | 14 | * * |
15 | ***************************************************************************/ | 15 | ***************************************************************************/ |
16 | 16 | ||
17 | #ifndef OPENETEXT_H | 17 | #ifndef OPENETEXT_H |
18 | #define OPENETEXT_H | 18 | #define OPENETEXT_H |
19 | #include "gutenbrowser.h" | 19 | #include "gutenbrowser.h" |
20 | #include <qdialog.h> | 20 | #include <qdialog.h> |
21 | #include <qstringlist.h> | 21 | #include <qstringlist.h> |
22 | #ifndef Q_WS_QWS | ||
23 | #include <qfiledialog.h> | ||
24 | #endif | ||
25 | //#include <fileselector.h> | 22 | //#include <fileselector.h> |
26 | #include <qlabel.h> | 23 | #include <qlabel.h> |
27 | #include <qlistbox.h> | 24 | #include <qlistbox.h> |
28 | #include <qpushbutton.h> | 25 | #include <qpushbutton.h> |
29 | #include <qstrlist.h> | 26 | #include <qstrlist.h> |
30 | #include <qwidget.h> | 27 | #include <qwidget.h> |
31 | //#include "CConfigFile.h" | 28 | //#include "CConfigFile.h" |
32 | 29 | ||