| 136 | |
| 137 | namespace { |
| 138 | QString profileInUseFilter(const QString& profile, bool used) |
| 139 | { |
| 140 | if (used) { |
| 141 | return QObject::tr("%1 (in use)").arg(profile); |
| 142 | } else { |
| 143 | return profile; |
| 144 | } |
| 145 | } |
| 146 | } // namespace |
| 147 | |
| 148 | MainWindow::MainWindow(QWidget* parent) : QMainWindow(parent), ui(new Ui::MainWindow) |
no outgoing calls
no test coverage detected