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