]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QBibitemDialog.h
fix typo that put too many include paths for most people
[lyx.git] / src / frontends / qt2 / QBibitemDialog.h
1 /**
2  * \file QBibitemDialog.h
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon <moz@compsoc.man.ac.uk>
7  */
8
9 #ifndef QBIBITEMDIALOG_H
10 #define QBIBITEMDIALOG_H
11
12 #include "ui/QBibitemDialogBase.h"
13
14 class QBibitem;
15
16 class QBibitemDialog : public QBibitemDialogBase
17 { Q_OBJECT
18
19 public:
20         QBibitemDialog(QBibitem * form);
21
22 protected slots:
23         virtual void change_adaptor();
24
25
26 protected:
27         virtual void closeEvent(QCloseEvent * e);
28
29 private:
30         QBibitem * form_;
31 };
32
33 #endif // QBIBITEMDIALOG_H