]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/fdesign_base.C
Introduce LFUN_PRINT.
[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 FD_base::~FD_base()
17 {
18         if (!form)
19                 return;
20
21         if (form->visible)
22                 fl_hide_form(form);
23
24         fl_free_form(form);
25 }