| 109 | static const QString compile_commands_json("compile_commands.json"); |
| 110 | |
| 111 | static QString fromNativePath(const QString& p) { |
| 112 | #ifdef Q_OS_WIN |
| 113 | QString ret(p); |
| 114 | ret.replace('\\', '/'); |
| 115 | return ret; |
| 116 | #else |
| 117 | return p; |
| 118 | #endif |
| 119 | } |
| 120 | |
| 121 | MainWindow::MainWindow(TranslationHandler* th, QSettings* settings) : |
| 122 | mSettings(settings), |
no test coverage detected