diff options
author | Noel Grandin <noel@peralex.com> | 2012-08-15 13:39:56 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-08-16 18:44:04 +0200 |
commit | cdd4c1558390efd8a3740ad8fc248248972d9250 (patch) | |
tree | 21128eeda18832f439e3ce6651f933cf100a6ed8 /svx/source/svdraw/svdundo.cxx | |
parent | e5da8190e0edc476eecfe4f49aae4b50a480e414 (diff) |
Convert aBuf in SdrUndoGroup class from Container to std::vector
Change-Id: I0635ed333033ce37eb86b360fd0ee0d77b8dc47a
Diffstat (limited to 'svx/source/svdraw/svdundo.cxx')
-rw-r--r-- | svx/source/svdraw/svdundo.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/svx/source/svdraw/svdundo.cxx b/svx/source/svdraw/svdundo.cxx index b3fca80dfb3b..0a793f2436b4 100644 --- a/svx/source/svdraw/svdundo.cxx +++ b/svx/source/svdraw/svdundo.cxx @@ -103,7 +103,7 @@ XubString SdrUndoAction::GetSdrRepeatComment(SdrView& /*rView*/) const SdrUndoGroup::SdrUndoGroup(SdrModel& rNewMod) : SdrUndoAction(rNewMod), - aBuf(1024,32,32), + aBuf(), eFunction(SDRREPFUNC_OBJ_NONE) {} @@ -118,12 +118,12 @@ void SdrUndoGroup::Clear() SdrUndoAction* pAct=GetAction(nu); delete pAct; } - aBuf.Clear(); + aBuf.clear(); } void SdrUndoGroup::AddAction(SdrUndoAction* pAct) { - aBuf.Insert(pAct,CONTAINER_APPEND); + aBuf.push_back(pAct); } void SdrUndoGroup::Undo() |