Does the folder path contain any '!'? If yes, return true, otherwise false. (This is a problem for Java)
| 340 | // Does the folder path contain any '!'? If yes, return true, otherwise false. |
| 341 | // (This is a problem for Java) |
| 342 | bool checkProblemticPathJava(QDir folder) |
| 343 | { |
| 344 | QString pathfoldername = folder.absolutePath(); |
| 345 | return pathfoldername.contains("!", Qt::CaseInsensitive); |
| 346 | } |
| 347 | |
| 348 | // Win32 crap |
| 349 | #if defined Q_OS_WIN |
no test coverage detected