From 76dc7ca3e92919d83932e66906425067652e76f5 Mon Sep 17 00:00:00 2001 From: Andrew Stitcher Date: Mon, 13 Oct 2008 21:24:40 +0000 Subject: Field Table API: changed the getInt() & getString() operations which are inconsistent with all the other getXXX() functions to getAsString()/getAsInt() to better indicate their real function. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@704255 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/broker/XmlExchange.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/src/qpid/broker/XmlExchange.cpp') diff --git a/cpp/src/qpid/broker/XmlExchange.cpp b/cpp/src/qpid/broker/XmlExchange.cpp index 5095e4a564..0ff5b2fdbf 100644 --- a/cpp/src/qpid/broker/XmlExchange.cpp +++ b/cpp/src/qpid/broker/XmlExchange.cpp @@ -78,7 +78,7 @@ XmlExchange::XmlExchange(const std::string& _name, bool _durable, bool XmlExchange::bind(Queue::shared_ptr queue, const string& routingKey, const FieldTable* bindingArguments) { - string queryText = bindingArguments->getString("xquery"); + string queryText = bindingArguments->getAsString("xquery"); try { RWlock::ScopedWlock l(lock); -- cgit v1.2.1