diff options
Diffstat (limited to 'src/PatchageModule.cpp')
-rw-r--r-- | src/PatchageModule.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/PatchageModule.cpp b/src/PatchageModule.cpp index 46188f8..8b6a2ec 100644 --- a/src/PatchageModule.cpp +++ b/src/PatchageModule.cpp @@ -131,18 +131,18 @@ PatchageModule::join() } void -PatchageModule::add_port(FlowCanvas::Port* port) +PatchageModule::add_port(Ganv::Port* port) { std::cerr << "FIXME: add port" << std::endl; - //FlowCanvas::Module::add_port(port); + //Ganv::Module::add_port(port); update_menu(); } void -PatchageModule::remove_port(FlowCanvas::Port* port) +PatchageModule::remove_port(Ganv::Port* port) { std::cerr << "FIXME: remove port" << std::endl; - //FlowCanvas::Module::remove_port(port); + //Ganv::Module::remove_port(port); update_menu(); } |