summaryrefslogtreecommitdiffstats
path: root/src/gui/ObjectMenu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/ObjectMenu.cpp')
-rw-r--r--src/gui/ObjectMenu.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/gui/ObjectMenu.cpp b/src/gui/ObjectMenu.cpp
index e821e846..f12334ac 100644
--- a/src/gui/ObjectMenu.cpp
+++ b/src/gui/ObjectMenu.cpp
@@ -29,7 +29,6 @@ using namespace Raul;
namespace Ingen {
namespace GUI {
-
ObjectMenu::ObjectMenu(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade::Xml>& xml)
: Gtk::Menu(cobject)
, _enable_signal(false)
@@ -48,7 +47,6 @@ ObjectMenu::ObjectMenu(BaseObjectType* cobject, const Glib::RefPtr<Gnome::Glade:
xml->get_widget("object_properties_menuitem", _properties_menuitem);
}
-
void
ObjectMenu::init(SharedPtr<ObjectModel> object)
{
@@ -88,7 +86,6 @@ ObjectMenu::init(SharedPtr<ObjectModel> object)
_enable_signal = true;
}
-
void
ObjectMenu::on_menu_learn()
{
@@ -97,7 +94,6 @@ ObjectMenu::on_menu_learn()
App::instance().uris().wildcard);
}
-
void
ObjectMenu::on_menu_unlearn()
{
@@ -108,7 +104,6 @@ ObjectMenu::on_menu_unlearn()
App::instance().engine()->delta(_object->path(), remove, Resource::Properties());
}
-
void
ObjectMenu::on_menu_polyphonic()
{
@@ -118,7 +113,6 @@ ObjectMenu::on_menu_polyphonic()
bool(_polyphonic_menuitem->get_active()));
}
-
void
ObjectMenu::property_changed(const URI& predicate, const Atom& value)
{
@@ -129,21 +123,18 @@ ObjectMenu::property_changed(const URI& predicate, const Atom& value)
_enable_signal = true;
}
-
void
ObjectMenu::on_menu_destroy()
{
App::instance().engine()->del(_object->path());
}
-
void
ObjectMenu::on_menu_properties()
{
App::instance().window_factory()->present_properties(_object);
}
-
} // namespace GUI
} // namespace Ingen