summaryrefslogtreecommitdiff
path: root/cppe/test/IceE/exceptions/AllTests.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cppe/test/IceE/exceptions/AllTests.cpp')
-rw-r--r--cppe/test/IceE/exceptions/AllTests.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cppe/test/IceE/exceptions/AllTests.cpp b/cppe/test/IceE/exceptions/AllTests.cpp
index 8e4da6a46a7..916799366bc 100644
--- a/cppe/test/IceE/exceptions/AllTests.cpp
+++ b/cppe/test/IceE/exceptions/AllTests.cpp
@@ -18,7 +18,7 @@ class EmptyI : virtual public Empty
{
};
-class CallbackBase : public Ice::Monitor<Ice::Mutex>
+class CallbackBase : public IceUtil::Monitor<IceUtil::Mutex>
{
public:
@@ -33,10 +33,10 @@ public:
bool check()
{
- Ice::Monitor<Ice::Mutex>::Lock sync(*this);
+ IceUtil::Monitor<IceUtil::Mutex>::Lock sync(*this);
while(!_called)
{
- if(!timedWait(Ice::Time::seconds(5)))
+ if(!timedWait(IceUtil::Time::seconds(5)))
{
return false;
}
@@ -49,7 +49,7 @@ protected:
void called()
{
- Ice::Monitor<Ice::Mutex>::Lock sync(*this);
+ IceUtil::Monitor<IceUtil::Mutex>::Lock sync(*this);
assert(!_called);
_called = true;
notify();