summaryrefslogtreecommitdiff
path: root/noncore/apps
authorzecke <zecke>2005-02-19 17:24:39 (UTC)
committer zecke <zecke>2005-02-19 17:24:39 (UTC)
commitb02c537198dad1e53f8c4004a4c08578e431b411 (patch) (unidiff)
treee68be3ed8bb7d27c1716e7df22dc2ba0f5f3091c /noncore/apps
parentbe32e0c045814142954ac37c89715313633d6aa2 (diff)
downloadopie-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...
Diffstat (limited to 'noncore/apps') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-gutenbrowser/helpwindow.cpp4
-rw-r--r--noncore/apps/opie-gutenbrowser/openetext.h3
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
@@ -9,24 +9,28 @@
9 copyright : (C) 2000 -2004 by llornkcor 9 copyright : (C) 2000 -2004 by llornkcor
10 email : ljp@llornkcor.com 10 email : ljp@llornkcor.com
11*****************************************************************************/ 11*****************************************************************************/
12 12
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
23HelpWindow::HelpWindow( const QString& home_, const QString&, QWidget* parent, const char *name ) 27HelpWindow::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();
29 33
30 browser = new QTextBrowser( this ); 34 browser = new QTextBrowser( this );
31 QStringList Strlist; 35 QStringList Strlist;
32 Strlist.append( home_); 36 Strlist.append( home_);
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
@@ -10,27 +10,24 @@
10 * This program is free software; you can redistribute it and/or modify * 10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by * 11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 2 of the License, or * 12 * the Free Software Foundation; either version 2 of the License, or *
13 * (at your option) any later version. * 13 * (at your option) any later version. *
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
33/** 30/**
34 *@author llornkcor 31 *@author llornkcor
35 */ 32 */
36 33