mirror of
https://bitbucket.org/smil3y/kdelibs.git
synced 2025-02-23 18:32:49 +00:00
22 lines
390 B
C++
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
|