summaryrefslogtreecommitdiff
path: root/client.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'client.cxx')
-rw-r--r--client.cxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/client.cxx b/client.cxx
index 74a64ba..1dad6fe 100644
--- a/client.cxx
+++ b/client.cxx
@@ -21,10 +21,11 @@ namespace ICClient {
emit gotAllProducts(catalog);
}
- void Client::order(QString const& sku, icclient_catalog* catalog)
+ void Client::order(icclient_ord_order** orderPtr, QString const& sku
+ , icclient_catalog* catalog)
{
- icclient_ord_order* order = nullptr;
- icclient_order(&order, sku.toLatin1().constData(), catalog);
+ icclient_order(orderPtr, sku.toLatin1().constData(), catalog);
+ icclient_ord_order* order = *orderPtr;
emit ordered(order);
}