]> git.saurik.com Git - wxWidgets.git/commitdiff
compilation fix: use DeviceToLogical[XY]() instead of [XY]LOG2DEV()
authorVadim Zeitlin <vadim@wxwidgets.org>
Sat, 5 May 2007 21:34:26 +0000 (21:34 +0000)
committerVadim Zeitlin <vadim@wxwidgets.org>
Sat, 5 May 2007 21:34:26 +0000 (21:34 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45851 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/x11/dcclient.cpp

index cd0ed5f6a34fad0600becfdc9cf26082345c1fdd..3f74ae5823c96e30e9c73609f7ccd8e117722bd2 100644 (file)
@@ -1276,8 +1276,8 @@ bool wxWindowDC::DoBlit( wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord he
     if (!m_window) return false;
 
     // transform the source DC coords to the device ones
     if (!m_window) return false;
 
     // transform the source DC coords to the device ones
-    xsrc = source->XLOG2DEV(xsrc);
-    ysrc = source->YLOG2DEV(ysrc);
+    xsrc = source->LogicalToDeviceX(xsrc);
+    ysrc = source->LogicalToDeviceY(ysrc);
 
     wxClientDC *srcDC = (wxClientDC*)source;
     wxMemoryDC *memDC = (wxMemoryDC*)source;
 
     wxClientDC *srcDC = (wxClientDC*)source;
     wxMemoryDC *memDC = (wxMemoryDC*)source;