summaryrefslogtreecommitdiff
authormouse <mouse>2004-03-31 13:33:34 (UTC)
committer mouse <mouse>2004-03-31 13:33:34 (UTC)
commit38e313e5b9d2339580614264a428a84f70f4f4c0 (patch) (side-by-side diff)
tree36db27452496be76a6cc54d50d203f8721b1bbb7
parent2a9adba9bf421aa8bddecfe3f1c1b8a7f8343c4f (diff)
downloadopie-38e313e5b9d2339580614264a428a84f70f4f4c0.zip
opie-38e313e5b9d2339580614264a428a84f70f4f4c0.tar.gz
opie-38e313e5b9d2339580614264a428a84f70f4f4c0.tar.bz2
added missed include file for QFileDialog
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--noncore/todayplugins/stockticker/stockticker/helpwindow.cpp4
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
@@ -1,41 +1,45 @@
/****************************************************************************
**
** Copyright (C) 1992-2000 Trolltech AS. All rights reserved.
**
** This file is part of an example program for Qt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#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& _path, QWidget* parent, const char *name )
: QMainWindow( parent, name, WDestructiveClose ), pathCombo( 0 ), selectedURL()
{
readHistory();
readBookmarks();
browser = new QTextBrowser( this );
QStringList Strlist;
Strlist.append( home_);
browser->mimeSourceFactory()->setFilePath( Strlist );
browser->setFrameStyle( QFrame::Panel | QFrame::Sunken );
connect( browser, SIGNAL( textChanged() ),
this, SLOT( textChanged() ) );
setCentralWidget( browser );
if ( !home_.isEmpty() )