NO-OP: fix typo in method name

This commit is contained in:
Robin Gareus 2024-02-26 18:43:32 +01:00
parent 305b2778b4
commit bff0f174da
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
3 changed files with 3 additions and 3 deletions

View File

@ -1612,7 +1612,7 @@ LuaInstance::interactive_add (Gtk::Window& parent, LuaScriptInfo::ScriptType typ
ScriptParameterDialog spd (_("Set Script Parameters"), spi, reg, lsp);
if (spd.need_interation ()) {
if (spd.need_interaction ()) {
switch (spd.run ()) {
case Gtk::RESPONSE_ACCEPT:
break;

View File

@ -258,7 +258,7 @@ ScriptParameterDialog::ScriptParameterDialog (std::string title,
}
bool
ScriptParameterDialog::need_interation () const
ScriptParameterDialog::need_interaction () const
{
if (!parameters_ok ()) {
return true;

View File

@ -66,7 +66,7 @@ class ScriptParameterDialog : public ArdourDialog
public:
ScriptParameterDialog (std::string title, const ARDOUR::LuaScriptInfoPtr&, const std::vector<std::string>&, ARDOUR::LuaScriptParamList&);
std::string name () { return _name_entry.get_text (); }
bool need_interation () const;
bool need_interaction () const;
private:
void update_sensitivity ();