[Mockpp-commits] mockpp/mockpp/util AssertMo.cpp,1.18,1.19
Brought to you by:
ewald-arnold
From: Ewald A. <ewa...@us...> - 2005-05-07 12:45:48
|
Update of /cvsroot/mockpp/mockpp/mockpp/util In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7870/mockpp/util Modified Files: AssertMo.cpp Log Message: fix macro namespace Index: AssertMo.cpp =================================================================== RCS file: /cvsroot/mockpp/mockpp/mockpp/util/AssertMo.cpp,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- AssertMo.cpp 2 Apr 2005 13:46:34 -0000 1.18 +++ AssertMo.cpp 7 May 2005 12:45:09 -0000 1.19 @@ -115,14 +115,14 @@ threwException = true; } - assertTrue(srcline, srcfile, i18n(MOCKPP_PCHAR("Should not have verified.")), threwException); + assertTrue(srcline, srcfile, mockpp_i18n(MOCKPP_PCHAR("Should not have verified.")), threwException); } void MOCKPP_EXPORT notImplemented(unsigned srcline, const char* srcfile, const String &mockName) { - mockpp::String fmt = i18n(MOCKPP_PCHAR("Not Implemented in %1.")); + mockpp::String fmt = mockpp_i18n(MOCKPP_PCHAR("Not Implemented in %1.")); fmt << mockName; throw NotImplementedException(srcline, srcfile, fmt); } |