]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/fdesign_base.C
Finish the business of strengthening the sed scripts and beautifying
[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 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include "fdesign_base.h"
18 #include FORMS_H_LOCATION
19
20 FD_base::~FD_base()
21 {
22         if (!form)
23                 return;
24
25         if (form->visible)
26                 fl_hide_form(form);
27
28         fl_free_form(form);
29 }