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

@@ -75,7 +75,7 @@ class ChannelGetRequesterImpl : public ChannelGetRequester
if (status.isSuccess())
{
// show warning
if (!status.isOK())
if (!status.isOk())
{
std::cout << "[" << m_channelName << "] channel get create: " << status.toString() << std::endl;
}
@@ -100,7 +100,7 @@ class ChannelGetRequesterImpl : public ChannelGetRequester
if (status.isSuccess())
{
// show warning
if (!status.isOK())
if (!status.isOk())
{
std::cout << "[" << m_channelName << "] channel get: " << status.toString() << std::endl;
}
@@ -168,7 +168,7 @@ public:
if (status.isSuccess())
{
// show warning
if (!status.isOK())
if (!status.isOk())
{
std::cout << "[" << channel->getChannelName() << "] channel create: " << status.toString() << std::endl;
}