summaryrefslogtreecommitdiff
path: root/tests/auto/core/ivigenerator/projects/org-example-echo-qtro/server_qtro_test/echoservice.h
diff options
context:
space:
mode:
authorDominik Holland <dominik.holland@qt.io>2021-05-27 17:43:38 +0200
committerDominik Holland <dominik.holland@qt.io>2021-05-28 14:13:31 +0200
commitb2107c897eb0a945c2a3b756322f261c549c13aa (patch)
tree72394e20f7996995caa05d27a156f65e9096a918 /tests/auto/core/ivigenerator/projects/org-example-echo-qtro/server_qtro_test/echoservice.h
parente63abd2a122a21623e0c623b94f4719149c1eca7 (diff)
downloadqtivi-b2107c897eb0a945c2a3b756322f261c549c13aa.tar.gz
ivigenerator: Remove the "Module" postfix in the autogenerated classes
The module class which is autogenerated by the ivigenerator always got a postfix which was used to prevent compilation errors when module and interface had the same name. As we don't use any extra postfix for structs or interfaces either the "Module" postfix is now dropped as well and the module should rather be renamed already in the IDL file instead. Change-Id: I91bf95e824436e65e374aaf397ecd5c548444589 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Robert Griebl <robert.griebl@qt.io> Reviewed-by: Assam Boudjelthia <assam.boudjelthia@qt.io>
Diffstat (limited to 'tests/auto/core/ivigenerator/projects/org-example-echo-qtro/server_qtro_test/echoservice.h')
-rw-r--r--tests/auto/core/ivigenerator/projects/org-example-echo-qtro/server_qtro_test/echoservice.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/core/ivigenerator/projects/org-example-echo-qtro/server_qtro_test/echoservice.h b/tests/auto/core/ivigenerator/projects/org-example-echo-qtro/server_qtro_test/echoservice.h
index 8e53388..1bfcc06 100644
--- a/tests/auto/core/ivigenerator/projects/org-example-echo-qtro/server_qtro_test/echoservice.h
+++ b/tests/auto/core/ivigenerator/projects/org-example-echo-qtro/server_qtro_test/echoservice.h
@@ -51,8 +51,8 @@ public Q_SLOTS:
QVariant voidSlot() override;
QVariant voidSlot2(int param) override;
QVariant timer(int interval) override;
- QVariant flagMethod(EchoModule::AirflowDirections direction) override;
- QVariant enumMethod(EchoModule::TestEnum testEnum) override;
+ QVariant flagMethod(Echomodule::AirflowDirections direction) override;
+ QVariant enumMethod(Echomodule::TestEnum testEnum) override;
Q_SIGNALS:
void echoSlotCalled(const QString &msg);
@@ -60,8 +60,8 @@ Q_SIGNALS:
void getComboSlotCalled();
void voidSlotCalled();
void voidSlot2Called(int param);
- void flagMethodCalled(EchoModule::AirflowDirections direction);
- void enumMethodCalled(EchoModule::TestEnum testEnum);
+ void flagMethodCalled(Echomodule::AirflowDirections direction);
+ void enumMethodCalled(Echomodule::TestEnum testEnum);
};
#endif // ECHOSERVICE_H