Skip to content
Snippets Groups Projects
Commit ac1e0e43 authored by Florent Lamiraux's avatar Florent Lamiraux
Browse files

Comply with modification of interface in SignalBase

  isPluged -> isPlugged.
parent ce83ac7b
No related branches found
No related tags found
No related merge requests found
......@@ -333,7 +333,7 @@ namespace dynamicgraph {
SignalBase<int>* signal = (SignalBase<int>*)pointer;
bool plugged = false;
try {
plugged = signal->isPluged();
plugged = signal->isPlugged();
} CATCH_ALL_EXCEPTIONS ();
if (plugged) return PyBool_FromLong(1); else return PyBool_FromLong(0);
......@@ -352,7 +352,7 @@ namespace dynamicgraph {
SignalBase<int>* signal = (SignalBase<int>*)pointer;
SignalBase<int>* otherSignal = 0;
try {
bool plugged = signal->isPluged ();
bool plugged = signal->isPlugged ();
otherSignal = signal->getPluged();
if (!plugged || otherSignal == 0) {
std::string msg = std::string ("Signal ") + signal->getName()
......
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