diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-29 08:51:06 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2019-09-29 08:51:06 +0800 |
commit | 0f63d288930a71e9705ce1b48a5e0036a9161b52 (patch) | |
tree | 074b8a25504dcdb2442ade4e58746b71a364ca31 /client.cxx | |
parent | 0640cec9e13edd30b85c50da9943f6fb56aec0df (diff) |
Swap allproducts arguments
Diffstat (limited to 'client.cxx')
-rw-r--r-- | client.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -17,7 +17,7 @@ namespace ICClient { void Client::allProducts(size_t (*handler)(void*, size_t, size_t, void*)) { icclient_catalog* catalog = nullptr; - icclient_allproducts(&catalog, handler); + icclient_allproducts(handler, &catalog); emit gotAllProducts(catalog); } |