author | zecke <zecke> | 2005-02-19 17:24:39 (UTC) |
---|---|---|
committer | zecke <zecke> | 2005-02-19 17:24:39 (UTC) |
commit | b02c537198dad1e53f8c4004a4c08578e431b411 (patch) (side-by-side diff) | |
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 @@ #include "helpwindow.h" #include <qstatusbar.h> #include <qmenubar.h> #include <qtoolbar.h> #include <qtoolbutton.h> #include <qcombobox.h> +#ifndef QT_NO_FILEDIALOG +#include <qfiledialog.h> +#endif + #include <ctype.h> HelpWindow::HelpWindow( const QString& home_, const QString&, QWidget* parent, const char *name ) : QMainWindow( parent, name, WDestructiveClose ), pathCombo( 0 ), selectedURL() { QString local_library = (QDir::homeDirPath ()) +"/Applications/gutenbrowser/"; // readHistory(); // 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 @@ * * ***************************************************************************/ #ifndef OPENETEXT_H #define OPENETEXT_H #include "gutenbrowser.h" #include <qdialog.h> #include <qstringlist.h> -#ifndef Q_WS_QWS -#include <qfiledialog.h> -#endif //#include <fileselector.h> #include <qlabel.h> #include <qlistbox.h> #include <qpushbutton.h> #include <qstrlist.h> #include <qwidget.h> //#include "CConfigFile.h" |