dropped "c" prefix from class names

This commit is contained in:
Nick Bolton
2014-11-11 13:51:47 +00:00
parent f6c05e7635
commit e8e156f0e2
382 changed files with 7430 additions and 7423 deletions

View File

@@ -32,7 +32,7 @@ XBase::XBase() :
// do nothing
}
XBase::XBase(const CString& msg) :
XBase::XBase(const String& msg) :
std::runtime_error(msg)
{
// do nothing
@@ -54,14 +54,14 @@ XBase::what() const _NOEXCEPT
return what;
}
CString
String
XBase::format(const char* /*id*/, const char* fmt, ...) const throw()
{
// FIXME -- lookup message string using id as an index. set
// fmt to that string if it exists.
// format
CString result;
String result;
va_list args;
va_start(args, fmt);
try {