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