From 0e17f9dc8da28bcf516aa022813a09eee2c9be8a Mon Sep 17 00:00:00 2001 From: Don Gagne Date: Sat, 4 Jun 2016 15:05:04 -0700 Subject: [PATCH] Fix string replacement --- src/AutoPilotPlugins/APM/APMAirframeComponentController.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AutoPilotPlugins/APM/APMAirframeComponentController.cc b/src/AutoPilotPlugins/APM/APMAirframeComponentController.cc index 4cb5ce43d..0a7a8517d 100644 --- a/src/AutoPilotPlugins/APM/APMAirframeComponentController.cc +++ b/src/AutoPilotPlugins/APM/APMAirframeComponentController.cc @@ -244,6 +244,6 @@ void APMAirframeComponentController::_paramFileDownloadFinished(QString remoteFi void APMAirframeComponentController::_paramFileDownloadError(QString errorMsg) { - qgcApp()->showMessage(tr("Param file download failed: % 1").arg(errorMsg)); + qgcApp()->showMessage(tr("Param file download failed: %1").arg(errorMsg)); qgcApp()->restoreOverrideCursor(); } -- 2.22.0