diff options
author | Mark Spruiell <mes@zeroc.com> | 2004-11-09 18:20:29 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2004-11-09 18:20:29 +0000 |
commit | f582629a0a0e20dfb4e2f7cc33ac64521d301a95 (patch) | |
tree | 017ff120509513010265508f0ea94022145de13e /cpp/src/Glacier2/Blobject.cpp | |
parent | Win32 fixes (diff) | |
download | ice-f582629a0a0e20dfb4e2f7cc33ac64521d301a95.tar.bz2 ice-f582629a0a0e20dfb4e2f7cc33ac64521d301a95.tar.xz ice-f582629a0a0e20dfb4e2f7cc33ac64521d301a95.zip |
HP fix
Diffstat (limited to 'cpp/src/Glacier2/Blobject.cpp')
-rw-r--r-- | cpp/src/Glacier2/Blobject.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Glacier2/Blobject.cpp b/cpp/src/Glacier2/Blobject.cpp index bf4ea5deefb..c4578c33cff 100644 --- a/cpp/src/Glacier2/Blobject.cpp +++ b/cpp/src/Glacier2/Blobject.cpp @@ -52,8 +52,8 @@ Glacier2::Blobject::Blobject(const CommunicatorPtr& communicator, bool reverse) try { IceUtil::Time sleepTime = _reverse ? - IceUtil::Time::milliSeconds(communicator->getProperties()->getPropertyAsInt(serverSleepTime)) : - IceUtil::Time::milliSeconds(communicator->getProperties()->getPropertyAsInt(clientSleepTime)); + IceUtil::Time::milliSeconds(_properties->getPropertyAsInt(serverSleepTime)) : + IceUtil::Time::milliSeconds(_properties->getPropertyAsInt(clientSleepTime)); _requestQueue = new RequestQueue(sleepTime); |