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); ScriptParameterDialog spd (_("Set Script Parameters"), spi, reg, lsp);
if (spd.need_interation ()) { if (spd.need_interaction ()) {
switch (spd.run ()) { switch (spd.run ()) {
case Gtk::RESPONSE_ACCEPT: case Gtk::RESPONSE_ACCEPT:
break; break;

View File

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

View File

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