KHTML
kjserrordlg.h
Go to the documentation of this file.00001 #ifndef KJSERRORDLG_H
00002 #define KJSERRORDLG_H
00003
00004 #include <QtGui/QDialog>
00005
00006 #include "ui_kjserrordlgbase.h"
00007
00008 class KJSErrorDlg : public QDialog, public Ui_KJSErrorDlgBase
00009 {
00010 Q_OBJECT
00011 public:
00012 KJSErrorDlg( QWidget *parent = 0 );
00013
00014 void addError( const QString &error );
00015 void setURL( const QString &url );
00016 protected Q_SLOTS:
00017 void clear();
00018 private:
00019 void init();
00020 };
00021
00022 #endif