summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles E. Rolke <chug@apache.org>2012-04-04 19:35:34 +0000
committerCharles E. Rolke <chug@apache.org>2012-04-04 19:35:34 +0000
commit2db8073cfd87aff6ac64de3128f1ebb2952ca0db (patch)
treea20107af87bf4874bcdfbefb14b99d1c817636a1
parent1569fa1c6670fb2e23fe75206d5bb24a023bdc79 (diff)
downloadqpid-python-2db8073cfd87aff6ac64de3128f1ebb2952ca0db.tar.gz
QPID-3918 qualify namespace better for windows build
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1309564 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/src/qpid/acl/Acl.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/src/qpid/acl/Acl.cpp b/qpid/cpp/src/qpid/acl/Acl.cpp
index 72ce0fd5c2..db77abf8c1 100644
--- a/qpid/cpp/src/qpid/acl/Acl.cpp
+++ b/qpid/cpp/src/qpid/acl/Acl.cpp
@@ -198,7 +198,7 @@ bool Acl::readAclFile(std::string& aclFile, std::string& errorText) {
//
// management lookup function performs general query on acl engine
//
-Manageable::status_t Acl::lookup(management::Args& args, std::string& text)
+Manageable::status_t Acl::lookup(qpid::management::Args& args, std::string& text)
{
_qmf::ArgsAclLookup& ioArgs = (_qmf::ArgsAclLookup&) args;
Manageable::status_t result(STATUS_USER);
@@ -246,7 +246,7 @@ Manageable::status_t Acl::lookup(management::Args& args, std::string& text)
// management lookupPublish function performs fastpath
// PUBLISH EXCHANGE query on acl engine
//
-Manageable::status_t Acl::lookupPublish(management::Args& args, std::string& /*text*/)
+Manageable::status_t Acl::lookupPublish(qpid::management::Args& args, std::string& /*text*/)
{
_qmf::ArgsAclLookupPublish& ioArgs = (_qmf::ArgsAclLookupPublish&) args;
boost::shared_ptr<AclData> dataLocal;