Skip to content
Snippets Groups Projects
Commit 00f4df65 authored by Simon Ottenhaus's avatar Simon Ottenhaus
Browse files

renamed proxy variable

parent d7085286
No related branches found
No related tags found
No related merge requests found
......@@ -34,7 +34,7 @@ void HapticUnit::onInitComponent()
void HapticUnit::onConnectComponent()
{
listenerPrx = getTopic<HapticUnitListenerPrx>(listenerName);
hapticTopicPrx = getTopic<HapticUnitListenerPrx>(listenerName);
onStartHapticUnit();
}
......
......@@ -63,7 +63,7 @@ namespace armarx
virtual PropertyDefinitionsPtr createPropertyDefinitions();
protected:
HapticUnitListenerPrx listenerPrx;
HapticUnitListenerPrx hapticTopicPrx;
std::string listenerName;
};
}
......
......@@ -122,7 +122,7 @@ void WeissHapticSensorsUnit::onStartHapticUnit()
for(std::vector<boost::shared_ptr<WeissHapticSensor> >::iterator it = sensors.begin(); it != sensors.end(); ++it)
{
(*it)->setListenerPrx(listenerPrx);
(*it)->setListenerPrx(hapticTopicPrx);
(*it)->startSampling();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment