Unindent wxRegionRefData class body

Only whitespace changes.
This commit is contained in:
Jay Nabonne
2019-01-21 12:35:55 +00:00
committed by Vadim Zeitlin
parent c28a8c9e7e
commit dddca2f516

View File

@@ -20,35 +20,35 @@
class wxRegionRefData: public wxGDIRefData class wxRegionRefData: public wxGDIRefData
{ {
public: public:
wxRegionRefData() wxRegionRefData()
{ {
} }
wxRegionRefData( QRect r ) : m_qtRegion( r ) wxRegionRefData( QRect r ) : m_qtRegion( r )
{ {
} }
wxRegionRefData( QBitmap b ) : m_qtRegion ( b ) wxRegionRefData( QBitmap b ) : m_qtRegion ( b )
{ {
} }
wxRegionRefData( QPolygon p, Qt::FillRule fr ) : m_qtRegion( p, fr ) wxRegionRefData( QPolygon p, Qt::FillRule fr ) : m_qtRegion( p, fr )
{ {
} }
wxRegionRefData( const wxRegionRefData& data ) wxRegionRefData( const wxRegionRefData& data )
: wxGDIRefData() : wxGDIRefData()
{ {
m_qtRegion = data.m_qtRegion; m_qtRegion = data.m_qtRegion;
} }
bool operator == (const wxRegionRefData& data) const bool operator == (const wxRegionRefData& data) const
{ {
return m_qtRegion == data.m_qtRegion; return m_qtRegion == data.m_qtRegion;
} }
QRegion m_qtRegion; QRegion m_qtRegion;
}; };
#define M_REGIONDATA ((wxRegionRefData *)m_refData)->m_qtRegion #define M_REGIONDATA ((wxRegionRefData *)m_refData)->m_qtRegion