| 75 | |
| 76 | |
| 77 | VcsItemEvent::Actions actionsFromString(QString const& changeDescription) |
| 78 | { |
| 79 | if(changeDescription == QLatin1String("add")) |
| 80 | return VcsItemEvent::Added; |
| 81 | if(changeDescription == QLatin1String("delete")) |
| 82 | return VcsItemEvent::Deleted; |
| 83 | return VcsItemEvent::Modified; |
| 84 | } |
| 85 | |
| 86 | QDir urlDir(const QUrl& url) |
| 87 | { |
no outgoing calls
no test coverage detected