summaryrefslogtreecommitdiffstats
path: root/src/gui/PropertiesWindow.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/PropertiesWindow.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/PropertiesWindow.cpp')
-rw-r--r--src/gui/PropertiesWindow.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/gui/PropertiesWindow.cpp b/src/gui/PropertiesWindow.cpp
index 8e00f396..4664796b 100644
--- a/src/gui/PropertiesWindow.cpp
+++ b/src/gui/PropertiesWindow.cpp
@@ -32,7 +32,6 @@ using namespace Raul;
namespace Ingen {
namespace GUI {
-
PropertiesWindow::PropertiesWindow(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& glade_xml)
: Window(cobject)
{
@@ -62,7 +61,6 @@ PropertiesWindow::PropertiesWindow(BaseObjectType* cobject, const Glib::RefPtr<G
sigc::mem_fun(this, &PropertiesWindow::ok_clicked));
}
-
void
PropertiesWindow::reset()
{
@@ -76,7 +74,6 @@ PropertiesWindow::reset()
_model.reset();
}
-
/** Set the node this window is associated with.
* This function MUST be called before using this object in any way.
*/
@@ -181,7 +178,6 @@ PropertiesWindow::create_value_widget(const Raul::URI& uri, const Raul::Atom& va
return NULL;
}
-
void
PropertiesWindow::on_show()
{
@@ -209,7 +205,6 @@ PropertiesWindow::on_show()
Gtk::Window::on_show();
}
-
void
PropertiesWindow::property_changed(const Raul::URI& predicate, const Raul::Atom& value)
{
@@ -230,7 +225,6 @@ PropertiesWindow::property_changed(const Raul::URI& predicate, const Raul::Atom&
record.value = value;
}
-
void
PropertiesWindow::value_edited(const Raul::URI& predicate)
{
@@ -271,7 +265,6 @@ bad_type:
return;
}
-
void
PropertiesWindow::cancel_clicked()
{
@@ -279,7 +272,6 @@ PropertiesWindow::cancel_clicked()
Gtk::Window::hide();
}
-
void
PropertiesWindow::apply_clicked()
{
@@ -301,7 +293,6 @@ PropertiesWindow::apply_clicked()
LOG(debug) << "}" << endl;
}
-
void
PropertiesWindow::ok_clicked()
{
@@ -309,6 +300,5 @@ PropertiesWindow::ok_clicked()
cancel_clicked();
}
-
} // namespace GUI
} // namespace Ingen