diff options
Diffstat (limited to 'catalog.cxx')
-rw-r--r-- | catalog.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/catalog.cxx b/catalog.cxx index 549c7b3..6bb9499 100644 --- a/catalog.cxx +++ b/catalog.cxx @@ -35,6 +35,8 @@ namespace ICClient { return product.weight; case Product::AuthorRole: return product.author; + case Product::CrossSellRole: + return product.crossSell; default: return QVariant(); } @@ -51,6 +53,7 @@ namespace ICClient { , {Product::ProdGroupRole, "prodGroup"} , {Product::WeightRole, "weight"} , {Product::AuthorRole, "author"} + , {Product::CrossSellRole, "crossSell"} }; } |