mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 03:36:32 +01:00
WS: improve Component class hierarchy
This commit is contained in:
parent
cc8ed1580c
commit
5929551b3b
3 changed files with 17 additions and 17 deletions
|
|
@ -16,7 +16,7 @@
|
|||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
*/
|
||||
|
||||
import { RootComponent } from '../base/component.js';
|
||||
import { Component } from '../base/component.js';
|
||||
import { StateNode } from '../base/protocol.js';
|
||||
|
||||
const NodeToProperty = Object.freeze({
|
||||
|
|
@ -26,7 +26,7 @@ const NodeToProperty = Object.freeze({
|
|||
[StateNode.TRANSPORT_RECORD] : 'record'
|
||||
});
|
||||
|
||||
export class Transport extends RootComponent {
|
||||
export class Transport extends Component {
|
||||
|
||||
constructor (channel) {
|
||||
super(channel);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue