X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/0a53b9b8fe6fc88f243f777db03bafa3a9651701..4b32f8c79e13296b23a5ca95114e8db2c313f053:/src/cocoa/dcscreen.cpp

diff --git a/src/cocoa/dcscreen.cpp b/src/cocoa/dcscreen.cpp
index 50e5fa00f2..d809bb7ee5 100644
--- a/src/cocoa/dcscreen.cpp
+++ b/src/cocoa/dcscreen.cpp
@@ -4,14 +4,16 @@
 // Author:      David Elliott
 // Modified by:
 // Created:     2003/03/16
-// RCS-ID:      $Id:
+// RCS-ID:      $Id$
 // Copyright:   (c) 2002 David Elliott
-// Licence:   	wxWindows license
+// Licence:     wxWindows license
 /////////////////////////////////////////////////////////////////////////////
 
 #include "wx/wxprec.h"
+
+#include "wx/dcscreen.h"
+
 #ifndef WX_PRECOMP
-    #include "wx/dcscreen.h"
 #endif //WX_PRECOMP
 
 //-----------------------------------------------------------------------------
@@ -22,15 +24,14 @@ IMPLEMENT_DYNAMIC_CLASS(wxScreenDC,wxDC)
 
 wxScreenDC::wxScreenDC(void)
 {
-  m_ok = false;
-};
+    m_ok = false;
+}
 
 wxScreenDC::wxScreenDC( wxDC *WXUNUSED(dc) )
 {
-  m_ok = false;
-};
+    m_ok = false;
+}
 
 wxScreenDC::~wxScreenDC(void)
 {
 }
-