summaryrefslogtreecommitdiffstats
path: root/cpp/sca/test/store-object/catalog.hpp
diff options
context:
space:
mode:
authorjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2009-10-18 22:24:59 +0000
committerjsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68>2009-10-18 22:24:59 +0000
commit344e0e58ad63fba551f46fc4d9a2468e395f473a (patch)
tree5a9c1c443635b52bf7f5e78c3bd627da81ea8e60 /cpp/sca/test/store-object/catalog.hpp
parent2ee1a61be35c4ae0a017bf65f4ac6779c59b4388 (diff)
Minor code cleanup, refactored list functions and cleaned up function names, moved support for elements to a new header file.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@826543 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--cpp/sca/test/store-object/catalog.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/sca/test/store-object/catalog.hpp b/cpp/sca/test/store-object/catalog.hpp
index 6909911c07..fab013cf8e 100644
--- a/cpp/sca/test/store-object/catalog.hpp
+++ b/cpp/sca/test/store-object/catalog.hpp
@@ -54,7 +54,7 @@ public:
virtual const tuscany::list<Item> get() const {
const std::string currencySymbol = currencyConverter.getSymbol(currencyCode);
- return tuscany::makeList(
+ return tuscany::mklist(
Item("Apple", currencyCode, currencySymbol, convert(2.99)),
Item("Orange", currencyCode, currencySymbol, convert(3.55)),
Item("Pear", currencyCode, currencySymbol, convert(1.55)));