summaryrefslogtreecommitdiffstats
path: root/src/PatchageModule.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/PatchageModule.cpp')
-rw-r--r--src/PatchageModule.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/PatchageModule.cpp b/src/PatchageModule.cpp
index 4576261..6ebf335 100644
--- a/src/PatchageModule.cpp
+++ b/src/PatchageModule.cpp
@@ -131,14 +131,16 @@ PatchageModule::join()
void
PatchageModule::add_port(FlowCanvas::Port* port)
{
- FlowCanvas::Module::add_port(port);
+ std::cerr << "FIXME: add port" << std::endl;
+ //FlowCanvas::Module::add_port(port);
update_menu();
}
void
PatchageModule::remove_port(FlowCanvas::Port* port)
{
- FlowCanvas::Module::remove_port(port);
+ std::cerr << "FIXME: remove port" << std::endl;
+ //FlowCanvas::Module::remove_port(port);
update_menu();
}
@@ -146,7 +148,7 @@ void
PatchageModule::menu_disconnect_all()
{
for (iterator p = begin(); p != end(); ++p)
- (*p)->disconnect_all();
+ (*p)->disconnect();
}
PatchagePort*