]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/LyXScreenFactory.C
Yet more (minor) compilation fixes.
[lyx.git] / src / frontends / qt2 / LyXScreenFactory.C
1 /**
2  * \file LyXScreenFactory.C
3  * Copyright 2002 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon <moz@compsoc.man.ac.uk>
7  */
8
9 #include <config.h>
10
11 #include "frontends/LyXScreenFactory.h"
12
13 #include "QWorkArea.h"
14 #include "qscreen.h"
15
16 namespace LyXScreenFactory {
17
18 LyXScreen * create(WorkArea & owner)
19 {
20         return new QScreen(static_cast<QWorkArea &>(owner));
21 }
22
23 }