src/extprogs.cpp

changeset 504
6a1fa662bfc1
parent 493
16766ac1bbd9
child 513
29eb671b34f6
--- a/src/extprogs.cpp	Wed Oct 16 16:40:42 2013 +0300
+++ b/src/extprogs.cpp	Wed Oct 16 16:47:40 2013 +0300
@@ -148,11 +148,11 @@
 
 // =============================================================================
 // -----------------------------------------------------------------------------
-void writeObjects (List<LDObject*>& objects, File& f)
+void writeObjects (QList<LDObject*>& objects, File& f)
 {	for (LDObject * obj : objects)
 	{	if (obj->getType() == LDObject::Subfile)
 		{	LDSubfile* ref = static_cast<LDSubfile*> (obj);
-			List<LDObject*> objs = ref->inlineContents (LDSubfile::DeepInline);
+			QList<LDObject*> objs = ref->inlineContents (LDSubfile::DeepInline);
 
 			writeObjects (objs, f);
 
@@ -166,7 +166,7 @@
 
 // =============================================================================
 // -----------------------------------------------------------------------------
-void writeObjects (List<LDObject*>& objects, str fname)
+void writeObjects (QList<LDObject*>& objects, str fname)
 {	// Write the input file
 	File f (fname, File::Write);
 
@@ -188,7 +188,7 @@
 // =============================================================================
 // -----------------------------------------------------------------------------
 void writeColorGroup (const short colnum, str fname)
-{	List<LDObject*> objects;
+{	QList<LDObject*> objects;
 
 for (LDObject * obj : LDFile::current()->objects())
 	{	if (obj->isColored() == false || obj->color() != colnum)
@@ -260,7 +260,7 @@
 
 // =============================================================================
 // -----------------------------------------------------------------------------
-static void insertOutput (str fname, bool replace, List<short> colorsToReplace)
+static void insertOutput (str fname, bool replace, QList<short> colorsToReplace)
 {
 #ifndef RELEASE
 	QFile::copy (fname, "./debug_lastOutput");
@@ -274,7 +274,7 @@
 		return;
 	}
 
-	List<LDObject*> objs = loadFileContents (&f, null);
+	QList<LDObject*> objs = loadFileContents (&f, null);
 
 	// If we replace the objects, delete the selection now.
 	if (replace)

mercurial