]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/LyXScreenFactory.C
This patch removes qscreen.[Ch] and simplify the cursor drawing on screen. Basically...
[lyx.git] / src / frontends / qt4 / LyXScreenFactory.C
1 /**
2  * \file qt4/LyXScreenFactory.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/LyXScreenFactory.h"
14
15 #include "QWorkArea.h"
16
17 namespace LyXScreenFactory {
18
19 LyXScreen * create(WorkArea & owner)
20 {
21         return &(static_cast<QWorkArea &>(owner));
22 }
23
24 } // namespace LyXScreenFactory