1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-05 00:23:56 +01:00

One less indirection accessing RowData

This commit is contained in:
Paul Licameli
2016-02-03 21:43:49 -05:00
parent 5de27ac36f
commit d2a7f35f98
2 changed files with 35 additions and 54 deletions

View File

@@ -11,6 +11,7 @@
#ifndef __AUDACITY_LABELDIALOG__
#define __AUDACITY_LABELDIALOG__
#include <vector>
#include <wx/defs.h>
#include <wx/dialog.h>
#include <wx/event.h>
@@ -27,7 +28,7 @@ class EmptyLabelRenderer;
class LabelTrack;
class ViewInfo;
WX_DEFINE_ARRAY(RowData *, RowDataArray);
typedef std::vector<RowData> RowDataArray;
class LabelDialog:public wxDialog
{