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 or view it on GitHub:
https://github.com/tim-janik/beast/pull/109#pullrequestreview-272495590
_______________________________________________
beast mailing list
beast@gnome.org
https://mail.gnome.org/mailman/listinfo/beast

Reply via email to