summaryrefslogtreecommitdiffstats
path: root/src/gui/PortPropertiesWindow.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/PortPropertiesWindow.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/PortPropertiesWindow.cpp')
-rw-r--r--src/gui/PortPropertiesWindow.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/gui/PortPropertiesWindow.cpp b/src/gui/PortPropertiesWindow.cpp
index 3805dad1..84065687 100644
--- a/src/gui/PortPropertiesWindow.cpp
+++ b/src/gui/PortPropertiesWindow.cpp
@@ -32,7 +32,6 @@ namespace Ingen {
using namespace Client;
namespace GUI {
-
PortPropertiesWindow::PortPropertiesWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& xml)
: Window(cobject)
, _initial_min(0.0f)
@@ -50,7 +49,6 @@ PortPropertiesWindow::PortPropertiesWindow(BaseObjectType* cobject, const Glib::
&PortPropertiesWindow::ok));
}
-
/** Set the port this window is associated with.
* This function MUST be called before using this object in any way.
*/
@@ -90,7 +88,6 @@ PortPropertiesWindow::present(SharedPtr<PortModel> pm)
Gtk::Window::present();
}
-
void
PortPropertiesWindow::property_changed(const URI& key, const Atom& value)
{
@@ -104,7 +101,6 @@ PortPropertiesWindow::property_changed(const URI& key, const Atom& value)
}
}
-
void
PortPropertiesWindow::min_changed()
{
@@ -123,7 +119,6 @@ PortPropertiesWindow::min_changed()
}
}
-
void
PortPropertiesWindow::max_changed()
{
@@ -142,14 +137,12 @@ PortPropertiesWindow::max_changed()
}
}
-
void
PortPropertiesWindow::cancel()
{
hide();
}
-
void
PortPropertiesWindow::ok()
{
@@ -161,7 +154,6 @@ PortPropertiesWindow::ok()
hide();
}
-
} // namespace GUI
} // namespace Ingen