diff options
Diffstat (limited to 'client.cxx')
-rw-r--r-- | client.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -47,8 +47,8 @@ namespace ICClient { void Client::order(QString const& sku, Catalog const& catalog, Basket& order) { auto c_order = order.c_order(); - icclient_order(sku.toLatin1().constData(), catalog.c_catalog(), - &c_order); + icclient_order(sku.toLatin1().constData(), catalog.c_catalog(), &c_order); + order.update(c_order); } void Client::logIn(size_t (*handler)(void*, size_t, size_t, void*) |