diff options
author | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-06-07 09:55:40 +0200 |
---|---|---|
committer | Fridrich Štrba <fridrich.strba@bluewin.ch> | 2011-06-07 09:55:40 +0200 |
commit | 830aeb105e5ed34b1fb64a66bc2bc7051a18ff0a (patch) | |
tree | 87610e0c0b46643931a709d559a2055fccad7efc | |
parent | 67c12a9487f243317fd1b395e16d9b4b4e17ff5d (diff) |
rend() on a non-const container is a non-const iterator
-rw-r--r-- | svx/source/sdr/properties/attributeproperties.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svx/source/sdr/properties/attributeproperties.cxx b/svx/source/sdr/properties/attributeproperties.cxx index f6969e7a2d98..9edc2a430498 100644 --- a/svx/source/sdr/properties/attributeproperties.cxx +++ b/svx/source/sdr/properties/attributeproperties.cxx @@ -436,7 +436,7 @@ namespace sdr SfxItemSet* pNewSet = &CreateObjectSpecificItemSet(pNewModel->GetItemPool()); - std::vector<const SfxItemSet*>::const_reverse_iterator riter; + std::vector<const SfxItemSet*>::reverse_iterator riter; for (riter = aSetList.rbegin(); riter != aSetList.rend(); ++riter) pNewSet->Put(*(*riter)); |