]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/WorkAreaFactory.C
rename LFUN enum values according to their command (as used in th minibuffer/bind...
[lyx.git] / src / frontends / qt4 / WorkAreaFactory.C
1 /**
2  * \file qt4/WorkAreaFactory.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "frontends/WorkAreaFactory.h"
14 #include "QWorkArea.h"
15
16 namespace WorkAreaFactory {
17
18 WorkArea * create(LyXView & owner, int w, int h)
19 {
20         return new QWorkArea(owner, w, h);
21 }
22
23 } // namespace WorkAreaFactory