summaryrefslogtreecommitdiff
path: root/cpp/test/Ice/operations/TestI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test/Ice/operations/TestI.cpp')
-rwxr-xr-xcpp/test/Ice/operations/TestI.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpp/test/Ice/operations/TestI.cpp b/cpp/test/Ice/operations/TestI.cpp
index 0f2e0b94c39..ca9837ea1b4 100755
--- a/cpp/test/Ice/operations/TestI.cpp
+++ b/cpp/test/Ice/operations/TestI.cpp
@@ -18,28 +18,28 @@ bool
MyDerivedClassI::ice_isA(const std::string& id, const Ice::Current& current) const
{
test(current.mode == Ice::Nonmutating);
- return MyDerivedClass::ice_isA(id, current);
+ return Test::MyDerivedClass::ice_isA(id, current);
}
void
MyDerivedClassI::ice_ping(const Ice::Current& current) const
{
test(current.mode == Ice::Nonmutating);
- MyDerivedClass::ice_ping(current);
+ Test::MyDerivedClass::ice_ping(current);
}
std::vector<std::string>
MyDerivedClassI::ice_ids(const Ice::Current& current) const
{
test(current.mode == Ice::Nonmutating);
- return MyDerivedClass::ice_ids(current);
+ return Test::MyDerivedClass::ice_ids(current);
}
const std::string&
MyDerivedClassI::ice_id(const Ice::Current& current) const
{
test(current.mode == Ice::Nonmutating);
- return MyDerivedClass::ice_id(current);
+ return Test::MyDerivedClass::ice_id(current);
}
void