]> git.lyx.org Git - lyx.git/blob - src/frontends/guiapi.C
fix bug: table toolbar icons in menubar, hiding will be handled by the next patch
[lyx.git] / src / frontends / guiapi.C
1 /**
2  * \file guiapi.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author Angus Leeming
8  *
9  * Full author contact details are available in file CREDITS.
10  */
11
12 #include <config.h>
13
14 #include "guiapi.h"
15 #include "Dialogs.h"
16
17
18 namespace lyx {
19
20
21 extern "C" {
22
23 void gui_show_dialog(Dialogs * d, char const * name, char const * data)
24 {
25         d->show(name, data, 0);
26 }
27
28 } // extern "C"
29
30
31 } // namespace lyx