]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/fdesign_base.C
remove defaults stuff, let Qt handle no toolbar
[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
14 #include "fdesign_base.h"
15 #include FORMS_H_LOCATION
16
17 FD_base::~FD_base()
18 {
19         if (!form)
20                 return;
21
22         if (form->visible)
23                 fl_hide_form(form);
24
25         fl_free_form(form);
26 }