Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public:
int getHttpResponseCode() const;

Q_SIGNALS:
void on_execution_finished({{prefix}}HttpRequestWorker *worker);
void on_execution_finished({{#cppNamespaceDeclarations}}{{this}}::{{/cppNamespaceDeclarations}}{{prefix}}HttpRequestWorker *worker);
void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);

private:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class PFXHttpRequestWorker : public QObject {
int getHttpResponseCode() const;

Q_SIGNALS:
void on_execution_finished(PFXHttpRequestWorker *worker);
void on_execution_finished(test_namespace::PFXHttpRequestWorker *worker);
void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);

private:
Expand Down
2 changes: 1 addition & 1 deletion samples/client/petstore/cpp-qt/client/PFXHttpRequest.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ class PFXHttpRequestWorker : public QObject {
int getHttpResponseCode() const;

Q_SIGNALS:
void on_execution_finished(PFXHttpRequestWorker *worker);
void on_execution_finished(test_namespace::PFXHttpRequestWorker *worker);
void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);

private:
Expand Down
Loading