summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/broker/DirectExchange.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/qpid/broker/DirectExchange.cpp')
-rw-r--r--cpp/src/qpid/broker/DirectExchange.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/src/qpid/broker/DirectExchange.cpp b/cpp/src/qpid/broker/DirectExchange.cpp
index 72021b8d98..84a5362766 100644
--- a/cpp/src/qpid/broker/DirectExchange.cpp
+++ b/cpp/src/qpid/broker/DirectExchange.cpp
@@ -54,8 +54,8 @@ bool DirectExchange::bind(Queue::shared_ptr queue, const string& routingKey, con
Binding::shared_ptr binding (new Binding (routingKey, queue, this));
bindings[routingKey].push_back(binding);
if (mgmtExchange.get() != 0) {
- mgmtExchange->inc_bindings();
- dynamic_pointer_cast<management::Queue>(queue->GetManagementObject())->inc_bindings();
+ mgmtExchange->inc_bindingCount();
+ dynamic_pointer_cast<management::Queue>(queue->GetManagementObject())->inc_bindingCount();
}
return true;
} else{
@@ -78,8 +78,8 @@ bool DirectExchange::unbind(Queue::shared_ptr queue, const string& routingKey, c
bindings.erase(routingKey);
}
if (mgmtExchange.get() != 0) {
- mgmtExchange->dec_bindings ();
- dynamic_pointer_cast<management::Queue>(queue->GetManagementObject())->dec_bindings();
+ mgmtExchange->dec_bindingCount();
+ dynamic_pointer_cast<management::Queue>(queue->GetManagementObject())->dec_bindingCount();
}
return true;
} else {