Fix shadowed warnings with overzealous compilers
This commit is contained in:
parent
11dcb76fc9
commit
cf70aa925c
|
@ -214,7 +214,7 @@ public:
|
|||
protected:
|
||||
|
||||
bool IsModal() { return m_modal; }
|
||||
void SetModal( bool IsModal ) { m_modal = IsModal; }
|
||||
void SetModal( bool aIsModal ) { m_modal = aIsModal; }
|
||||
|
||||
/**
|
||||
* Function IsDismissed
|
||||
|
|
|
@ -154,9 +154,8 @@ public:
|
|||
{}
|
||||
|
||||
template <class InputIterator>
|
||||
LSEQ( InputIterator start, InputIterator end ) :
|
||||
BASE_SEQ( start, end ),
|
||||
m_index( 0 )
|
||||
LSEQ( InputIterator aStart, InputIterator aEnd ) :
|
||||
BASE_SEQ( aStart, aEnd ), m_index( 0 )
|
||||
{}
|
||||
|
||||
void Rewind() { m_index = 0; }
|
||||
|
|
Loading…
Reference in New Issue