diff -r 89a9235b47d3 -r ec95fc95e5f3 src/extprogs.cpp --- a/src/extprogs.cpp Tue Jul 30 07:16:48 2013 +0300 +++ b/src/extprogs.cpp Tue Jul 30 07:38:08 2013 +0300 @@ -130,10 +130,10 @@ } // ============================================================================= -void writeObjects (vector& objects, File& f) { +void writeObjects (List& objects, File& f) { for (LDObject* obj : objects) { if (obj->getType() == LDObject::Subfile) { - vector objs = static_cast (obj)->inlineContents (true, false); + List objs = static_cast (obj)->inlineContents (true, false); writeObjects (objs, f); @@ -144,7 +144,7 @@ } } -void writeObjects (vector& objects, str fname) { +void writeObjects (List& objects, str fname) { // Write the input file File f (fname, File::Write); @@ -164,7 +164,7 @@ // ============================================================================= void writeColorGroup (const short colnum, str fname) { - vector objects; + List objects; for (LDObject* obj : *LDOpenFile::current()) { if (obj->isColored() == false || obj->color() != colnum) @@ -232,7 +232,7 @@ } // ================================================================================================ -static void insertOutput (str fname, bool replace, vector colorsToReplace) { +static void insertOutput (str fname, bool replace, List colorsToReplace) { #ifndef RELEASE QFile::copy (fname, "./debug_lastOutput"); #endif // RELEASE @@ -245,7 +245,7 @@ return; } - vector objs = loadFileContents (&f, null); + List objs = loadFileContents (&f, null); // If we replace the objects, delete the selection now. if (replace)