summaryrefslogtreecommitdiffstats
path: root/src/gui/PatchPortModule.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/PatchPortModule.cpp')
-rw-r--r--src/gui/PatchPortModule.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/gui/PatchPortModule.cpp b/src/gui/PatchPortModule.cpp
index ba243b75..8427d49d 100644
--- a/src/gui/PatchPortModule.cpp
+++ b/src/gui/PatchPortModule.cpp
@@ -38,7 +38,6 @@ using namespace Raul;
namespace Ingen {
namespace GUI {
-
PatchPortModule::PatchPortModule(boost::shared_ptr<PatchCanvas> canvas, SharedPtr<PortModel> model)
: FlowCanvas::Module(canvas, "", 0, 0, false) // FIXME: coords?
, _model(model)
@@ -53,7 +52,6 @@ PatchPortModule::PatchPortModule(boost::shared_ptr<PatchCanvas> canvas, SharedPt
model->signal_property.connect(sigc::mem_fun(this, &PatchPortModule::property_changed));
}
-
boost::shared_ptr<PatchPortModule>
PatchPortModule::create(boost::shared_ptr<PatchCanvas> canvas, SharedPtr<PortModel> model, bool human)
{
@@ -72,7 +70,6 @@ PatchPortModule::create(boost::shared_ptr<PatchCanvas> canvas, SharedPtr<PortMod
return ret;
}
-
void
PatchPortModule::create_menu()
{
@@ -83,7 +80,6 @@ PatchPortModule::create_menu()
set_menu(_menu);
}
-
void
PatchPortModule::store_location()
{
@@ -104,7 +100,6 @@ PatchPortModule::store_location()
}
}
-
void
PatchPortModule::show_human_names(bool b)
{
@@ -118,7 +113,6 @@ PatchPortModule::show_human_names(bool b)
resize();
}
-
void
PatchPortModule::set_name(const std::string& n)
{
@@ -126,7 +120,6 @@ PatchPortModule::set_name(const std::string& n)
Module::resize();
}
-
void
PatchPortModule::property_changed(const URI& key, const Atom& value)
{
@@ -164,7 +157,6 @@ PatchPortModule::property_changed(const URI& key, const Atom& value)
}
}
-
void
PatchPortModule::set_selected(bool b)
{
@@ -176,7 +168,5 @@ PatchPortModule::set_selected(bool b)
}
}
-
-
} // namespace GUI
} // namespace Ingen