| 740 | } |
| 741 | |
| 742 | QStringList ProjectFileDialog::getUndefines() const |
| 743 | { |
| 744 | const QString undefine = mUI->mEditUndefines->text().trimmed(); |
| 745 | QStringList undefines = undefine.split(QRegularExpression("\\s*;\\s*"), Qt::SkipEmptyParts); |
| 746 | undefines.removeDuplicates(); |
| 747 | return undefines; |
| 748 | } |
| 749 | |
| 750 | QStringList ProjectFileDialog::getCheckPaths() const |
| 751 | { |
no outgoing calls
no test coverage detected