mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-06-10 14:22:16 +02:00
Rename YaEditController2 to YaEditController
Adding versions to our implementations doesn't work when the versions and extensions start becoming non-numerical. This is what happened with `IComponentHandler`.
This commit is contained in:
@@ -16,14 +16,14 @@
|
||||
|
||||
#include "edit-controller.h"
|
||||
|
||||
YaEditController2::ConstructArgs::ConstructArgs() {}
|
||||
YaEditController::ConstructArgs::ConstructArgs() {}
|
||||
|
||||
YaEditController2::ConstructArgs::ConstructArgs(
|
||||
YaEditController::ConstructArgs::ConstructArgs(
|
||||
Steinberg::IPtr<Steinberg::FUnknown> object)
|
||||
: supported_version_1(
|
||||
Steinberg::FUnknownPtr<Steinberg::Vst::IEditController>(object)),
|
||||
supported_version_2(
|
||||
Steinberg::FUnknownPtr<Steinberg::Vst::IEditController2>(object)) {}
|
||||
|
||||
YaEditController2::YaEditController2(const ConstructArgs&& args)
|
||||
YaEditController::YaEditController(const ConstructArgs&& args)
|
||||
: arguments(std::move(args)) {}
|
||||
|
||||
Reference in New Issue
Block a user