13
0

Fix spelling error.

This commit is contained in:
David Robillard 2014-10-31 03:29:26 -04:00
parent db98083f20
commit 0a60077a61
3 changed files with 3 additions and 3 deletions

View File

@ -279,7 +279,7 @@ LV2PluginUI::lv2ui_instantiate(const std::string& title)
: NS_UI "GtkUI";
if (_lv2->has_message_output()) {
_lv2->enable_ui_emmission();
_lv2->enable_ui_emission();
}
const LilvUI* ui = (const LilvUI*)_lv2->c_ui();

View File

@ -141,7 +141,7 @@ class LIBARDOUR_API LV2Plugin : public ARDOUR::Plugin, public ARDOUR::Workee
uint32_t format,
const void* buffer);
void enable_ui_emmission();
void enable_ui_emission();
void emit_to_ui(void* controller, UIMessageSink sink);
Worker* worker() { return _worker; }

View File

@ -1240,7 +1240,7 @@ LV2Plugin::write_to_ui(uint32_t index,
}
void
LV2Plugin::enable_ui_emmission()
LV2Plugin::enable_ui_emission()
{
if (!_to_ui) {
/* see note in LV2Plugin::write_from_ui() */