diff options
| author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-17 22:13:13 +0800 |
|---|---|---|
| committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-17 22:13:13 +0800 |
| commit | 254a14644fff30532bbef08d8a5939605407cac1 (patch) | |
| tree | 27490f486bdd4c0dcb7eaaeed0412490792a4e3b /client.cxx | |
| parent | 35a99ff13a6b656362b61dc37ddba40dd9be1927 (diff) | |
Rename fetch to response
Diffstat (limited to 'client.cxx')
| -rw-r--r-- | client.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -6,7 +6,7 @@ static QICClient::Client* client; -static void handleResults(icclient_fetch_t* fetch) +static void handleResults(icclient_response* fetch) { client->emitResults(fetch); } @@ -35,7 +35,7 @@ namespace QICClient { icclient_results(prodGroup.toLatin1().constData(), handleResults, nullptr); } /* - void Client::results(QString const& prodGroup, void (*handler)(icclient_fetch_t*)) + void Client::results(QString const& prodGroup, void (*handler)(icclient_response*)) { icclient_results(prodGroup.toLatin1().constData(), handler, callback); } @@ -45,12 +45,12 @@ namespace QICClient { icclient_allproducts(handleResults, nullptr); } - void Client::allproducts(void (*handler)(icclient_fetch_t* fetch)) + void Client::allproducts(void (*handler)(icclient_response* fetch)) { icclient_allproducts(handler, callback); } - void Client::emitResults(icclient_fetch_t* fetch) + void Client::emitResults(icclient_response* fetch) { emit gotResults(fetch); } @@ -60,7 +60,7 @@ namespace QICClient { emit gotCatalog(new Catalog{catalog}); } - void Client::flyPage(QString const& sku,void (*handler)(icclient_fetch_t*)) + void Client::flyPage(QString const& sku,void (*handler)(icclient_response*)) { icclient_product* product = nullptr; icclient_flypage(sku.toLatin1().constData(), handler, &product); |