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