| 52 | } |
| 53 | |
| 54 | inline QString argToQString(const char *arg, int size = -1) |
| 55 | { |
| 56 | #if !defined(PLATFORM_WINDOWS) |
| 57 | return QString::fromLocal8Bit(arg, size); |
| 58 | #else |
| 59 | // under Windows args are converted to UTF-8 |
| 60 | return QString::fromUtf8(arg, size); |
| 61 | #endif |
| 62 | } |
| 63 | |
| 64 | Application::Application() |
| 65 | : m_expectedResponse(0) |
no outgoing calls
no test coverage detected