25 lines
495 B
C++
25 lines
495 B
C++
![]() |
/*! @file
|
||
|
|
||
|
@id $Id$
|
||
|
*/
|
||
|
// 1 2 3 4 5 6 7 8
|
||
|
// 45678901234567890123456789012345678901234567890123456789012345678901234567890
|
||
|
|
||
|
#ifndef ERRORLOG_HXX
|
||
|
#define ERRORLOG_HXX
|
||
|
|
||
|
#include <ui_errorlog.h>
|
||
|
#include <QtGui/QDialog>
|
||
|
|
||
|
class ErrorLog: public QDialog, protected Ui::ErrorLog {
|
||
|
public:
|
||
|
ErrorLog(QWidget* p): QDialog(p) {
|
||
|
setupUi(this);
|
||
|
}
|
||
|
void append(QString text) {
|
||
|
_errors->append(text);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
#endif
|