diff options
Diffstat (limited to 'catalog.cxx')
-rw-r--r-- | catalog.cxx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/catalog.cxx b/catalog.cxx index bb1f4dd..ece144c 100644 --- a/catalog.cxx +++ b/catalog.cxx @@ -46,6 +46,8 @@ namespace QInterchange { return product.author; case Product::CrossSellRole: return product.crossSell; + case Product::ImageLargeRole: + return product.imageLarge; default: return QVariant(); } @@ -65,7 +67,8 @@ namespace QInterchange { { Product::CategoryRole, "category" }, { Product::WeightRole, "weight" }, { Product::AuthorRole, "author" }, - { Product::CrossSellRole, "crossSell" } + { Product::CrossSellRole, "crossSell" }, + { Product::ImageLargeRole, "imageLarge" } }; } |