diff options
author | Matthew Newhook <matthew@zeroc.com> | 2006-08-29 09:00:41 +0000 |
---|---|---|
committer | Matthew Newhook <matthew@zeroc.com> | 2006-08-29 09:00:41 +0000 |
commit | 5517585e1d63ade7730a72c8df43d497c9491904 (patch) | |
tree | a5f297388f985400898a18fd269d75be6667e4c5 /cpp/src/IceGrid/Parser.cpp | |
parent | Bug 1339. (diff) | |
download | ice-5517585e1d63ade7730a72c8df43d497c9491904.tar.bz2 ice-5517585e1d63ade7730a72c8df43d497c9491904.tar.xz ice-5517585e1d63ade7730a72c8df43d497c9491904.zip |
http://bugzilla.zeroc.com/bugzilla/show_bug.cgi?id=1274
Diffstat (limited to 'cpp/src/IceGrid/Parser.cpp')
-rw-r--r-- | cpp/src/IceGrid/Parser.cpp | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/cpp/src/IceGrid/Parser.cpp b/cpp/src/IceGrid/Parser.cpp index a755e60f49d..f2aec2882c6 100644 --- a/cpp/src/IceGrid/Parser.cpp +++ b/cpp/src/IceGrid/Parser.cpp @@ -41,9 +41,9 @@ Parser* parser; } ParserPtr -Parser::createParser(const CommunicatorPtr& communicator, const AdminPrx& admin, const QueryPrx& query) +Parser::createParser(const CommunicatorPtr& communicator, const AdminPrx& admin) { - return new Parser(communicator, admin, query); + return new Parser(communicator, admin); } void @@ -1494,10 +1494,9 @@ Parser::parse(const std::string& commands, bool debug) return status; } -Parser::Parser(const CommunicatorPtr& communicator, const AdminPrx& admin, const QueryPrx& query) : +Parser::Parser(const CommunicatorPtr& communicator, const AdminPrx& admin) : _communicator(communicator), - _admin(admin), - _query(query) + _admin(admin) { } @@ -1563,7 +1562,7 @@ Parser::exception(const Ice::Exception& ex) } catch(const AccessDeniedException& ex) { - error("couldn't update the registry, the session from + `" + ex.lockUserId + "' is updating the registry"); + error("couldn't update the registry, the session from `" + ex.lockUserId + "' is updating the registry"); } catch(const IceXML::ParserException& ex) { |