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