]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/LyXKeySymFactory.C
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / LyXKeySymFactory.C
1 /**
2  * \file xforms/LyXKeySymFactory.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Asger & Juergen
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #include <config.h>
12
13 #include "frontends/LyXKeySymFactory.h"
14
15 #include "XLyXKeySym.h"
16
17 namespace LyXKeySymFactory {
18
19 LyXKeySym * create()
20 {
21         return new XLyXKeySym();
22 }
23
24 }