Skip to content

Commit e3151c5

Browse files
committed
rebuilt
1 parent d2dc333 commit e3151c5

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

samples/client/petstore/qt5cpp/client/SWGPet.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
#include <QJsonObject>
1111

1212

13-
#include <QString>
14-
#include "SWGCategory.h"
15-
#include <QList>
1613
#include "SWGTag.h"
14+
#include <QList>
15+
#include "SWGCategory.h"
16+
#include <QString>
1717

1818
#include "SWGObject.h"
1919

samples/client/petstore/qt5cpp/client/SWGPetApi.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ SWGPetApi::updatePetWithFormCallback(HttpRequestWorker * worker) {
431431
emit updatePetWithFormSignal();
432432
}
433433
void
434-
SWGPetApi::deletePet(QString* apiKey, qint64 petId) {
434+
SWGPetApi::deletePet(qint64 petId, QString* apiKey) {
435435
QString fullPath;
436436
fullPath.append(this->host).append(this->basePath).append("/pet/{petId}");
437437

samples/client/petstore/qt5cpp/client/SWGPetApi.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class SWGPetApi: public QObject {
2828
void findPetsByTags(QList<QString*>* tags);
2929
void getPetById(qint64 petId);
3030
void updatePetWithForm(QString* petId, QString* name, QString* status);
31-
void deletePet(QString* apiKey, qint64 petId);
31+
void deletePet(qint64 petId, QString* apiKey);
3232
void uploadFile(qint64 petId, QString* additionalMetadata, SWGHttpRequestInputFileElement* file);
3333

3434
private:

0 commit comments

Comments
 (0)