~ubuntu-branches/ubuntu/precise/kde4libs/precise-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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