]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/fdesign_base.C
Change glob() API to accept a dir parameter.
[lyx.git] / src / frontends / xforms / fdesign_base.C
1 /**
2  * \file fdesign_base.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Angus Leeming
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "fdesign_base.h"
14 #include "lyx_forms.h"
15
16 namespace lyx {
17 namespace frontend {
18
19 FD_base::~FD_base()
20 {
21         if (!form)
22                 return;
23
24         if (form->visible)
25                 fl_hide_form(form);
26
27         fl_free_form(form);
28 }
29
30 } // namespace frontend
31 } // namespace lyx