From 35a99ff13a6b656362b61dc37ddba40dd9be1927 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=A6=8C=EA=A6=AB=EA=A6=B6=EA=A6=8F=EA=A7=80=EA=A6=A6?= =?UTF-8?q?=EA=A6=BF=EA=A6=A7=EA=A6=AE=EA=A6=91=EA=A6=A9=EA=A6=AD=EA=A7=80?= Date: Thu, 17 Jun 2021 21:47:32 +0800 Subject: Conform to updated libicclient login interfaces --- client.cxx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'client.cxx') diff --git a/client.cxx b/client.cxx index a37ba01..5b1858e 100644 --- a/client.cxx +++ b/client.cxx @@ -32,9 +32,7 @@ namespace QICClient { void Client::results(QString const& prodGroup) { - icclient_results(prodGroup.toLatin1().constData(), handleResults, [](icclient_catalog* catalog) { - icclient_free_catalog(catalog); - }); + icclient_results(prodGroup.toLatin1().constData(), handleResults, nullptr); } /* void Client::results(QString const& prodGroup, void (*handler)(icclient_fetch_t*)) @@ -44,9 +42,7 @@ namespace QICClient { */ void Client::allProducts() { - icclient_allproducts(handleResults, [](icclient_catalog* catalog) { - icclient_free_catalog(catalog); - }); + icclient_allproducts(handleResults, nullptr); } void Client::allproducts(void (*handler)(icclient_fetch_t* fetch)) -- cgit v1.2.3