File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
samples/client/petstore/qt5cpp/client Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 10
10
#include < QJsonObject>
11
11
12
12
13
- #include < QString>
14
- #include " SWGCategory.h"
15
- #include < QList>
16
13
#include " SWGTag.h"
14
+ #include < QList>
15
+ #include " SWGCategory.h"
16
+ #include < QString>
17
17
18
18
#include " SWGObject.h"
19
19
Original file line number Diff line number Diff line change @@ -431,7 +431,7 @@ SWGPetApi::updatePetWithFormCallback(HttpRequestWorker * worker) {
431
431
emit updatePetWithFormSignal ();
432
432
}
433
433
void
434
- SWGPetApi::deletePet (QString* apiKey, qint64 petId ) {
434
+ SWGPetApi::deletePet (qint64 petId, QString* apiKey ) {
435
435
QString fullPath;
436
436
fullPath.append (this ->host ).append (this ->basePath ).append (" /pet/{petId}" );
437
437
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ class SWGPetApi: public QObject {
28
28
void findPetsByTags (QList<QString*>* tags);
29
29
void getPetById (qint64 petId);
30
30
void updatePetWithForm (QString* petId, QString* name, QString* status);
31
- void deletePet (QString* apiKey, qint64 petId );
31
+ void deletePet (qint64 petId, QString* apiKey );
32
32
void uploadFile (qint64 petId, QString* additionalMetadata, SWGHttpRequestInputFileElement* file);
33
33
34
34
private:
You can’t perform that action at this time.
0 commit comments