summaryrefslogtreecommitdiffstats
path: root/src/gui/Port.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
committerDavid Robillard <d@drobilla.net>2011-04-16 19:02:36 +0000
commit9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2 (patch)
tree089c1366a567dfbf88c0473288236b276ef24bf6 /src/gui/Port.cpp
parent987710474b824cb92d83ff6fa7a090f50e10756f (diff)
downloadingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.gz
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.tar.bz2
ingen-9e5a7cf49ad84a5a3fa0aa61be11129fc4df1cc2.zip
Squeeze blank lines and delete trailing whitespace.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@3152 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui/Port.cpp')
-rw-r--r--src/gui/Port.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/gui/Port.cpp b/src/gui/Port.cpp
index 14769ee0..596c72c8 100644
--- a/src/gui/Port.cpp
+++ b/src/gui/Port.cpp
@@ -40,7 +40,6 @@ namespace GUI {
ArtVpathDash* Port::_dash;
-
SharedPtr<Port>
Port::create(
boost::shared_ptr<FlowCanvas::Module> module,
@@ -62,7 +61,6 @@ Port::create(
return SharedPtr<Port>(new Port(module, pm, label, flip));
}
-
/** @a flip Make an input port appear as an output port, and vice versa.
*/
Port::Port(
@@ -103,13 +101,11 @@ Port::Port(
value_changed(pm->value());
}
-
Port::~Port()
{
App::instance().activity_port_destroyed(this);
}
-
void
Port::update_metadata()
{
@@ -126,7 +122,6 @@ Port::update_metadata()
}
}
-
void
Port::create_menu()
{
@@ -137,7 +132,6 @@ Port::create_menu()
set_menu(menu);
}
-
void
Port::moved()
{
@@ -146,7 +140,6 @@ Port::moved()
module().lock()->resize();
}
-
void
Port::value_changed(const Atom& value)
{
@@ -156,7 +149,6 @@ Port::value_changed(const Atom& value)
FlowCanvas::Port::set_control(value.get_float());
}
-
bool
Port::on_event(GdkEvent* ev)
{
@@ -175,14 +167,12 @@ Port::on_event(GdkEvent* ev)
return false;
}
-
void
Port::activity()
{
App::instance().port_activity(this);
}
-
void
Port::set_control(float value, bool signal)
{
@@ -203,7 +193,6 @@ Port::set_control(float value, bool signal)
FlowCanvas::Port::set_control(value);
}
-
void
Port::property_changed(const URI& key, const Atom& value)
{
@@ -230,7 +219,6 @@ Port::property_changed(const URI& key, const Atom& value)
}
}
-
ArtVpathDash*
Port::dash()
{
@@ -277,6 +265,5 @@ Port::set_selected(bool b)
}
}
-
} // namespace GUI
} // namespace Ingen