1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-09 14:16:28 +01:00

Don't use wxArrayPtrVoid with casts, use std::vector

This commit is contained in:
Paul Licameli
2016-09-08 11:04:35 -04:00
parent 43b4d3cc99
commit 2263a0f477
8 changed files with 49 additions and 38 deletions

View File

@@ -29,6 +29,7 @@ class wxTextCtrl;
class AudacityProject;
class LabelTrack;
class ShuttleGui;
class Track;
class ExportMultiple final : public wxDialogWrapper
{
@@ -111,7 +112,10 @@ private:
LabelTrack *mLabels;
int mNumLabels;
int mNumWaveTracks;
wxArrayPtrVoid mSelected;
// PRL: This is never populated anywhere?
std::vector<Track*> mSelected;
int mFilterIndex; /**< The index in the drop-down list of export
formats (mFormat) of the selected export format.
This list includes all possible