This commit is contained in:
Matej Sekoranja
2012-03-29 08:19:39 +02:00
parent 2dba4aab2b
commit 2693201cfd
2 changed files with 4 additions and 4 deletions

View File

@@ -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);
}