src/file.cpp

changeset 251
c4b96bc41298
parent 250
6e80f038e8df
child 252
3f9067022d74
--- a/src/file.cpp	Fri May 24 04:34:20 2013 +0300
+++ b/src/file.cpp	Fri May 24 15:23:56 2013 +0300
@@ -237,7 +237,7 @@
 // =============================================================================
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 // =============================================================================
-std::vector<LDObject*> loadFileContents (FILE* fp, ulong* numWarnings, bool* ok) {
+vector<LDObject*> loadFileContents (FILE* fp, ulong* numWarnings, bool* ok) {
 	vector<str> lines;
 	vector<LDObject*> objs;
 	
@@ -323,7 +323,7 @@
 	
 	ulong numWarnings;
 	bool ok;
-	std::vector<LDObject*> objs = loadFileContents (fp, &numWarnings, &ok);
+	vector<LDObject*> objs = loadFileContents (fp, &numWarnings, &ok);
 	
 	if (!ok) {
 		load = oldLoad;
@@ -831,7 +831,7 @@
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 // =============================================================================
 void LDOpenFile::insertObj (const ulong pos, LDObject* obj) {
-	m_objs.insert (m_objs.begin () + pos, obj);
+	m_objs.insert (pos, obj);
 	
 	if (this == g_curfile)
 		g_BBox.calcObject (obj);
@@ -842,16 +842,16 @@
 // =============================================================================
 void LDOpenFile::forgetObject (LDObject* obj) {
 	// Find the index for the given object
-	ulong ulIndex;
-	for (ulIndex = 0; ulIndex < (ulong)m_objs.size(); ++ulIndex)
-		if (m_objs[ulIndex] == obj)
+	ulong idx;
+	for (idx = 0; idx < (ulong)m_objs.size(); ++idx)
+		if (m_objs[idx] == obj)
 			break; // found it
 	
-	if (ulIndex >= m_objs.size ())
+	if (idx >= m_objs.size ())
 		return; // was not found
 	
 	// Erase it from memory
-	m_objs.erase (m_objs.begin() + ulIndex);
+	m_objs.erase (idx);
 	
 	// Update the bounding box
 	if (this == g_curfile)
@@ -861,7 +861,7 @@
 // =============================================================================
 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 // =============================================================================
-std::vector<partListEntry> g_PartList;
+vector<partListEntry> g_PartList;
 
 void initPartList () {
 	logf ("%s: initializing parts.lst\n", __func__);

mercurial