summaryrefslogtreecommitdiff
path: root/TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl')
-rw-r--r--TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl b/TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl
index a045d5540d8..df5e183c1da 100644
--- a/TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl
+++ b/TAO/tests/Multiple_Inheritance/Multiple_Inheritance.idl
@@ -5,7 +5,7 @@ interface A
string method1 ();
};
-interface intB : A
+interface B : A
{
string method2 ();
};
@@ -15,7 +15,7 @@ interface C : A
string method3 ();
};
-interface D : intB, C
+interface D : B, C
{
string method4 ();
};