Define wxGridSelectionRange::iterator in terms of vector iterator
This fixes compilation when using std::vector<> implementation for wxVector (i.e. with wxUSE_STD_CONTAINERS==1).
This commit is contained in:
@@ -875,12 +875,12 @@ struct wxGridBlockDiffResult
|
|||||||
class wxGridSelectionRange
|
class wxGridSelectionRange
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
typedef wxGridBlockCoords* iterator;
|
typedef wxVector<wxGridBlockCoords>::const_iterator iterator;
|
||||||
|
|
||||||
wxGridSelectionRange() :
|
wxGridSelectionRange() :
|
||||||
m_begin(NULL),
|
m_begin(),
|
||||||
m_end(NULL),
|
m_end(),
|
||||||
m_it(NULL)
|
m_it()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user