diff --git a/src-qt4/EasyPBI/modBuild.cpp b/src-qt4/EasyPBI/modBuild.cpp index ed1b32624..58a519355 100644 --- a/src-qt4/EasyPBI/modBuild.cpp +++ b/src-qt4/EasyPBI/modBuild.cpp @@ -669,7 +669,7 @@ bool ModBuild::loadExternalLinks(){ QString original, linkto, types; while(!in.atEnd()){ QString line = in.readLine(); - line.replace("\t"," ").simplified(); + line = line.replace("\t"," ").simplified(); if(!line.startsWith("#") && !line.isEmpty()){ original = line.section(" ",0,0,QString::SectionSkipEmpty); linkto = line.section(" ",1,1,QString::SectionSkipEmpty); @@ -1120,7 +1120,7 @@ int ModBuild::readMakeFile(QString makefile){ } for(int i=0; i