public:
wxRegionRefData(void)
{
+ m_region = 0;
}
wxRegionRefData(const wxRegionRefData& data)
M_REGION = ::CreateRectRgn(0, 0, 0, 0);
}
+wxRegion::wxRegion(WXHRGN hRegion)
+{
+ m_refData = new wxRegionRefData;
+ M_REGION = (HRGN) hRegion;
+}
+
wxRegion::wxRegion(long x, long y, long w, long h)
{
m_refData = new wxRegionRefData;