From e50e298f216488e3357b6bae5f223a2a0a6016d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Garapich?= Date: Thu, 26 Nov 2015 02:05:27 +0100 Subject: [PATCH] refs #511 X-plane plugin has now correct name * X-Plane plugin is now called just "X-Plane" instead of "X-Plane generic plugin" * "Listening for ..." uses full simulator name instead of its abbreviation --- src/blackgui/components/settingssimulatorcomponent.cpp | 4 ++-- src/plugins/simulator/xplane/simulatorxplane.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/blackgui/components/settingssimulatorcomponent.cpp b/src/blackgui/components/settingssimulatorcomponent.cpp index c53a2c18e..e4c80c80f 100644 --- a/src/blackgui/components/settingssimulatorcomponent.cpp +++ b/src/blackgui/components/settingssimulatorcomponent.cpp @@ -137,12 +137,12 @@ namespace BlackGui if (enabled) { getIContextSimulator()->startSimulatorPlugin(*selected); - CLogMessage(this).info("Started listening for %1") << selected->getSimulator(); + CLogMessage(this).info("Started listening for %1") << selected->getName(); } else { getIContextSimulator()->stopSimulatorPlugin(*selected); - CLogMessage(this).info("Stopped listening for %1") << selected->getSimulator(); + CLogMessage(this).info("Stopped listening for %1") << selected->getName(); } // changing of GUI state will be done via received signal diff --git a/src/plugins/simulator/xplane/simulatorxplane.json b/src/plugins/simulator/xplane/simulatorxplane.json index cc04dff8e..4ee1ebf5d 100644 --- a/src/plugins/simulator/xplane/simulatorxplane.json +++ b/src/plugins/simulator/xplane/simulatorxplane.json @@ -1,6 +1,6 @@ { "identifier" : "org.swift-project.plugins.simulator.xplane", - "name" : "X-Plane generic plugin", + "name" : "X-Plane", "simulator" : "xplane", "description" : "Support for the X-Plane simulator via the xbus plugin.", "config" : "org.swift-project.plugins.simulator.xplane.config"