mirror of
https://github.com/debauchee/barrier.git
synced 2026-02-13 07:06:10 +08:00
dropped "c" prefix from class names
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user