]> git.saurik.com Git - wxWidgets.git/blobdiff - src/motif/dc.cpp
added wxUSE_MDI (but forgot to commit before)
[wxWidgets.git] / src / motif / dc.cpp
index cc5c5359a40be7d4cef5683d2b29c5bc72abf11f..187bf9f0184f0d18415fff7bdded3bf33df091c8 100644 (file)
@@ -9,10 +9,13 @@
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
     #pragma implementation "dc.h"
 #endif
 
+// For compilers that support precompilation, includes "wx.h".
+#include "wx/wxprec.h"
+
 #include "wx/dc.h"
 #include "wx/dcmemory.h"
 #include "wx/defs.h"
@@ -87,11 +90,6 @@ void wxDC::DoSetClippingRegion( wxCoord x, wxCoord y, wxCoord width, wxCoord hei
     m_clipY2 = y + height;
 }
 
-void wxDC::DestroyClippingRegion()
-{
-    m_clipping = FALSE;
-}
-
 void wxDC::DoGetSize( int* width, int* height ) const
 {
     if ( width )