diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2016-03-28 19:17:45 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2016-03-28 18:39:16 +0000 |
commit | 2b60e64c18e16391ab7e04d1ded1119b8b5428ac (patch) | |
tree | 55686f1b2e0e065f9b333fb630613bce679c6cc2 /dbaccess/source/ui/control/RelationControl.cxx | |
parent | df47441ebe0eaf97c2ab7ce854323c18f4d1fe79 (diff) |
Use const_iterator when possible (whole dbaccess)
Change-Id: I3d10a7914353b384fc7a2195a70398869f675211
Reviewed-on: https://gerrit.libreoffice.org/23570
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'dbaccess/source/ui/control/RelationControl.cxx')
-rw-r--r-- | dbaccess/source/ui/control/RelationControl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/control/RelationControl.cxx b/dbaccess/source/ui/control/RelationControl.cxx index a6d5c274b2b6..eef6891b5a56 100644 --- a/dbaccess/source/ui/control/RelationControl.cxx +++ b/dbaccess/source/ui/control/RelationControl.cxx @@ -612,7 +612,7 @@ namespace dbaui } m_pParentDialog->setValid(bValid); - ORelationControl::ops_type::iterator i (m_pRC_Tables->m_ops.begin()); + ORelationControl::ops_type::const_iterator i (m_pRC_Tables->m_ops.begin()); const ORelationControl::ops_type::const_iterator e (m_pRC_Tables->m_ops.end()); m_pRC_Tables->DeactivateCell(); for(; i != e; ++i) |