Removed some trash from that came through tha cables
Fixed Blit probs Fixed file dlg probs Fixed TextCtrl probs git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1560 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -588,12 +588,12 @@ bool wxWindowDC::Blit( long xdest, long ydest, long width, long height,
|
||||
}
|
||||
|
||||
gdk_draw_pixmap( m_window, m_penGC, pmap,
|
||||
source->DeviceToLogicalX(xsrc),
|
||||
source->DeviceToLogicalY(ysrc),
|
||||
source->LogicalToDeviceX(xsrc),
|
||||
source->LogicalToDeviceY(ysrc),
|
||||
xx,
|
||||
yy,
|
||||
source->DeviceToLogicalXRel(width),
|
||||
source->DeviceToLogicalYRel(height) );
|
||||
source->LogicalToDeviceXRel(width),
|
||||
source->LogicalToDeviceYRel(height) );
|
||||
|
||||
if (useMask && mask)
|
||||
{
|
||||
@@ -621,12 +621,12 @@ bool wxWindowDC::Blit( long xdest, long ydest, long width, long height,
|
||||
}
|
||||
|
||||
gdk_draw_bitmap( m_window, m_textGC, bmap,
|
||||
source->DeviceToLogicalX(xsrc),
|
||||
source->DeviceToLogicalY(ysrc),
|
||||
source->LogicalToDeviceX(xsrc),
|
||||
source->LogicalToDeviceY(ysrc),
|
||||
xx,
|
||||
yy,
|
||||
source->DeviceToLogicalXRel(width),
|
||||
source->DeviceToLogicalYRel(height) );
|
||||
source->LogicalToDeviceXRel(width),
|
||||
source->LogicalToDeviceYRel(height) );
|
||||
|
||||
if (useMask && mask)
|
||||
{
|
||||
@@ -642,10 +642,10 @@ bool wxWindowDC::Blit( long xdest, long ydest, long width, long height,
|
||||
gdk_window_copy_area ( m_window, m_penGC,
|
||||
XLOG2DEV(xdest), YLOG2DEV(ydest),
|
||||
csrc->GetWindow(),
|
||||
source->DeviceToLogicalX(xsrc),
|
||||
source->DeviceToLogicalY(ysrc),
|
||||
source->DeviceToLogicalXRel(width),
|
||||
source->DeviceToLogicalYRel(height) );
|
||||
source->LogicalToDeviceX(xsrc),
|
||||
source->LogicalToDeviceY(ysrc),
|
||||
source->LogicalToDeviceXRel(width),
|
||||
source->LogicalToDeviceYRel(height) );
|
||||
|
||||
SetLogicalFunction( old_logical_func );
|
||||
return TRUE;
|
||||
|
Reference in New Issue
Block a user