| 204 | } |
| 205 | |
| 206 | bool Utils::isAppAlreadyRunning() |
| 207 | { |
| 208 | #ifdef Q_OS_WIN |
| 209 | return WinUtils::isAppAlreadyRunning(); |
| 210 | #elif defined Q_OS_MACOS |
| 211 | return MacUtils::isAppAlreadyRunning(); |
| 212 | #elif defined Q_OS_LINUX |
| 213 | return LinuxUtils::isAppAlreadyRunning(); |
| 214 | #endif |
| 215 | } |
| 216 | |
| 217 | unsigned long Utils::getCurrentPid() |
| 218 | { |
nothing calls this directly
no test coverage detected