]> git.saurik.com Git - wxWidgets.git/blobdiff - src/mgl/dcclient.cpp
provide wxGetLocalTimeMillis() (returning double) even if wxUSE_LONGLONG==0
[wxWidgets.git] / src / mgl / dcclient.cpp
index e5b507cc92115a1373dff6c1be5e2a167d5b98e6..4ca45a50a6bbc1c84d04ff42519a553c98cbc08c 100644 (file)
@@ -3,14 +3,10 @@
 // Purpose:
 // Author:      Vaclav Slavik
 // RCS-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__
-#pragma implementation "dcclient.h"
-#endif
-
 // For compilers that support precompilation, includes "wx.h".
 #include "wx/wxprec.h"
 
@@ -44,10 +40,6 @@ wxWindowDC::wxWindowDC(wxWindow *win) : m_wnd(win)
     {
         m_inPaintHandler = FALSE;
         
-        // VS: we have to update here so that screen's content is up-to-date
-        //     and blitting from wxWindowDC works as expected
-        win->Update();
-
         dc = new MGLDevCtx(MGL_wmBeginPaint(win->GetHandle()));
 
         MGLRegion clip;
@@ -73,5 +65,6 @@ wxClientDC::wxClientDC(wxWindow *win) : wxWindowDC(win)
 {
     wxRect r = m_wnd->GetClientRect();
     m_globalClippingRegion.Intersect(r);
+    SetClippingRegion(m_globalClippingRegion);
     SetDeviceOrigin(r.x, r.y);
 }