summaryrefslogtreecommitdiffstats
path: root/src/gui/ObjectMenu.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/ObjectMenu.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/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