fix MSVC warning about possibly unused variable in SetRop()

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@58037 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin 2009-01-12 11:56:21 +00:00
parent 220ea2b928
commit 088ef87dae

View File

@ -1722,7 +1722,7 @@ void wxMSWDCImpl::SetRop(WXHDC dc)
if ( !dc || m_logicalFunction < 0 )
return;
int rop;
int rop wxDUMMY_INITIALIZE(0);
switch (m_logicalFunction)
{