summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2011-12-13 13:10:33 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2011-12-13 13:10:33 +0000
commit203cae92c42aad047b08cab5b493eb7b9ac3afca (patch)
tree75c0be8329902cb5a35bcce76a1147c95d5116d3
parente32568686a7893e5d922cba89eea3b30fd3d7f20 (diff)
downloadATCD-203cae92c42aad047b08cab5b493eb7b9ac3afca.tar.gz
Fixed compile errors due to base class changes
-rw-r--r--CIAO/connectors/dds4ccm/tests/MultipleTemp/Connector/MultipleTemp_Connector_T.cpp13
1 files changed, 4 insertions, 9 deletions
diff --git a/CIAO/connectors/dds4ccm/tests/MultipleTemp/Connector/MultipleTemp_Connector_T.cpp b/CIAO/connectors/dds4ccm/tests/MultipleTemp/Connector/MultipleTemp_Connector_T.cpp
index 94809ae55f9..0fa1c310cac 100644
--- a/CIAO/connectors/dds4ccm/tests/MultipleTemp/Connector/MultipleTemp_Connector_T.cpp
+++ b/CIAO/connectors/dds4ccm/tests/MultipleTemp/Connector/MultipleTemp_Connector_T.cpp
@@ -321,13 +321,11 @@ FooConnector_Connector_T<CCM_TYPE, DDS_TYPE_T, FIXED_T, SEQ_TYPE_T, DDS_TYPE_Y,
this->observable_t_.configuration_complete (
this->topic_t_.in (),
this->publisher_t_.in (),
- this->library_name_,
- this->profile_name_);
+ this->qos_profile_);
this->observable_y_.configuration_complete (
this->topic_y_.in (),
this->publisher_y_.in (),
- this->library_name_,
- this->profile_name_);
+ this->qos_profile_);
this->dl_t_ = this->context_->get_connection_push_consumer_t_data_listener ();
this->dl_y_ = this->context_->get_connection_push_consumer_y_data_listener ();
@@ -342,14 +340,11 @@ FooConnector_Connector_T<CCM_TYPE, DDS_TYPE_T, FIXED_T, SEQ_TYPE_T, DDS_TYPE_Y,
this->push_consumer_t_.configuration_complete (
this->topic_t_.in (),
this->subscriber_t_.in (),
- this->library_name_,
- this->profile_name_);
+ this->qos_profile_);
this->push_consumer_y_.configuration_complete (
this->topic_y_.in (),
this->subscriber_y_.in (),
- this->library_name_,
- this->profile_name_);
-
+ this->qos_profile_);
}
template <typename CCM_TYPE, typename DDS_TYPE_T, bool FIXED_T, typename SEQ_TYPE_T, typename DDS_TYPE_Y, bool FIXED_Y, typename SEQ_TYPE_Y>