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:
@@ -1722,7 +1722,7 @@ void wxMSWDCImpl::SetRop(WXHDC dc)
|
|||||||
if ( !dc || m_logicalFunction < 0 )
|
if ( !dc || m_logicalFunction < 0 )
|
||||||
return;
|
return;
|
||||||
|
|
||||||
int rop;
|
int rop wxDUMMY_INITIALIZE(0);
|
||||||
|
|
||||||
switch (m_logicalFunction)
|
switch (m_logicalFunction)
|
||||||
{
|
{
|
||||||
|
Reference in New Issue
Block a user