@tim-janik commented on this pull request.
> @@ -20,11 +20,13 @@ typedef struct _BstTrackView BstTrackView;
typedef struct _BstTrackViewClass BstTrackViewClass;
struct _BstTrackView
{
- BstItemView parent_object;
- Bse::SongS song;
- BstTrackRoll *troll;
- BstTrackRollController *tctrl;
- GtkWidget *repeat_toggle;
+ BstItemView parent_object;
+ Bse::SongS song;
+ std::map<SfiProxy, Bse::TrackS> track_map;
Note, I'm perfectly happy with adding type aliases for complex types, so you don't need to reformat all members. E.g.
using TrackMap = std::map<SfiProxy, Bse::TrackS>;
// other members...
TrackMap track_map;
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub, or mute the thread.