summaryrefslogtreecommitdiff
path: root/svx/source/sdr/properties
diff options
context:
space:
mode:
authorFridrich Štrba <fridrich.strba@bluewin.ch>2011-06-07 09:55:40 +0200
committerFridrich Štrba <fridrich.strba@bluewin.ch>2011-06-07 09:55:40 +0200
commit830aeb105e5ed34b1fb64a66bc2bc7051a18ff0a (patch)
tree87610e0c0b46643931a709d559a2055fccad7efc /svx/source/sdr/properties
parent67c12a9487f243317fd1b395e16d9b4b4e17ff5d (diff)
rend() on a non-const container is a non-const iterator
Diffstat (limited to 'svx/source/sdr/properties')
-rw-r--r--svx/source/sdr/properties/attributeproperties.cxx2
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));