From 7459a5a34a5bcf7011c4164e3c92c7770da09514 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sun, 7 Dec 2008 01:03:48 -0500 Subject: Renamed CoinListObject to CoinListItem and added documentation for it --- sigscript/CoinListWrapper.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sigscript/CoinListWrapper.cpp') diff --git a/sigscript/CoinListWrapper.cpp b/sigscript/CoinListWrapper.cpp index a7186c45..bc525784 100644 --- a/sigscript/CoinListWrapper.cpp +++ b/sigscript/CoinListWrapper.cpp @@ -19,7 +19,7 @@ #include "CoinListWrapper.h" // Sigscript includes -#include "CoinListObjectWrapper.h" +#include "CoinListItemWrapper.h" #include "SigmodWrapper.h" Sigscript::CoinListWrapper* Sigscript::CoinListWrapper::create(const Sigmod::CoinList* coinList, SigmodWrapper* parent) @@ -46,12 +46,12 @@ Sigcore::Script Sigscript::CoinListWrapper::script() const return m_coinList->script(); } -Sigscript::CoinListObjectWrapper* Sigscript::CoinListWrapper::object(const int index) +Sigscript::CoinListItemWrapper* Sigscript::CoinListWrapper::item(const int index) { - return CoinListObjectWrapper::create(m_coinList->object(index), this); + return CoinListItemWrapper::create(m_coinList->item(index), this); } -int Sigscript::CoinListWrapper::objectCount() const +int Sigscript::CoinListWrapper::itemCount() const { - return m_coinList->objectCount(); + return m_coinList->itemCount(); } -- cgit