kdelibs/khtml/kjserrordlg.h
Ivailo Monev 39f1e04295 generic: add back khtml and kjs with some changes
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2015-11-09 23:23:53 +02:00

22 lines
390 B
C++

#ifndef KJSERRORDLG_H
#define KJSERRORDLG_H
#include <QtGui/QDialog>
#include "ui_kjserrordlgbase.h"
class KJSErrorDlg : public QDialog, public Ui_KJSErrorDlgBase
{
Q_OBJECT
public:
KJSErrorDlg( QWidget *parent = 0 );
void addError( const QString &error );
void setURL( const QString &url );
protected Q_SLOTS:
void clear();
private:
void init();
};
#endif