13
0

NO-OP: fix typos

This commit is contained in:
Robin Gareus 2020-11-01 12:25:22 +01:00
parent cf0904f752
commit 66c19647df
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 4 additions and 4 deletions

View File

@ -175,7 +175,7 @@ public:
void process (float** ins, float** outs, uint32_t n_samples); void process (float** ins, float** outs, uint32_t n_samples);
/* PSL Extension */ /* PSL Extension */
Vst::IEditController* conroller () const { return _controller; } Vst::IEditController* controller () const { return _controller; }
bool add_slave (Vst::IEditController*, bool); bool add_slave (Vst::IEditController*, bool);
bool remove_slave (Vst::IEditController*); bool remove_slave (Vst::IEditController*);

View File

@ -521,7 +521,7 @@ VST3Plugin::set_state (const XMLNode& node, int version)
continue; continue;
} }
if (!_plug->try_set_parameter_by_id ( param_id, value)) { if (!_plug->try_set_parameter_by_id (param_id, value)) {
warning << string_compose (_("VST3<%1>: Invalid Vst::ParamID in VST3Plugin::set_state"), name ()) << endmsg; warning << string_compose (_("VST3<%1>: Invalid Vst::ParamID in VST3Plugin::set_state"), name ()) << endmsg;
} }
} }
@ -570,7 +570,7 @@ VST3Plugin::add_slave (boost::shared_ptr<Plugin> p, bool rt)
{ {
boost::shared_ptr<VST3Plugin> vst = boost::dynamic_pointer_cast<VST3Plugin> (p); boost::shared_ptr<VST3Plugin> vst = boost::dynamic_pointer_cast<VST3Plugin> (p);
if (vst) { if (vst) {
_plug->add_slave (vst->_plug->conroller (), rt); _plug->add_slave (vst->_plug->controller (), rt);
} }
} }
@ -579,7 +579,7 @@ VST3Plugin::remove_slave (boost::shared_ptr<Plugin> p)
{ {
boost::shared_ptr<VST3Plugin> vst = boost::dynamic_pointer_cast<VST3Plugin> (p); boost::shared_ptr<VST3Plugin> vst = boost::dynamic_pointer_cast<VST3Plugin> (p);
if (vst) { if (vst) {
_plug->remove_slave (vst->_plug->conroller ()); _plug->remove_slave (vst->_plug->controller ());
} }
} }