summaryrefslogtreecommitdiff
path: root/ord.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ord.cxx')
-rw-r--r--ord.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/ord.cxx b/ord.cxx
index 1de7447..1c103e8 100644
--- a/ord.cxx
+++ b/ord.cxx
@@ -1,8 +1,8 @@
#include <algorithm>
#include <memory>
-#include "qicclient/ord.hxx"
+#include "interchange/ord.hxx"
-namespace QICClient {
+namespace Interchange {
int Ord::rowCount(QModelIndex const& parent) const
{
@@ -60,7 +60,7 @@ namespace QICClient {
emit rowCountChanged();
}
- void Ord::setData(struct icclient_ord_order* order)
+ void Ord::setData(struct interchange_ord_order* order)
{
if (!order) return;
this->m_data = order;
@@ -73,6 +73,6 @@ namespace QICClient {
void Ord::checkout(Member& member)
{
- icclient_ord_checkout(m_data, member.data());
+ interchange_ord_checkout(m_data, member.data());
}
}