]> git.saurik.com Git - wxWidgets.git/blobdiff - src/gtk1/dc.cpp
Made dnd reentrent safe as per stable tree.
[wxWidgets.git] / src / gtk1 / dc.cpp
index 489a2f102e03af388ccd52d3998967dcff62c3d0..57273f2ba58961ed683df208ebe8a167a467d655 100644 (file)
@@ -14,8 +14,8 @@
 
 #include "wx/dc.h"
 
-#include "gdk/gdk.h"
-#include "gtk/gtk.h"
+#include <gdk/gdk.h>
+#include <gtk/gtk.h>
 
 //-----------------------------------------------------------------------------
 // constants
@@ -69,12 +69,6 @@ void wxDC::DestroyClippingRegion()
 // get DC capabilities
 // ---------------------------------------------------------------------------
 
-void wxDC::DoGetSize( int* width, int* height ) const
-{
-    if (width) *width = m_maxX-m_minX;
-    if (height) *height = m_maxY-m_minY;
-}
-
 void wxDC::DoGetSizeMM( int* width, int* height ) const
 {
     int w = 0;