forked from loafle/openapi-generator-original
feat: using Qt with 3rd Party Signals and Slots (#17067)
Replace signals,slots and emit with Q_SIGNALS,Q_SLOTS and Q_EMIT Because these names will be used by a 3rd party library
This commit is contained in:
@@ -9,7 +9,7 @@ class PetApiTests : public QObject {
|
||||
|
||||
PFXPet createRandomPet();
|
||||
|
||||
private slots:
|
||||
private Q_SLOTS:
|
||||
void findPetsByStatusTest();
|
||||
void createAndGetPetTest();
|
||||
void updatePetTest();
|
||||
|
||||
@@ -7,7 +7,7 @@ using namespace test_namespace;
|
||||
class StoreApiTests : public QObject {
|
||||
Q_OBJECT
|
||||
|
||||
private slots:
|
||||
private Q_SLOTS:
|
||||
void placeOrderTest();
|
||||
void getOrderByIdTest();
|
||||
void getInventoryTest();
|
||||
|
||||
@@ -9,7 +9,7 @@ class UserApiTests : public QObject {
|
||||
|
||||
PFXUser createRandomUser();
|
||||
|
||||
private slots:
|
||||
private Q_SLOTS:
|
||||
void createUserTest();
|
||||
void createUsersWithArrayInputTest();
|
||||
void createUsersWithListInputTest();
|
||||
|
||||
Reference in New Issue
Block a user