diff options
Diffstat (limited to 'client.cxx')
-rw-r--r-- | client.cxx | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,3 +1,4 @@ +#include <cstddef> #include <icclient/client.h> #include "qicclient/client.hxx" @@ -13,11 +14,11 @@ namespace ICClient { icclient_cleanup(); } - void Client::productAll(icclient_catalog** catalogptr + void Client::allProducts(icclient_catalog** catalogptr , size_t (*callback)(void*, size_t, size_t, void*)) { - icclient_product_all(catalogptr, callback); - emit gotProductAll(*catalogptr); + icclient_allproducts(catalogptr, callback); + emit gotAllProducts(*catalogptr); } void Client::logIn(QString const& username, QString const& password) |