| 35 | } |
| 36 | |
| 37 | QString GetDirectoryName(QString path) |
| 38 | { |
| 39 | int lstdex = path.lastIndexOf('/'); |
| 40 | if (lstdex != -1) |
| 41 | { |
| 42 | return path.left(lstdex); |
| 43 | } |
| 44 | return path; |
| 45 | } |
| 46 | |
| 47 | std::string ToUnicodePath(QString path) |
| 48 | { |
no outgoing calls
no test coverage detected