OK -> Ok
This commit is contained in:
@@ -13,7 +13,7 @@ namespace epics { namespace pvData {
|
||||
const char* Status::StatusTypeName[] = { "OK", "WARNING", "ERROR", "FATAL" };
|
||||
epics::pvData::String Status::m_emptyString;
|
||||
|
||||
Status Status::OK;
|
||||
Status Status::Ok;
|
||||
|
||||
//PVDATA_REFCOUNT_MONITOR_DEFINE(status);
|
||||
|
||||
@@ -60,7 +60,7 @@ epics::pvData::String Status::getStackDump() const
|
||||
return m_stackDump;
|
||||
}
|
||||
|
||||
bool Status::isOK() const
|
||||
bool Status::isOk() const
|
||||
{
|
||||
return (m_statusType == STATUSTYPE_OK);
|
||||
}
|
||||
|
||||
@@ -36,7 +36,7 @@ namespace epics { namespace pvData {
|
||||
|
||||
static const char* StatusTypeName[];
|
||||
|
||||
static Status OK;
|
||||
static Status Ok;
|
||||
|
||||
/**
|
||||
* Creates OK status; STATUSTYPE_OK, empty message and stackDump.
|
||||
@@ -80,7 +80,7 @@ namespace epics { namespace pvData {
|
||||
* @return OK status.
|
||||
* @see #isSuccess()
|
||||
*/
|
||||
bool isOK() const;
|
||||
bool isOk() const;
|
||||
|
||||
/**
|
||||
* Check if operation succeeded.
|
||||
|
||||
Reference in New Issue
Block a user