]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QAboutDialog.h
Some string(widget->text()) fixes. Weirdness
[lyx.git] / src / frontends / qt2 / QAboutDialog.h
1 // -*- C++ -*-
2 /**
3  * \file QAboutDialog.h
4  * This file is part of LyX, the document processor.
5  * Licence details can be found in the file COPYING.
6  *
7  * \author Kalle Dalheimer
8  *
9  * Full author contact details are available in file CREDITS
10  */
11
12 #ifndef QABOUTDIALOG_H
13 #define QABOUTDIALOG_H
14
15 #ifdef __GNUG__
16 #pragma interface
17 #endif
18
19 #include "ui/QAboutDialogBase.h"
20
21 class QAboutDialog : public QAboutDialogBase {
22         Q_OBJECT
23 public:
24         QAboutDialog(QWidget * parent = 0, const char * name = 0,
25                      bool modal = FALSE, WFlags fl = 0);
26         ~QAboutDialog();
27 };
28
29 #endif // QABOUTDIALOG_H