summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-31 07:24:00 +0000
committerkirthika <kirthika@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2000-03-31 07:24:00 +0000
commit47d58a52a63e5f31a4a6aad78205f32c322d9e8f (patch)
tree9220a01f3f20cb6e4f76092900f377f50361c442
parentcea8ecb016838628bfd9c808c4d6f4fc172095bf (diff)
downloadATCD-47d58a52a63e5f31a4a6aad78205f32c322d9e8f.tar.gz
TAO_Smart_Proxy_Base used
-rw-r--r--TAO/tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.cpp2
-rw-r--r--TAO/tests/Smart_Proxies/Smart_Proxy_Impl.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.cpp b/TAO/tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.cpp
index 5b4f14577a3..e21a2b22e41 100644
--- a/TAO/tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.cpp
+++ b/TAO/tests/Smart_Proxies/Collocation/Smart_Proxy_Impl.cpp
@@ -22,7 +22,7 @@ Smart_Diamond_Top_Factory::create_proxy (Diamond::Top_ptr proxy,
}
Smart_Diamond_Top_Proxy::Smart_Diamond_Top_Proxy (Diamond::Top_ptr proxy)
- : TAO_Diamond_Top_Smart_Proxy_Base (proxy)
+ : TAO_Smart_Proxy_Base (proxy)
{
}
diff --git a/TAO/tests/Smart_Proxies/Smart_Proxy_Impl.cpp b/TAO/tests/Smart_Proxies/Smart_Proxy_Impl.cpp
index 6541a513e59..4c6919c093e 100644
--- a/TAO/tests/Smart_Proxies/Smart_Proxy_Impl.cpp
+++ b/TAO/tests/Smart_Proxies/Smart_Proxy_Impl.cpp
@@ -16,14 +16,14 @@ Smart_Test_Factory::create_proxy (Test_ptr proxy,
"create_smart_proxy\n"));
if (CORBA::is_nil (proxy) == 0)
- ACE_NEW_RETURN (proxy, Smart_Test_Proxy (proxy), 0);
+ ACE_NEW_RETURN (proxy, Smart_Test_Proxy (proxy), 0);
return proxy;
}
Smart_Test_Proxy::Smart_Test_Proxy (Test_ptr proxy)
- : TAO_Test_Smart_Proxy_Base (proxy)
+ : TAO_Smart_Proxy_Base (proxy)
{
}