| 254 | } |
| 255 | |
| 256 | QString getUsvfsVersionString() |
| 257 | { |
| 258 | const QString dll = getUsvfsDLLVersion(); |
| 259 | const QString header = USVFS_VERSION_STRING; |
| 260 | |
| 261 | QString usvfsVersion; |
| 262 | |
| 263 | if (dll == header) { |
| 264 | return dll; |
| 265 | } else { |
| 266 | return "dll is " + dll + ", compiled against " + header; |
| 267 | } |
| 268 | } |
| 269 | |
| 270 | void SetThisThreadName(const QString& s) |
| 271 | { |
no test coverage detected