From c11a88f108e7ab9edfcf4aa689cb08f1355f1289 Mon Sep 17 00:00:00 2001 From: 3djc Date: Mon, 4 Jun 2018 09:37:16 +0200 Subject: [PATCH] Fix title display issue in french under Liunux --- companion/src/mdichild.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/companion/src/mdichild.cpp b/companion/src/mdichild.cpp index 4acbce4e5..12bfe1489 100644 --- a/companion/src/mdichild.cpp +++ b/companion/src/mdichild.cpp @@ -1262,7 +1262,7 @@ void MdiChild::openModelEditWindow(int row) gStopwatch.report("ModelEdit creation"); ModelEdit * t = new ModelEdit(this, radioData, (row), firmware); gStopwatch.report("ModelEdit created"); - t->setWindowTitle(tr("Editing model %1: ").arg(row+1) + model.name); + t->setWindowTitle(tr("Editing model %1: ").arg(row+1) + QString(model.name)); connect(t, &ModelEdit::modified, this, &MdiChild::setModified); gStopwatch.report("STARTING MODEL EDIT"); t->show(); -- 2.11.4.GIT