1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-09-18 17:10:55 +02:00

move a comment

This commit is contained in:
Paul Licameli 2018-12-19 12:43:20 -05:00
parent ab0c0d9cb1
commit 580e1a8a63

View File

@ -1112,10 +1112,6 @@ template <
}; };
/** \brief TrackList is a flat linked list of tracks supporting Add, Remove,
* Clear, and Contains, plus serialization of the list of tracks.
*/
struct TrackListEvent : public wxCommandEvent struct TrackListEvent : public wxCommandEvent
{ {
explicit explicit
@ -1161,6 +1157,9 @@ wxDECLARE_EXPORTED_EVENT(AUDACITY_DLL_API,
wxDECLARE_EXPORTED_EVENT(AUDACITY_DLL_API, wxDECLARE_EXPORTED_EVENT(AUDACITY_DLL_API,
EVT_TRACKLIST_DELETION, TrackListEvent); EVT_TRACKLIST_DELETION, TrackListEvent);
/** \brief TrackList is a flat linked list of tracks supporting Add, Remove,
* Clear, and Contains, plus serialization of the list of tracks.
*/
class TrackList final : public wxEvtHandler, public ListOfTracks class TrackList final : public wxEvtHandler, public ListOfTracks
, public std::enable_shared_from_this<TrackList> , public std::enable_shared_from_this<TrackList>
{ {