Version updates, manual date change, no change to dragimmg.cpp

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14991 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2002-04-07 17:09:26 +00:00
parent abefd7eeba
commit 69477ac449
9 changed files with 852 additions and 722 deletions

View File

@@ -250,7 +250,9 @@ bool wxGenericDragImage::BeginDrag(const wxPoint& hotspot,
(*backing) = wxBitmap(clientSize.x, clientSize.y);
if (!m_fullScreen)
{
m_windowDC = new wxClientDC(window);
}
else
{
m_windowDC = new wxScreenDC;
@@ -370,7 +372,8 @@ bool wxGenericDragImage::Show()
bool wxGenericDragImage::UpdateBackingFromWindow(wxDC& windowDC, wxMemoryDC& destDC,
const wxRect& sourceRect, const wxRect& destRect) const
{
return destDC.Blit(destRect.x, destRect.y, destRect.width, destRect.height, & windowDC, sourceRect.x, sourceRect.y);
return destDC.Blit(destRect.x, destRect.y, destRect.width, destRect.height, & windowDC,
sourceRect.x, sourceRect.y);
}
bool wxGenericDragImage::Hide()