diff options
author | David Robillard <d@drobilla.net> | 2010-01-30 00:33:06 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-01-30 00:33:06 +0000 |
commit | 0fdb802920e1fce6ed64d9fe7d54f39ee0adbc90 (patch) | |
tree | 5b42c0748a1515acb0328065c7e29f9181e28691 /src/gui | |
parent | f02ac2f82a0342c3e548a81950734b4bce383b7d (diff) | |
download | ingen-0fdb802920e1fce6ed64d9fe7d54f39ee0adbc90.tar.gz ingen-0fdb802920e1fce6ed64d9fe7d54f39ee0adbc90.tar.bz2 ingen-0fdb802920e1fce6ed64d9fe7d54f39ee0adbc90.zip |
Tidy.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@2396 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/PortMenu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/PortMenu.cpp b/src/gui/PortMenu.cpp index 4a6ce582..ffa3422f 100644 --- a/src/gui/PortMenu.cpp +++ b/src/gui/PortMenu.cpp @@ -99,7 +99,7 @@ void PortMenu::on_menu_set_min() { SharedPtr<PortModel> model = PtrCast<PortModel>(_object); - const Raul::Atom& value = model->get_property("ingen:value"); + const Raul::Atom& value = model->get_property("ingen:value"); std::cout << model->path() << " SET MIN " << value << std::endl; if (value.is_valid()) App::instance().engine()->set_property(_object->path(), "lv2:minimum", value); @@ -110,7 +110,7 @@ void PortMenu::on_menu_set_max() { SharedPtr<PortModel> model = PtrCast<PortModel>(_object); - const Raul::Atom& value = model->get_property("ingen:value"); + const Raul::Atom& value = model->get_property("ingen:value"); if (value.is_valid()) App::instance().engine()->set_property(_object->path(), "lv2:maximum", value); } |