| 417 | } |
| 418 | |
| 419 | bool |
| 420 | AppManager::loadW(int argc, |
| 421 | wchar_t **argv, |
| 422 | const CLArgs& cl) |
| 423 | { |
| 424 | // Ensure application has correct locale before doing anything |
| 425 | // Warning: Qt resets it in the QCoreApplication constructor |
| 426 | // see http://doc.qt.io/qt-4.8/qcoreapplication.html#locale-settings |
| 427 | setApplicationLocale(); |
| 428 | _imp->handleCommandLineArgsW(argc, argv); |
| 429 | return loadFromArgs(cl); |
| 430 | } |
| 431 | |
| 432 | AppManager::~AppManager() |
| 433 | { |
no test coverage detected