src/history.cpp

changeset 252
3f9067022d74
parent 251
c4b96bc41298
child 265
955c0aabfebf
--- a/src/history.cpp	Fri May 24 15:23:56 2013 +0300
+++ b/src/history.cpp	Fri May 24 15:38:23 2013 +0300
@@ -41,7 +41,7 @@
 			s_entries.erase (i);
 		}
 		
-		s_entries.push_back (entry);
+		s_entries << entry;
 		s_pos++;
 		
 		updateActions ();
@@ -175,9 +175,9 @@
 }
 
 void EditHistory::addEntry (LDObject* const oldObj, LDObject* const newObj, const ulong idx) {
-	ulaIndices.push_back (idx);
-	paOldObjs.push_back (oldObj->clone ());
-	paNewObjs.push_back (newObj->clone ());
+	ulaIndices << idx;
+	paOldObjs << oldObj->clone ();
+	paNewObjs << newObj->clone ();
 }
 
 EditHistory::~EditHistory () {
@@ -195,7 +195,7 @@
 	vector<LDObject*> objs;
 	
 	for (ulong idx : ulaIndices)
-		objs.push_back (g_curfile->object (idx + ofs));
+		objs << g_curfile->object (idx + ofs);
 	
 	return objs;
 }

mercurial