]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QErrorDialog.h
partial fonts fix. Like Juergen said we really need our own dialog.
[lyx.git] / src / frontends / qt2 / QErrorDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QErrorDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author John Levon
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef QERRORDIALOG_H
13 #define QERRORDIALOG_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ui/QErrorDialogBase.h"
20
21 class QError;
22
23 class QErrorDialog : public QErrorDialogBase {
24         Q_OBJECT
25 public:
26         QErrorDialog(QError * form);
27 protected:
28         virtual void closeEvent(QCloseEvent * e);
29 private:
30         QError * form_;
31 };
32
33 #endif // QERRORDIALOG_H