]> git.saurik.com Git - wxWidgets.git/blobdiff - src/cocoa/dcscreen.cpp
Add implementation of Objective-C class name uniquifying.
[wxWidgets.git] / src / cocoa / dcscreen.cpp
index ade3a4c0d876c1873cc9fe764f25b2fccb5a7536..d809bb7ee505f2e3c2c2eb65fdf230cda8459ec5 100644 (file)
@@ -4,13 +4,18 @@
 // 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
+#endif //WX_PRECOMP
+
 //-----------------------------------------------------------------------------
 // wxMemoryDC
 //-----------------------------------------------------------------------------
@@ -19,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)
 {
 }
-