]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/LyXScreenFactory.C
fix tooltips in toolbar
[lyx.git] / src / frontends / xforms / 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 "XWorkArea.h"
14 #include "xscreen.h"
15  
16 namespace LyXScreenFactory {
17
18 LyXScreen * create(WorkArea & owner)
19 {
20         return new XScreen(static_cast<XWorkArea &>(owner));
21
22  
23 }