summaryrefslogtreecommitdiff
path: root/client.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'client.cxx')
-rw-r--r--client.cxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/client.cxx b/client.cxx
index 9b0411a..5a69d52 100644
--- a/client.cxx
+++ b/client.cxx
@@ -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)