]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/dcscreen.cpp
Typecast before endian adjustements.
[wxWidgets.git] / src / mgl / dcscreen.cpp
index 6152e58c5419ec5a07cca3a23e783c49a031a9a5..148ca94a299a56fe47aded45b56a72ce8a9f8e78 100644 (file)
@@ -2,11 +2,11 @@
 // Name:        dcscreen.cpp
 // Author:      Vaclav Slavik
 // Id:          $Id$
-// Copyright:   (c) 2001 SciTech Software, Inc. (www.scitechsoft.com)
+// Copyright:   (c) 2001-2002 SciTech Software, Inc. (www.scitechsoft.com)
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma implementation "dcscreen.h"
 #endif
 
@@ -25,4 +25,12 @@ IMPLEMENT_DYNAMIC_CLASS(wxScreenDC, wxDC)
 wxScreenDC::wxScreenDC() : wxDC()
 {
     SetMGLDC(g_displayDC, FALSE /* no ownership */);
+    
+    // VS: we have to hide the mouse, otherwise rendering artifacts may occur
+    MS_obscure();
+}
+
+wxScreenDC::~wxScreenDC()
+{
+    MS_show();
 }