Fix shadowed warnings with overzealous compilers

This commit is contained in:
jean-pierre charras 2017-02-23 13:16:54 +01:00
parent 11dcb76fc9
commit cf70aa925c
2 changed files with 3 additions and 4 deletions

View File

@ -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

View File

@ -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; }