summaryrefslogtreecommitdiff
path: root/tests/auto/core/ivigenerator/projects/org-example-echo/backend_simulator/backend_simulator.cpp
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@qt.io>2019-10-25 09:19:55 +0200
committerDominik Holland <dominik.holland@qt.io>2019-10-30 12:08:43 +0100
commit7e4e94f7e8ae83ba6930e496d789bc768eadcf7c (patch)
tree454c650878918b82f3381e800cb304d52f1f4dcf /tests/auto/core/ivigenerator/projects/org-example-echo/backend_simulator/backend_simulator.cpp
parent94e15d1212bace7745fe3e4599cb34c4260fd277 (diff)
downloadqtivi-7e4e94f7e8ae83ba6930e496d789bc768eadcf7c.tar.gz
Fix all plugin class names to be unique within the module
The plugin class name is used to instantiate the plugin when used as static plugin and also defines the name for the cmake files to include those plugins. Using the same name sometimes caused build errors when generating the same cmake file. Change-Id: I28e6b83148d14265fb74690d2b912628446301eb Fixes: AUTOSUITE-1322 Reviewed-by: Robert Griebl <robert.griebl@qt.io>
Diffstat (limited to 'tests/auto/core/ivigenerator/projects/org-example-echo/backend_simulator/backend_simulator.cpp')
-rw-r--r--tests/auto/core/ivigenerator/projects/org-example-echo/backend_simulator/backend_simulator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/core/ivigenerator/projects/org-example-echo/backend_simulator/backend_simulator.cpp b/tests/auto/core/ivigenerator/projects/org-example-echo/backend_simulator/backend_simulator.cpp
index f0dca77..d2bb99f 100644
--- a/tests/auto/core/ivigenerator/projects/org-example-echo/backend_simulator/backend_simulator.cpp
+++ b/tests/auto/core/ivigenerator/projects/org-example-echo/backend_simulator/backend_simulator.cpp
@@ -1,10 +1,10 @@
#include "echobackend.h"
#include "echozonedbackend.h"
-#include "echoplugin.h"
+#include "echosimulatorplugin.h"
QT_BEGIN_NAMESPACE
-extern QVector<QIviFeatureInterface *> echoInterfaceBuilder(EchoPlugin *plugin)
+extern QVector<QIviFeatureInterface *> echoInterfaceBuilder(EchoSimulatorPlugin *plugin)
{
QVector<QIviFeatureInterface *> res;
res << new EchoBackend(plugin);