]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/WorkAreaFactory.C
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / WorkAreaFactory.C
index 59bd400646a4918ec517576aad4cd7e763905f80..4f194df64f814c19a6cafea1377834d1074a9841 100644 (file)
@@ -1,22 +1,24 @@
 /**
- * \file WorkAreaFactory.C
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * \file xforms/WorkAreaFactory.C
+ * This file is part of LyX, the document processor.
+ * Licence details can be found in the file COPYING.
  *
- * \author John Levon <moz@compsoc.man.ac.uk>
+ * \author John Levon
+ *
+ * Full author contact details are available in file CREDITS.
  */
 
 #include <config.h>
+
 #include "frontends/WorkAreaFactory.h"
 #include "XWorkArea.h"
+
+
 namespace WorkAreaFactory {
+
 WorkArea * create(int x, int y, int w, int h)
 {
        return new XWorkArea(x, y, w, h);
 }
+
 }