summaryrefslogtreecommitdiff
path: root/ord.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'ord.cxx')
-rw-r--r--ord.cxx8
1 files changed, 8 insertions, 0 deletions
diff --git a/ord.cxx b/ord.cxx
index 8d76dce..35b496c 100644
--- a/ord.cxx
+++ b/ord.cxx
@@ -71,6 +71,14 @@ namespace QInterchange {
emit totalCostChanged();
}
+ void Ord::setProfile(QString const& profile)
+ {
+ auto orderProfile = profile.toLatin1().data();
+ if (m_data->profile) free(m_data->profile);
+ m_data->profile = (char*)malloc(strlen(orderProfile) + 1);
+ strcpy(m_data->profile, orderProfile);
+ }
+
void Ord::checkout(Member& member)
{
interchange_ord_checkout(m_data, member.data());