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:
Vadim Zeitlin
2006-09-09 12:55:05 +00:00
parent a124f99a24
commit 8b76325cdc

View File

@@ -505,7 +505,9 @@ public:
: m_hdc(hdc)
{
if ( !::SelectClipRgn(hdc, hrgn) )
{
wxLogLastError(_T("SelectClipRgn"));
}
}
~HDCClipper()