Fix for Mac os X, update MacQetDeploy.sh script, thank Yoann

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@3234 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
scorpio810
2014-07-27 11:56:31 +00:00
parent 742fd731bd
commit ad37a11611
2 changed files with 50 additions and 4 deletions

View File

@@ -1340,7 +1340,9 @@ QSet<Conductor *> Conductor::relatedPotentialConductors(QList <Terminal *> *t_li
}
QSet <Conductor *> other_conductors;
QList <Terminal *> this_terminal{terminal1, terminal2};
// QList <Terminal *> this_terminal{terminal1, terminal2};
QList <Terminal *> this_terminal;
this_terminal << terminal1 << terminal2;
// Return all conductor of terminal 1 and 2
foreach (Terminal *terminal, this_terminal) {