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:
wrj97
2024-01-10 13:55:31 +08:00
committed by GitHub
parent e3c0a3e8b0
commit cfe7dcc0cf
37 changed files with 271 additions and 271 deletions

View File

@@ -9,7 +9,7 @@ class PetApiTests : public QObject {
PFXPet createRandomPet();
private slots:
private Q_SLOTS:
void findPetsByStatusTest();
void createAndGetPetTest();
void updatePetTest();

View File

@@ -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();

View File

@@ -9,7 +9,7 @@ class UserApiTests : public QObject {
PFXUser createRandomUser();
private slots:
private Q_SLOTS:
void createUserTest();
void createUsersWithArrayInputTest();
void createUsersWithListInputTest();