Update of /cvsroot/mockpp/mockpp/mockpp
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27038/mockpp
Modified Files:
ReturnObjectList.h
Log Message:
typo
Index: ReturnObjectList.h
===================================================================
RCS file: /cvsroot/mockpp/mockpp/mockpp/ReturnObjectList.h,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- ReturnObjectList.h 23 Jul 2005 17:37:32 -0000 1.28
+++ ReturnObjectList.h 31 Aug 2005 14:47:07 -0000 1.29
@@ -124,7 +124,7 @@
* Using the default object does not affect the behaviour of verify().
* @param defaultObj default object to return
*/
- void setDefaultReturnVaue(const T &defaultObj)
+ void setDefaultReturnValue(const T &defaultObj)
{
haveDefault = true;
defaultObject = defaultObj;
@@ -163,7 +163,7 @@
* The string only contains the remaining objects.
* @return string representation
*/
- String toString() const // virtual
+ String toString() const // virtual
{
if (myObjects.size() == 0 && !haveDefault)
return MOCKPP_PCHAR("[]");
|