]> 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 9123cd4e9118e0a92b9181818738dad9210422e2..536c0ca78a9531b9979c2d8e6ab851415dfecaaf 100644 (file)
@@ -3,26 +3,23 @@
  * 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
  */
 
 #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