This commit is contained in:
Matej Sekoranja
2012-03-29 08:20:48 +02:00
parent c31a4ed7ea
commit 3a68046c7c
9 changed files with 64 additions and 64 deletions

View File

@@ -388,7 +388,7 @@ class ChannelPutRequesterImpl : public ChannelPutRequester
if (status.isSuccess())
{
// show warning
if (!status.isOK())
if (!status.isOk())
{
std::cout << "[" << m_channelName << "] channel put create: " << status.toString() << std::endl;
}
@@ -412,7 +412,7 @@ class ChannelPutRequesterImpl : public ChannelPutRequester
if (status.isSuccess())
{
// show warning
if (!status.isOK())
if (!status.isOk())
{
std::cout << "[" << m_channelName << "] channel get: " << status.toString() << std::endl;
}
@@ -441,7 +441,7 @@ class ChannelPutRequesterImpl : public ChannelPutRequester
if (status.isSuccess())
{
// show warning
if (!status.isOK())
if (!status.isOk())
{
std::cout << "[" << m_channelName << "] channel put: " << status.toString() << std::endl;
}
@@ -493,7 +493,7 @@ public:
if (status.isSuccess())
{
// show warning
if (!status.isOK())
if (!status.isOk())
{
std::cout << "[" << channel->getChannelName() << "] channel create: " << status.toString() << std::endl;
}