]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/WorkAreaFactory.C
Get rid of the static_casts.
[lyx.git] / src / frontends / qt2 / WorkAreaFactory.C
index 5b4e9d6b86b412a03fff9bb0dd50af28a9332370..536c0ca78a9531b9979c2d8e6ab851415dfecaaf 100644 (file)
@@ -1,22 +1,25 @@
 /**
- * \file WorkAreaFactory.C
- * Copyright 2002 the LyX Team
- * Read the file COPYING
+ * \file qt2/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 "QWorkArea.h"
+
 namespace WorkAreaFactory {
+
 WorkArea * create(int x, int y, int w, int h)
 {
        return new QWorkArea(x, y, w, h);
 }
 
-}
+} // namespace WorkAreaFactory