diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-04 09:50:05 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-04 10:11:13 +0100 |
commit | 183dbfe3a7ea2f8af00f5c188472432355c7085e (patch) | |
tree | 8128cc5b119f476a4a1fabc7f3cc4ce02e0ee8a2 /winaccessibility | |
parent | 5a7289dc14bc79d74890ccc9bb62c33c30380966 (diff) |
-Werror,-Wshadow
Change-Id: Idf72ab1a311fcbbc81b16d9a3c1e78aaa10332c0
Diffstat (limited to 'winaccessibility')
-rw-r--r-- | winaccessibility/source/service/AccObject.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winaccessibility/source/service/AccObject.cxx b/winaccessibility/source/service/AccObject.cxx index 4bd357f98af6..1b5a82ef5f7c 100644 --- a/winaccessibility/source/service/AccObject.cxx +++ b/winaccessibility/source/service/AccObject.cxx @@ -210,7 +210,7 @@ void AccObject::InsertChild( AccObject* pChild,short pos ) } else { - std::vector<AccObject*>::iterator iter=m_childrenList.begin()+pos; + iter=m_childrenList.begin()+pos; m_childrenList.insert(iter,pChild); } |