diff options
author | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-06-26 18:41:43 +0800 |
---|---|---|
committer | ꦌ ꦫꦶ ꦏ꧀ꦦꦿ ꦧ ꦮ ꦑ ꦩ ꦭ꧀ <erik@darapsa.co.id> | 2020-06-26 18:41:43 +0800 |
commit | 0d2a18b15d45d612f3b9ba92d7b7af23be7d444f (patch) | |
tree | 18da413d7d9eac0c195cc9884781b8666b9c34dc | |
parent | b3bd2a24af0047e4e21cde4400cf12b68840b726 (diff) |
Unnecessary namespace statement
-rw-r--r-- | client.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -39,7 +39,7 @@ namespace ICClient { { icclient_product* product = nullptr; icclient_flypage(handler, &product, sku.toLatin1().constData()); - if (product) emit gotFlyPage(std::shared_ptr<Product>{new ICClient::Product{product}}); + if (product) emit gotFlyPage(std::shared_ptr<Product>{new Product{product}}); } void Client::order(icclient_ord_order** orderPtr, QString const& sku |