summaryrefslogtreecommitdiff
path: root/client.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'client.cxx')
-rw-r--r--client.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/client.cxx b/client.cxx
index d10c9b6..8140365 100644
--- a/client.cxx
+++ b/client.cxx
@@ -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*)