summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@pelagicore.com>2018-02-12 10:43:12 +0100
committerRobert Griebl <robert.griebl@pelagicore.com>2018-02-14 14:53:27 +0000
commit992307320725b34efcefa2fb0e477e91669cbc5c (patch)
tree1c5370192a669233f6c73dc899a6f9c5e0d058ab /tests
parent1c3f4c3d9924057fb185dce36162dcb16bb92355 (diff)
downloadqtivi-992307320725b34efcefa2fb0e477e91669cbc5c.tar.gz
Always generate class names with a uppercase first letter for modules
The module names within qface are most of the time lowercase, which lead to lowercase class names and also registering a lower case QML singelton, which is not allowed. Change-Id: Ie52bf5bf6c564dab9eabc6040859f70be6cd3cb7 Reviewed-by: Robert Griebl <robert.griebl@pelagicore.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/core/ivigenerator/projects/org-example-echo/backend_simulator/backend_simulator.cpp2
1 files changed, 1 insertions, 1 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 c0a381b..f0dca77 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
@@ -4,7 +4,7 @@
QT_BEGIN_NAMESPACE
-extern QVector<QIviFeatureInterface *> echoInterfaceBuilder(echoPlugin *plugin)
+extern QVector<QIviFeatureInterface *> echoInterfaceBuilder(EchoPlugin *plugin)
{
QVector<QIviFeatureInterface *> res;
res << new EchoBackend(plugin);