From 620c589323db5977f17c3d67a4a575b0f96c5701 Mon Sep 17 00:00:00 2001 From: Stefan Neis Date: Sun, 22 Jan 2012 17:27:09 +0000 Subject: [PATCH] Fixed typo in variable name, fixing #13872. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70436 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/os2/dc.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/os2/dc.cpp b/src/os2/dc.cpp index 14d766ba38..b13314253a 100644 --- a/src/os2/dc.cpp +++ b/src/os2/dc.cpp @@ -343,7 +343,7 @@ wxPMDCImpl::wxPMDCImpl( wxDC *owner, WXHDC hDC ) : m_hDC = hDC; } // end of wxPMDCImpl::wxPMDCImpl -wxPMDCImpl::~wxPMDCImpl(void) +wxPMDCImpl::~wxPMDCImpl() { if ( m_hDC != 0 ) { @@ -459,7 +459,7 @@ void wxPMDCImpl::DoSetDeviceClippingRegion( DO_SET_CLIPPING_BOX() } // end of wxPMDCImpl::DoSetDeviceClippingRegion -void wxPMDCImpl::DestroyClippingRegion(void) +void wxPMDCImpl::DestroyClippingRegion() { if (m_clipping && m_hPS) { @@ -910,7 +910,7 @@ void wxPMDCImpl::DoDrawLines( { POINTL vPoint; - if (vXoffset != 0L || vXoffset != 0L) + if (vXoffset != 0L || vYoffset != 0L) { int i; -- 2.45.2