]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/WorkAreaFactory.C
fix tooltips in toolbar
[lyx.git] / src / frontends / xforms / WorkAreaFactory.C
1 /**
2  * \file WorkAreaFactory.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/WorkAreaFactory.h"
12  
13 #include "XWorkArea.h"
14  
15 namespace WorkAreaFactory {
16  
17 WorkArea * create(int x, int y, int w, int h)
18 {
19         return new XWorkArea(x, y, w, h);
20 }
21  
22 }