fix warning about empty if statement in HDCClipper ctor in release build
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41086 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -505,7 +505,9 @@ public:
|
|||||||
: m_hdc(hdc)
|
: m_hdc(hdc)
|
||||||
{
|
{
|
||||||
if ( !::SelectClipRgn(hdc, hrgn) )
|
if ( !::SelectClipRgn(hdc, hrgn) )
|
||||||
|
{
|
||||||
wxLogLastError(_T("SelectClipRgn"));
|
wxLogLastError(_T("SelectClipRgn"));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
~HDCClipper()
|
~HDCClipper()
|
||||||
|
Reference in New Issue
Block a user