]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/LyXScreenFactory.C
Introduce LFUN_PRINT.
[lyx.git] / src / frontends / xforms / LyXScreenFactory.C
index 1ce2b1c6e2513bfe0235d29eeede17aff0c42516..b17a549d9fa6c27cc5a17fb46b161017d317ce3b 100644 (file)
@@ -1,23 +1,26 @@
 /**
- * \file LyXScreenFactory.C
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * \file xforms/LyXScreenFactory.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/LyXScreenFactory.h"
 
-#include "XWorkArea.h"
 #include "xscreen.h"
+#include "XWorkArea.h"
+
+
 namespace LyXScreenFactory {
 
 LyXScreen * create(WorkArea & owner)
 {
        return new XScreen(static_cast<XWorkArea &>(owner));
-} 
+}
+
 }