summaryrefslogtreecommitdiff
path: root/client.cxx
diff options
context:
space:
mode:
authorꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2020-06-29 20:49:05 +0800
committerꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id>2020-06-29 20:49:05 +0800
commit8285dbcaa075ed2eb316b06f33ddf27f3a7f1e4b (patch)
tree4caaf3fb532dbc67480d88f406b9edc34d8b884d /client.cxx
parente18cd74a1cd266c0828f40594be92e53c2d18c66 (diff)
libicclient reorder flypage parameters
Diffstat (limited to 'client.cxx')
-rw-r--r--client.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/client.cxx b/client.cxx
index bd6b26a..90b8890 100644
--- a/client.cxx
+++ b/client.cxx
@@ -40,7 +40,7 @@ namespace ICClient {
QString const& sku)
{
icclient_product* product = nullptr;
- icclient_flypage(handler, &product, sku.toLatin1().constData());
+ icclient_flypage(sku.toLatin1().constData(), handler, &product);
if (product) emit gotFlyPage(shared_ptr<Product>{new Product{product}});
}