summaryrefslogtreecommitdiff
path: root/client.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'client.cxx')
-rw-r--r--client.cxx6
1 files changed, 2 insertions, 4 deletions
diff --git a/client.cxx b/client.cxx
index 168a0fc..4e832ce 100644
--- a/client.cxx
+++ b/client.cxx
@@ -14,13 +14,11 @@ namespace ICClient {
icclient_cleanup();
}
- void Client::allProducts(Catalog* qCatalog, size_t (*handler)(void*, size_t
- , size_t, void*))
+ void Client::allProducts(size_t (*handler)(void*, size_t, size_t, void*))
{
icclient_catalog* catalog = nullptr;
icclient_allproducts(&catalog, handler);
- if (catalog) qCatalog->update(catalog);
- icclient_product_freecatalog(catalog);
+ emit gotAllProducts(catalog);
}
void Client::logIn(QString const& username, QString const& password)