diff options
author | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-17 22:26:34 +0800 |
---|---|---|
committer | ꦌꦫꦶꦏ꧀ꦦꦿꦧꦮꦑꦩꦭ꧀ <erik@darapsa.co.id> | 2021-06-17 22:26:34 +0800 |
commit | 233038776d63980494929f745d90af86a55e12ab (patch) | |
tree | 7db1f3f40e0eeb0f4a77b928037382201c437392 /client.cxx | |
parent | 254a14644fff30532bbef08d8a5939605407cac1 (diff) |
Rename fetch to response
Diffstat (limited to 'client.cxx')
-rw-r--r-- | client.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -6,9 +6,9 @@ static QICClient::Client* client; -static void handleResults(icclient_response* fetch) +static void handleResults(icclient_response* response) { - client->emitResults(fetch); + client->emitResults(response); } static void callback(icclient_catalog* catalog) @@ -45,14 +45,14 @@ namespace QICClient { icclient_allproducts(handleResults, nullptr); } - void Client::allproducts(void (*handler)(icclient_response* fetch)) + void Client::allproducts(void (*handler)(icclient_response* response)) { icclient_allproducts(handler, callback); } - void Client::emitResults(icclient_response* fetch) + void Client::emitResults(icclient_response* response) { - emit gotResults(fetch); + emit gotResults(response); } void Client::emitCatalog(icclient_catalog* catalog) |