| 59 | } |
| 60 | |
| 61 | void CvsIgnoreList::addEntriesFromString(const QString& dir, const QString& str) |
| 62 | { |
| 63 | const QStringList patternList = str.split(' '); |
| 64 | for(const QString& pattern: patternList) |
| 65 | { |
| 66 | addEntry(dir, pattern); |
| 67 | } |
| 68 | } |
| 69 | |
| 70 | /* |
| 71 | We don't have a real file in AUTOTEST mode |