]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt2/WorkAreaFactory.C
Some string(widget->text()) fixes. Weirdness
[lyx.git] / src / frontends / qt2 / WorkAreaFactory.C
index 5b4e9d6b86b412a03fff9bb0dd50af28a9332370..21a6fc9ddb5d6db02e5e87543a09613e5e4a693c 100644 (file)
@@ -1,22 +1,28 @@
 /**
- * \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>
+
+#ifdef __GNUG__
+#pragma implementation
+#endif
+
 #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