summaryrefslogtreecommitdiffstats
path: root/src/gui/PropertiesWindow.cpp
diff options
context:
space:
mode:
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