]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/WorkAreaFactory.C
Tiny clean-ups.
[lyx.git] / src / frontends / xforms / WorkAreaFactory.C
index 1d27d4c54b735989ffaf4bc3073b631f29704ec0..4f194df64f814c19a6cafea1377834d1074a9841 100644 (file)
@@ -1,24 +1,24 @@
 /**
- * \file WorkAreaFactory.C
+ * \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 
+ * \author John Levon
  *
- * Full author contact details are available in file CREDITS
+ * 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);
 }
+
 }