]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/LyXScreenFactory.C
Some string(widget->text()) fixes. Weirdness
[lyx.git] / src / frontends / qt2 / LyXScreenFactory.C
1 /**
2  * \file qt2/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 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include "frontends/LyXScreenFactory.h"
18
19 #include "QWorkArea.h"
20 #include "qscreen.h"
21
22 namespace LyXScreenFactory {
23
24 LyXScreen * create(WorkArea & owner)
25 {
26         return new QScreen(static_cast<QWorkArea &>(owner));
27 }
28
29 } // namespace LyXScreenFactory